<GlobalNamingResources>
<Resource name="jdbc/myds" auth="Container"
type="javax.sql.DataSource"
maxActive="10" maxIdle="3" maxWait="10000"
username="sa" password=""
driverClassName="org.h2.Driver"
url="jdbc:h2:~/.myds/data/db"
/>
</GlobalNamingResources>
我在catalina.out中看到这是绑定的,所以我想这没关系。
在我的网络应用程序中,我有数据源的链接,我不确定它没关系:
<Context>
<ResourceLink global='jdbc/myds' name='jdbc/myds' type="javax.sql.Datasource"/>
</Context>
在应用程序中有persistence.xml:
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
version="2.0">
<persistence-unit name="oam" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<non-jta-data-source>jdbc/myds</non-jta-data-source>
<!-- class definitions here, nothing else -->
<properties>
<property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/>
</properties>
</persistence-unit>
</persistence>
应该没问题,但很可能这个或者ResourceLink定义是错误的,因为我得到了:
javax.naming.NameNotFoundException: 名称jdbc未绑定在此Context
中
出了什么问题以及为什么这不起作用?
更新
我试图直接获取数据源:
public class WebAppListener implements ServletContextListener
{
// ServletContextListener interface - start
public void contextInitialized(ServletContextEvent sce)
{
try
{
Context initCtx = new InitialContext();
Context envCtx = (Context) initCtx.lookup("java:comp/env");
DataSource ds = (DataSource)
envCtx.lookup("jdbc/myds");
}
catch (NamingException ex)
{
System.out.println("!!!! Got NamingException:");
ex.printStackTrace(System.out);
}
}
public void contextDestroyed(ServletContextEvent sce) { }
}
我的web.xml:
<listener>
<display-name>Listener</display-name>
<listener-class>WebAppListener</listener-class>
</listener>
虽然我连接到Tomcat时在JMX控制台中看到了数据源,但仍然会出现相同的错误 (Catalina - Datasource - javax.sql.Datasource =“jdbc / myds”: ObjectName = Catalina:type = DataSource,class = javax.sql.DataSource,name =“jdbc / myds”。 )
答案 0 :(得分:10)
<non-jta-data-source>
中的persistence.xml
应为
java:comp/env/jdbc/myds
根据http://forums.oracle.com/forums/thread.jspa?messageID=1899677
中的回复也是$CATALINA_HOME/lib
答案 1 :(得分:1)
(我在Tomcat7中使用Apache OpenJPA库,所以可能与Hibernate的东西不匹配)
我从来没有在我的OpenJPA webapps上使用全局jdbc,但尝试了一下。它工作,这是我的配置。请参阅保存persistence.xml的文件夹,可能是openjpa问题但没有它没有任何作用。
<强> MyApp的/ WEB-INF /类/ META-INF / persistence.xml中强>
这是使用openjpa提供程序,因此在hibernate中可能不需要类列表。
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<persistence-unit name="main" transaction-type="RESOURCE_LOCAL">
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
<non-jta-data-source>java:comp/env/jdbc/mydb</non-jta-data-source>
<class>com.myapp.db.User</class>
<class>com.myapp.db.Server</class>
<properties>
<property name="openjpa.DynamicEnhancementAgent" value="false" />
<property name="openjpa.RuntimeUnenhancedClasses" value="unsupported" />
<property name="openjpa.Log" value="commons" />
<property name="openjpa.ConnectionFactoryProperties" value="PrintParameters=true" />
</properties>
</persistence-unit>
</persistence>
<强>的Tomcat / CONF / server.xml中强>
添加全局jdbc资源。
..cut...
<GlobalNamingResources>
<Resource name="UserDatabase" auth="Container"
type="org.apache.catalina.UserDatabase"
description="User database that can be updated and saved"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
pathname="conf/tomcat-users.xml" readonly="true" />
<Resource name="jdbc/mydb" auth="Container" type="javax.sql.DataSource"
maxActive="100" maxIdle="20" maxWait="10000"
username="myuser" password="mypwd"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/mydb?useUnicode=true&characterEncoding=utf8"
validationQuery="SELECT 1" removeAbandoned="true" removeAbandonedTimeout="300"
/>
</GlobalNamingResources>
..cut...
<强>的Tomcat / CONF /卡塔利娜/本地主机/ myapp.xml 强>
这是我的开发框,所以我使用docBase直接链接到项目文件夹。当部署到生产箱时,您应该发现将此插入war包(META-INF / context.xml)。
<?xml version="1.0" encoding="UTF-8"?>
<Context docBase="/projects/myapp/web" reloadable="true" crossContext="true" >
<Realm className="org.apache.catalina.realm.DataSourceRealm"
dataSourceName="jdbc/mydb" localDataSource="false" digest="SHA"
userTable="user" userNameCol="username" userCredCol="password"
userRoleTable="user_role_v" roleNameCol="role"
/>
<ResourceLink name="jdbc/mydb" global="jdbc/mydb" type="javax.sql.DataSource" />
</Context>
<强> MyApp的/ WEB-INF / web.xml中强>
将resource-ref添加到文件末尾。
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0" >
<description>Webapp</description>
<display-name>Webapp</display-name>
..cut...
<resource-ref>
<description>mydb</description>
<res-ref-name>jdbc/mydb</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>
因为我使用OpenJPA + Tomcat7(不是完整的j2ee容器),这可能看起来过度工程,但这就是它的工作原理。结果很好,开发db-aware webapps非常容易。无需手动sql查询硬编码和oldskool DAO类。
答案 2 :(得分:0)
您是否通过在web.xml
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/myds</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>