0

我会更改自动部署文件夹以在 Liferay 中部署我的自定义 portlet。我在 Tomcat 中使用 Jelastic 设置。我需要更改 portal-ext.propeties 吗?

4

1 回答 1

0

实际上有两个地方我认为你会更新属性

  1. portal-ext.properties更新以下属性以拥有您的自定义目录

    # Set the directory to scan for layout templates, portlets, and themes to
    # auto deploy.
    #
    
    auto.deploy.deploy.dir=${liferay.home}/deploy
    
  2. 对于您的插件 SDK,您必须将以下属性添加到您的构建中。{username}.properties

    # Auto Deploy
    # Plugins will be deployed to this directory. Make sure that Liferay is
    # also set to scan this directory.
    #
    
    auto.deploy.dir=${app.server.dir}/../deploy
    

希望这可以帮助 !

于 2013-09-27T10:50:15.353 回答