自由配置文件服务器中的DataSource初始化错误

时间:2014-11-19 18:22:30

标签: java jdbc datasource websphere-liberty

我正在尝试在自由配置文件服务器中设置一个DataSource,但是当我的代码尝试使用它时,我得到NullPointerException(在我的ds变量下面)。

相关代码和server.xml条目如下。 有趣的是,如果我将jndiName更改为java:comp/env/jdbc/Oracle我在服务器启动时得到IllegalArgumentException,但是使用下面的配置它似乎甚至没有尝试激活数据源......

public abstract class DAOBase {
    //@Resource(name = "jdbc/Oracle", type = javax.sql.DataSource.class, shareable = true, authenticationType = AuthenticationType.CONTAINER)
    @Resource(lookup = "jdbc/Oracle")
    private DataSource ds;


protected Connection getConnection() throws SQLException {
    Connection conn = ds.getConnection();
    return conn;
}

我的server.xml配置:

<featureManager>
    <feature>jsp-2.2</feature>
    <feature>jaxrs-1.1</feature>
    <feature>localConnector-1.0</feature>
    <feature>appSecurity-2.0</feature>
    <feature>jpa-2.0</feature>
    <feature>jdbc-4.0</feature>
    <feature>jndi-1.0</feature>
</featureManager>

<library id="OracleJDBC_ID">
    <fileset dir="C:\src\main\lib" includes="ojdbc6.jar"/>
</library>
<jdbcDriver id="OracleDriver" libraryRef="OracleJDBC_ID"/>

<dataSource jdbcDriverRef="OracleDriver" jndiName="jdbc/Oracle">
    <properties.oracle URL="jdbc:oracle:thin:@ldap://oid:***/opl***,cn=OracleContext,dc=****,dc=com" password="****" user="*****"/>
</dataSource>

日志错误:

[ERROR   ] CWWKE0701E: [com.ibm.ws.jdbc.dataSource(200)] The modified method has
thrown an exception Bundle:com.ibm.ws.jdbc(id=82) java.lang.IllegalArgumentException: 
J2CA8011E: Value java:comp/env/jdbc/Oracle is not supported for jndiName on dataSource
    at com.ibm.ws.jdbc.DataSourceService.activate(DataSourceService.java:209)
    at [internal classes]

编辑: 代码位于数据访问层的基类中。我们通过非常简单的初始化在RESTful Web服务中调用它:

AuditDAO auditDAO = new AuditDAO();

1 个答案:

答案 0 :(得分:2)

除非您激活CDI,否则@Resource将无法在POJO中使用。请尝试以下方法:

  • 将beans.xml文件添加到WEB-INF文件夹,并添加CDI功能
<feature>cdi-1.0</feature>
  • 使用@Inject AuditDAO auditDAO
  • 将auditDAO注入您的网络服务
  • 在dao中使用以下参考
   @Resource(name="jdbc/Oracle", lookup = "jdbc/Oracle")
   private DataSource ds;