更具体地说,我得到了包含所有依赖项的可执行战争。应用程序在没有 jndi 数据源的情况下启动,就像使用 jndi 数据源运行它的魅力一样,但失败了。我相信在这样的配置中没有jetty.xml的位置,所以jetty-env.xml也不行,因为jetty默认不会读取它。我尝试使用 jetty-web.xml 进行 jndi 数据源配置,但 jetty 无法部署应用程序并返回 503 错误代码。我正在使用 Jetty9-M4。尝试了 tomcat pooling 和 BoneCP 都具有相同的结果。
入门班:
import java.net.URL;
import java.security.ProtectionDomain;
import org.eclipse.jetty.server.*;
import org.eclipse.jetty.webapp.WebAppContext;
public final class Loader {
public static void main(String[] args) throws Exception
{
String jetty_home = "..";
int appli_port = 8080;
Server server = new Server(appli_port);
ProtectionDomain protectionDomain = Loader.class.getProtectionDomain();
URL location = protectionDomain.getCodeSource().getLocation();
WebAppContext webapp = new WebAppContext();
webapp.setContextPath("/");
webapp.setWar(location.toExternalForm());
server.setHandler(webapp);
server.start();
server.join();
}
}
码头-web.xml:
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<New id="testDS" class="org.eclipse.jetty.plus.jndi.Resource">
<Arg></Arg>
<Arg>jdbc/testDS</Arg>
<Arg>
<New class="com.jolbox.bonecp.BoneCPDataSource">
<Set name="driverClass">org.postgresql.Driver</Set>
<Set name="jdbcUrl">jdbc:postgresql://localhost:5432/testDS</Set>
<Set name="username">name</Set>
<Set name="password">password</Set>
<Set name="minConnectionsPerPartition">5</Set>
<Set name="maxConnectionsPerPartition">50</Set>
<Set name="acquireIncrement">5</Set>
<Set name="idleConnectionTestPeriod">30</Set>
</New>
</Arg>
</New>
</Configure>
我怀疑 jndi 在 jetty-web 阶段或配置为时已晚,这是错误的。
抱歉英语不好。
忘了提我正在使用 Hibernate 作为 ORM。
web.xml 包含:
<resource-ref>
<description>Postgres datasource</description>
<res-ref-name>jdbc/testDS</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
Hibernate.cfg.xml 包含
<property name="hibernate.connection.datasource">java:comp/env/jdbc/testDS</property>
尝试过
<property name="hibernate.connection.datasource">jdbc/testDS</property>
也不工作。
jetty-web.xml
作为你的战争中的一个小注解WEB-INF
,它适用于 JNDI 资源配置,默认情况下使用它。