IBM Worklight 6.0 - 如何绑定数据源?

时间:2013-08-19 14:10:02

标签: ibm-mobilefirst websphere-liberty

在将自定义war部署到WebSphere Liberty概要文件时,我得到以下异常:

  

未找到类org.hsqldb.jdbcDriver

我已按照以下方式创建和配置数据库:

http://pic.dhe.ibm.com/infocenter/wrklight/v6r0m0/index.jsp?topic=%2Fcom.ibm.worklight.help.doc%2Fadmin%2Ft_configuring_liberty_profile_for_derby_manually.html

通过以下方式编辑server.xml文件:

http://pic.dhe.ibm.com/infocenter/wrklight/v6r0m0/index.jsp?topic=%2Fcom.ibm.worklight.help.doc%2Fadmin%2Ft_configuring_liberty_profile_manually.html

在生成的自定义war的web.xml中,数据源的资源引用具有以下值:

<res-ref-name>jdbc/WorklightDS</res-ref-name>
<res-ref-name>jdbc/WorklightReportsDS</res-ref-name>

但是服务器xml中定义的数据源还包含以下内容:

<dataSource jndiName="worklight/jdbc/WorklightDS" transactional="false" statementCacheSize="10">
<dataSource jndiName="worklight/jdbc/WorklightReportsDS" transactional="false" statementCacheSize="10">

无论如何,我已经尝试更改数据源jndi,我得到了同样的例外。

我还尝试将属性wl.db.jndi.name和wl.reports.db.jndi.name添加到worklight.properties文件中但没有成功。我认为这些属性在WL6.0中不再有效。

还尝试将ibm-web-bnd.xml文件添加到生成的战争中。

我猜这个问题与应用程序和Liberty配置文件数据源之间的绑定有关。

我能够部署自定义war的唯一方法是在workligh.properties文件中设置Derby数据库。

wl.db.url=jdbc:derby:C:/WebSphere/Worklight60DBs/WRKLGHT;create=true
wl.reports.db.url=jdbc:derby:C:/WebSphere/Worklight60DBs/WLREPORT;create=true
wl.db.username=WORKLIGHT

对于错误,这是我的server.xml:

<featureManager>                      
    <feature>jsp-2.2</feature>        
    <feature>ssl-1.0</feature>        
    <feature>servlet-3.0</feature>    
    <feature>jdbc-4.0</feature>       
    <feature>appSecurity-1.0</feature>
    <feature>jndi-1.0</feature>                                     
</featureManager>                     

<application id="CaixaProject" name="CaixaProject" location="CaixaProject.war" type="war">   
    <classloader delegation="parentLast">                                                        
        <commonLibrary>                                                                          
            <fileset dir="${shared.resource.dir}/lib" includes="worklight-jee-library.jar"/>                      
        </commonLibrary>                                                                         
    </classloader>                                                                               
</application>                                                                                   

<webContainer invokeFlushAfterService="false"/>  

<library id="DerbyLib">                                                                                               
    <fileset dir="${shared.resource.dir}/derby" includes="derby.jar"/>
</library>                          

<dataSource jndiName="jdbc/WorklightDS" transactional="false" statementCacheSize="10">                                                                           
    <jdbcDriver libraryRef="DerbyLib" javax.sql.ConnectionPoolDataSource="org.apache.derby.jdbc.EmbeddedConnectionPoolDataSource"/>                                                                
    <properties.derby.embedded databaseName="C:/WebSphere/Worklight60DBs/WRKLGHT" user="WORKLIGHT" shutdownDatabase="false" connectionAttributes="upgrade=true"/>
    <connectionManager connectionTimeout="180" maxPoolSize="10" minPoolSize="1" reapTime="180" maxIdleTime="1800" agedTimeout="7200" purgePolicy="EntirePool" /> 
</dataSource>    

<dataSource jndiName="jdbc/WorklightReportsDS" transactional="false" statementCacheSize="10">                                                                                                                                                                                                                     
   <jdbcDriver libraryRef="DerbyLib" javax.sql.ConnectionPoolDataSource="org.apache.derby.jdbc.EmbeddedConnectionPoolDataSource"/>                                
    <properties.derby.embedded databaseName="C:/WebSphere/Worklight60DBs/WLREPORT" user="WORKLIGHT" shutdownDatabase="false" connectionAttributes="upgrade=true"/>
    <connectionManager connectionTimeout="180" maxPoolSize="10" minPoolSize="1" reapTime="180" maxIdleTime="1800" agedTimeout="7200" purgePolicy="EntirePool" />  
</dataSource>

我在worklight.properties文件中修改过的唯一属性:

publicWorkLightHostname
publicWorkLightProtocol
publicWorkLightPort

如何使用数据源将自定义war部署到Liberty配置文件?

谢谢。

1 个答案:

答案 0 :(得分:0)

是一种误导性的消息。它与jndi配置有关。

你的jndi引用应该在名称中包含CaixaProject 在server.xml

中这样
<dataSource jndiName="CaixaProject/jdbc/WorklightDS"
<dataSource jndiName="CaixaProject/jdbc/WorklightReportsDS" 

并且web.xml内部应该是这样的

<res-ref-name>CaixaProject/jdbc/WorklightDS</res-ref-name>
<res-ref-name>CaixaProject/jdbc/WorklightReportsDS</res-ref-name>

引用你Worklight 6.0 does not start on Liberty - HSQLDB