Worklight 6.0 does not start on Liberty - HSQLDB

北慕城南 提交于 2020-01-25 00:33:46

问题


I have followed the infocenter docs to setup Worklight on Liberty and Oracle Database all on Windows 2008. (http://pic.dhe.ibm.com/infocenter/wrklight/v6r0m0/topic/com.ibm.worklight.help.doc/devref/t_transporting_apps_and_adapters.html - Deploying IBM Worklight applications to test and production environments)

When I start the liberty server, I get this error on the browser

Exception thrown by application class 'com.worklight.core.auth.impl.AuthenticationFilter.doFilter:110' javax.servlet.ServletException: Worklight Project not initialized

at com.worklight.core.auth.impl.AuthenticationFilter.doFilter(AuthenticationFilter.java:110) at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:194) at [internal classes]

Going thru the logs, it shows it did not start because the HSQLDB driver is not found.

The server.xml has the following:

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

<library id="worklight/OracleLib">
 <fileset dir="${shared.resource.dir}/worklight/oracle" includes="*.jar"/>
</library>

<!-- Declare the IBM Worklight Console database. -->
<dataSource jndiName="worklight/jdbc/WorklightDS" transactional="false">
  <jdbcDriver libraryRef="worklight/OracleLib"/>
  <properties.oracle driverType="thin" URL="jdbc:oracle:thin:@localhost:1521:ORCLWL" user="WORKLIGHTDIS" password="WORKLIGHTDIS"/>
</dataSource>

I took a step further and checked how the WAR file links to database jndi entries. Going thru the web.xml file I found this:

<resource-ref>
<description>Worklight Server Database</description> 
<res-ref-name>jdbc/WorklightDS</res-ref-name> 
<res-type>javax.sql.DataSource</res-type> 
<res-auth>Container</res-auth> 
</resource-ref>

The res-ref-name is slightly different from what is declared in the server.xml. Bear in mind that these entries were created by the ant script. This seems to be inconsistent from what the war file contains (created by the WL Studio).

Anyway I gave it a try and changed the server.xml jndi entry to be exactly the same as the web.xml entry (jdbc/WorklightDS). When I restarted the liberty server It did not change the final result at all. The error message and the HSQL driver thing kept showing in the log.

This is the exception

nested exception is java.lang.RuntimeException: java.lang.ClassNotFoundException: Class                 org.hsqldb.jdbcDriver not found in Worklight platform or project /finance
at  org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:275)

Later on I found out that if I change the element in the server.xml to be worklight value for all atributes it works. How odd it is.

<application id="worklight" name="worklight" location="finance.war" type="war">

Please, any help is much appreciated to help me understand and fix it.


回答1:


The error message "java.lang.RuntimeException: java.lang.ClassNotFoundException: Class org.hsqldb.jdbcDriver not found in Worklight platform or project ..." is indeed misleading. It should better read something like "Worklight server cannot be started because no data-source is bound to resource reference: 'jdbc/WorklightDS'. Re-configuring the server will solve this problem. for more information search for "Creating and configuring the databases" in IBM Worklight information center."

The explanation for the error message is that by writing <application id="finance" name="finance" location="finance.war" type="war"> you selected a context root /finance, according to the WebSphere Liberty rules at Deploying a web application to the Liberty profile. For this context root, you need to write

<dataSource jndiName="finance/jdbc/WorklightDS" transactional="false">

This is similar to how JNDI environment entries need to be declared for Worklight (see here).



来源:https://stackoverflow.com/questions/19060671/worklight-6-0-does-not-start-on-liberty-hsqldb

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!