使用 MySQL 5.6 在 Tomcat 7 上运行 Worklight 5.0.6
我删除了所有以前的数据库并让安装管理器重新创建它们。控制台运行良好,我可以上传 wlapp 和 adapetrs。但是,在部署 myproject.war 后,我每 5 秒收到以下错误:
SEVERE: Persistency data access problem
com.worklight.core.exceptions.PersistentDataAccessException:
Persistency data access problem at com.worklight.core.exceptions.DefaultExceptionHandler.handleException(DefaultExceptionHandler.java:50) at com.worklight.core.tasks.TaskThread.run(TaskThread.java:100)
Caused by:
org.springframework.dao.InvalidDataAccessApiUsageException: Can only perform operation while a transaction is active.;
nested exception is <openjpa-1.2.2-r422266:898935 nonfatal user error>
org.apache.openjpa.persistence.TransactionRequiredException: Can only perform operation while a transaction is active.
操作系统:Windows Server 2008 R2 标准
数据库:APPCNTR、WLREPORT、WRKLGHT
context.xml 的内容
<Context>
<Resource name="jdbc/WorklightDS"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="worklight"
password="***"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/WRKLGHT"/>
<Resource name="jdbc/WorklightReportsDS"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="worklight"
password="***"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/WLREPORT"/>
<Resource name="jdbc/AppCenterDS"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="worklight"
password="***"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/APPCNTR"/>
</Context>
Tomcat 的 web.xml
<resource-ref>
<res-ref-name>jdbc/WorklightDS</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
<resource-ref>
<res-ref-name>jdbc/WorklightReportsDS</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
worklight.properties
wl.db.jndi.name=java:comp/env/jdbc/WorklightDS
wl.db.type=MYSQL
以下是更详细的步骤: 是的,步骤如下:
使用 IM 安装 worklight 5.0.6.1 - 这会将三个 Web 应用程序放在我的 Tomcat 文件夹中:appcenterconsole.war、applicationcenter.war 和 worklight.war
运行控制台(运行成功):
http://hostname:8080/worklight/console
在 Eclipse 中创建一个混合项目,这会在 /bin 文件夹中生成 myprojectname.war 文件
更新我的项目的 server/conf 文件夹中的 workllight.properties 文件中的 publicWorkLightContext、publicWorkLightPort、wl.db.type、wl.db.jndi.name 变量。
将 myproject.war 重命名为 myappname.war 以匹配 publicWorkLightContext 变量的值
手动将 myappname.war 文件放到 Tomcat 的 webapps 文件夹下(这是错误开始出现的时候)
另外通过 worklight 控制台上传适配器和 wlapp 文件。此步骤工作正常,我可以看到在数据库中创建的相应记录