Fórumok

Best IDE for liferay portlet development

Syed Fahmeed Nawaz, módosítva 11 év-val korábban

Best IDE for liferay portlet development

New Member Bejegyzések: 9 Csatlakozás dátuma: 2012.10.03. Legújabb bejegyzések
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
Priyanka Dhingra, módosítva 11 év-val korábban

RE: Best IDE for liferay portlet development

Liferay Master Bejegyzések: 501 Csatlakozás dátuma: 2011.12.20. Legújabb bejegyzések
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
Syed Fahmeed Nawaz, módosítva 11 év-val korábban

RE: Best IDE for liferay portlet development

New Member Bejegyzések: 9 Csatlakozás dátuma: 2012.10.03. Legújabb bejegyzések
i want to change the default HSQL databse to mysql i am not able to connect mysql database to liferay using eclipse....
thumbnail
Priyanka Dhingra, módosítva 11 év-val korábban

RE: Best IDE for liferay portlet development

Liferay Master Bejegyzések: 501 Csatlakozás dátuma: 2011.12.20. Legújabb bejegyzések
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
Hitoshi Ozawa, módosítva 11 év-val korábban

RE: Best IDE for liferay portlet development

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
Refer to Dave's reply in the thread below:

http://www.liferay.com/community/forums/-/message_boards/message/5609279
thumbnail
Subhash Pavuskar, módosítva 11 év-val korábban

RE: Best IDE for liferay portlet development

Regular Member Bejegyzések: 234 Csatlakozás dátuma: 2012.03.13. Legújabb bejegyzések
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
Hitoshi Ozawa, módosítva 11 év-val korábban

RE: Best IDE for liferay portlet development

Liferay Legend Bejegyzések: 7942 Csatlakozás dátuma: 2010.03.24. Legújabb bejegyzések
Editing ROOT.xml file in unnecessary because jdbc connection is being defined in portal-ext.properties.