This wiki does not contain official documentation and is currently deprecated and read only. Please try reading the documentation on the Liferay Developer Network, the new site dedicated to Liferay documentation. DISCOVER Build your web site, collaborate with your colleagues, manage your content, and more. DEVELOP Build applications that run inside Liferay, extend the features provided out of the box with Liferay's APIs. DISTRIBUTE Let the world know about your app by publishing it in Liferay's marketplace. PARTICIPATE Become a part of Liferay's community, meet other Liferay users, and get involved in the open source project. Liferay 5.2.3 myeclipse 8.0下的EXT开发环境搭建
准备: 安装步骤: Myeclipse 8.0 为例: 更新 app.server.parent.dir=${project.dir}/../bundles 更改为-> app.server.parent.dir=${project.dir}/../.. app.server.tomcat.version=6.0 -> app.server.tomcat.version=5.5 更改为-> app.server.tomcat.dir=${app.server.parent.dir}/tomcat-6.0.18 app.server.tomcat.classes.global.dir=${app.server.tomcat.dir}/lib 更改为-> app.server.tomcat.classes.global.dir=${app.server.tomcat.dir}/common/classes app.server.tomcat.lib.endorsed.dir=${app.server.tomcat.dir}/lib/ext 更改为-> app.server.tomcat.lib.endorsed.dir=${app.server.tomcat.dir}/common/endorsed app.server.tomcat.lib.global.dir=${app.server.tomcat.dir}/lib/ext 更改为-> app.server.tomcat.lib.global.dir=${app.server.tomcat.dir}/common/lib/ext app.server.tomcat.lib.support.dir=${app.server.tomcat.dir}/lib/ext 更改为-> app.server.tomcat.lib.support.dir=${app.server.tomcat.dir}/server/lib app.server.tomcat.zip.name=liferay-portal-tomcat-6.0-${downloads.version}.zip -> app.server.tomcat.zip.name=liferay-portal-tomcat-5.5-${downloads.version}.zip 更新 lp.eclipse.dir=D:\Dev_Env\workspace lp.eclipse.project.name=ext ant.installer.dir=D:/Dev_Env/apache-ant-1.8.0 <bean id="liferayDataSource" class="org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy"> <property name="targetDataSource"> <bean class="com.liferay.portal.spring.jndi.JndiObjectFactoryBean"> <property name="jndiName" value="jdbc/LiferayPool" /> </bean> </property> </bean> <Resource name="jdbc/LiferayPool" auth="Container" type="javax.sql.DataSource" driverClassName="net.sourceforge.jtds.jdbc.Driver" url="jdbc:jtds:sqlserver://localhost:1433/lportal" username="sa" password="123" maxActive="100" maxIdle="30" maxWait="10000" /> 5. 安装完成.