掲示板

Best IDE for liferay portlet development

11年前 に Syed Fahmeed Nawaz によって更新されました。

Best IDE for liferay portlet development

New Member 投稿: 9 参加年月日: 12/10/03 最新の投稿
Guide me which is the best IDE for liferay portlet development i am using eclipse but i am not comfortable with it because i am unable to connect database did any one haive idea about eclipse mysql integration for liferay database.....
thumbnail
11年前 に Priyanka Dhingra によって更新されました。

RE: Best IDE for liferay portlet development

Liferay Master 投稿: 501 参加年月日: 11/12/20 最新の投稿
can you explain why you need the mysql integration with eclipse...I never came across with such requirement
anyhow eclipse 1.5.2 liferay developer studio is the best one as far as i know
11年前 に Syed Fahmeed Nawaz によって更新されました。

RE: Best IDE for liferay portlet development

New Member 投稿: 9 参加年月日: 12/10/03 最新の投稿
i want to change the default HSQL databse to mysql i am not able to connect mysql database to liferay using eclipse....
thumbnail
11年前 に Priyanka Dhingra によって更新されました。

RE: Best IDE for liferay portlet development

Liferay Master 投稿: 501 参加年月日: 11/12/20 最新の投稿
just create the portal-ext.properties in your 3. liferay-portal\tomcat-x.x.xx\webapps\ROOT\WEB-INF\classes
and add these properties there after creating a database in sql

jdbc.default.driverClassName=com.mysql.jdbc.Driver
 jdbc.default.url=jdbc:mysql://localhost/lportal?useUnicode=true&characterEncoding=UTF-8&useFastDateParsing=false
 jdbc.default.username=
 jdbc.default.password=

you dont need to use my sql through eclipse
thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: Best IDE for liferay portlet development

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
Refer to Dave's reply in the thread below:

http://www.liferay.com/community/forums/-/message_boards/message/5609279
thumbnail
11年前 に Subhash Pavuskar によって更新されました。

RE: Best IDE for liferay portlet development

Regular Member 投稿: 234 参加年月日: 12/03/13 最新の投稿
Adding to Priyanka Dhingra point !!

Add following xml code to /home/Documents/Liferay-SetUp-6.1.1/Liferay-6.1.1/tomcat-7.0.27/conf/Catalina/localhost/ROOT.xml File



<resource name="jdbc/LiferayPool" auth="Container" type="javax.sql.DataSource" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://localhost/Liferay6.1.1?useUnicode=true&amp;characterEncoding=UTF-8" username="root" password="root" maxActive="20" />

thumbnail
11年前 に Hitoshi Ozawa によって更新されました。

RE: Best IDE for liferay portlet development

Liferay Legend 投稿: 7942 参加年月日: 10/03/24 最新の投稿
Editing ROOT.xml file in unnecessary because jdbc connection is being defined in portal-ext.properties.