Theres大约有20个差异文件,构成了构建。我不知道如何配置run-jetty-run eclipse插件来使用这些信息。任何人都可以指向我的教程或一些文档:
<target name="run-jetty" depends="build" description="Runs application in included Jetty container">
<property file="credentials.properties" />
<property name="jetty.port" value="8080" />
<java jar="${jetty.dir}/start.jar" fork="true" dir="${basedir}" maxmemory="512M">
<arg value="${jetty.conf.dir}/jetty.xml" />
<arg value="${jetty.conf.dir}/jetty-jndi.xml" />
<sysproperty key="jetty.port" value="${jetty.port}" />
<jvmarg value="-XX:MaxPermSize=128m" />
<jvmarg value="-Dfile.encoding=UTF-8" />
<jvmarg value="-Djetty.home=${jetty.dir}" />
<jvmarg value="-Djetty.datasource.lanter.username=${jetty.datasource.lanter.username}" />
<jvmarg value="-Djetty.datasource.lanter.password=${jetty.datasource.lanter.password}" />
<jvmarg value="-Djetty.datasource.vs.username=${jetty.datasource.us.username}" />
<jvmarg value="-Djetty.datasource.vs.password=${jetty.datasource.us.password}" />
<jvmarg value="-DSTOP.PORT=${jetty.stop.port}" />
<jvmarg value="-DSTOP.KEY=${jetty.stop.key}" />
</java>
</target>
答案 0 :(得分:0)
您有两种选择:
使用run-jetty-run插件启动应用程序;这将在调试菜单中为您提供一个条目,这意味着如果您选择Jetty(和应用程序)将在调试器中启动。
使用上面代码块中的信息创建自己的运行配置。类路径应该已经是正确的;您只需选择正确的主类(在META-INF/MANIFEST.MF
中打开start.jar
即可找到)。将所有属性替换为其值,并将每个属性放入运行配置的参数文本字段中的新行。
在“Common”选项卡上,您可以设置文件名并将启动配置保存为项目中的文件,这样每个人都可以获得它。