我们正在尝试使用HikariCP将 MariaDB 数据源设置为conn。 Apache Karaf 4.1.2 中的游泳池。
这些是安装的功能:
karaf@root()> feature:install jndi transaction pax-jdbc-pool-hikaricp pax-jdbc-mariadb jasypt-encryption
如果我们只使用blueprint.xml中的(非XA)DataSource服务定义,一切正常,我们可以看到创建的DataSource(和DataSourceFactory)实例没有问题:
karaf@root()> service:list DataSource
[javax.sql.DataSource]
----------------------
datasource.name = MySQL
osgi.jndi.service.name = jdbc/testdb
osgi.service.blueprint.compname = dataSource
service.bundleid = 79
service.id = 147
service.scope = bundle
Provided by :
Test MariaDB Datasource Bundle (79)
但是如果我们在blueprint.xml中使用XADataSource,则不会创建任何DataSource( service:list DataSource 返回空)
这些是我们在数据源包中使用的配置文件:
datasource.cfg :
db.server = DB_SERVER_IP:3306
db.database = testdb
db.username = root
db.password = ENC(sZwyfHzdvZSVoDDeU2/Vnw==)
blueprint.xml :
<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
xmlns:enc="http://karaf.apache.org/xmlns/jasypt/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
default-activation="eager"
xsi:schemaLocation="
http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd
http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0 http://svn.apache.org/repos/asf/aries/trunk/blueprint/blueprint-cm/src/main/resources/org/apache/aries/blueprint/compendium/cm/blueprint-cm-1.1.0.xsd
">
<cm:property-placeholder persistent-id="datasource"
update-strategy="reload">
</cm:property-placeholder>
<enc:property-placeholder>
<enc:encryptor class="org.jasypt.encryption.pbe.StandardPBEStringEncryptor">
<property name="config">
<bean class="org.jasypt.encryption.pbe.config.EnvironmentStringPBEConfig">
<property name="algorithm" value="PBEWITHMD5ANDTRIPLEDES" />
<property name="password" value="DB_ENC_PWD" />
</bean>
</property>
</enc:encryptor>
</enc:property-placeholder>
<!-- This works just fine! -->
<service ref="dataSource" interface="javax.sql.DataSource">
<service-properties>
<entry key="osgi.jndi.service.name" value="jdbc/testdb" />
<entry key="datasource.name" value="MySQL" />
</service-properties>
</service>
<!-- But if we use this one, no DataSource is created... -->
<service ref="dataSource" interface="javax.sql.XADataSource">
<service-properties>
<entry key="osgi.jndi.service.name" value="jdbc/testdbxa" />
<entry key="datasource.name" value="MySQL" />
</service-properties>
</service>
<bean id="dataSource" class="org.mariadb.jdbc.MariaDbDataSource">
<property name="databaseName" value="${db.database}" />
<property name="url"
value="jdbc:mariadb://${db.server}/${db.database}?characterEncoding=UTF-8" />
<property name="user" value="${db.username}" />
<property name="password" value="${db.password}" />
</bean>
</blueprint>
我知道 org.mariadb.jdbc.MariaDbDataSource 也实现了XADataSource,所以这个配置一直运行得很好。
我在这里缺少什么?是否需要安装任何缺失的功能,或者此配置是否完全错误?
提前致谢。
答案 0 :(得分:0)
最后,我想通过C. Schneider的指导来解决这个问题。
我犯的第一个错误是使用HikariCP。根据{{3}},HikariCP尚不支持XA Connections。所以我必须切换到DBCP2。
正如评论中清楚解释的那样,使用 pax-jdbc-config 是更容易理解和明确定义数据源的方法。所以我跟着this post而不是DataSource包(蓝图方式),只是创建了这个配置文件:
showFirms