如何使用eclipse将Liferay Portal与mysql数据库连接?

时间:2014-06-27 09:59:33

标签: mysql database-connection liferay-6 liferay-ide

我有Liferay 6.2,我想使用eclipse IDE连接mysql数据库。如何连接它们以及我必须使用的内容。请给我任何启动的例子。

1 个答案:

答案 0 :(得分:3)

按照以下步骤 - >

  1. 创建一个新的liferay服务器(将其指向liferay门户网站)。
  2. 启动服务器。
  3. 当服务器开始命中时 本地主机:8080。
  4. 将显示数据库的页面 配置和用户配置。
  5. 提供数据库名称和 用户名和密码。
  6. 一旦你提供了,liferay将使用 那个数据库。(显然数据库应该在你的数据库中)
  7. 否则,您可以在\ liferay-portal-6.2.0-ce-ga1目录中创建portal-setup-wizard.properties文件。然后添加以下条目。

    admin.email.from.name=Test Test
    jdbc.default.password=root
    liferay.home=D:/5555555/liferay-portal-6.2.0-ce-ga1
    admin.email.from.address=test@liferay.com
    jdbc.default.driverClassName=com.mysql.jdbc.Driver
    jdbc.default.username=root
    jdbc.default.url=jdbc:mysql://localhost/project_monitor_liferay?useUnicode=true&characterEncoding=UTF-8&useFastDateParsing=false
    setup.wizard.enabled=false
    

    否则,您可以按照以下链接

    http://www.liferaysavvy.com/2013/12/liferay-62-portal-development.html

    这里已经给出了一步一步的过程。如果您觉得有帮助,请将上述内容标记为答案,以便对其他人也有帮助。

    要在portlet中使用服务构建器,您可以浏览以下链接。 了解如何创建portlet并在其中集成服务。

    https://github.com/liferay/liferay-plugins/tree/master/portlets/sample-service-builder-portlet
    
    http://www.liferaysavvy.com/2014/05/liferay-mvc-portlet-development-with.html
    
    http://www.liferaysolution.com/2011/12/nice-video-tutorial-to-create-sample.html
    
    http://innovationliferay.blogspot.in/p/service-builder-concept.html
    

    否则你可以从中下载liferay食谱 http://www.mpowerglobal.com/download-cookbook本书包含您的所有查询。你只需要挖掘它并找到它。