I come from China, I am a new user of orbeon forms, I hope you can help me
I want to build a form orbeon forms stored in my local mysql database, but it is always stored in \webapps\orbeon\WEB-INF\exist-data, how should I turn off this way, and which are stored in the database?
First, I have configured /META-INF/context.xml
<Context>
<Resource name = "jdbc / mysql" auth = "Container" type = "javax.sql.DataSource"
initialSize = "3" maxActive = "10" maxIdle = "20" maxWait = "30000"
driverClassName = "com.mysql.jdbc.Driver"
poolPreparedStatements = "true"
username = "root"
password = "root"
url = "jdbc: mysql: // localhost: 3333 / orbeon useUnicode = true & amp; characterEncoding = UTF8?" />
</ Context>
Then configure the properties-local.xml
<properties xmlns: xs = "
http://www.w3.org/2001/XMLSchema" xmlns: oxf = "
http://www.orbeon.com/oxf/processors">
<property as = "xs: boolean" name = "oxf.fr.persistence.exist.active" value = "false" />
<property as = "xs: string" name = "oxf.fr.persistence.provider.acme * *.." value = "mysql" />
<property as = "xs: string" name = "oxf.fr.persistence.mysql.datasource" value = "mysql" />
</ properties>
Lifting web.xml comment
<resource-ref>
<description>DataSource</description>
<res-ref-name>jdbc/mysql</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>