<transactionManager type="JDBC">

          <dataSource type="SIMPLE">             

               <property name="JDBC.Driver" value="com.mysql.jdbc.Driver" />

          <property name="JDBC.ConnectionURL" value="jdbc:mysql://localhost:3306/exam?zeroDateTimeBehavior=convertToNull" />

               <property name="JDBC.Username" value="${username}" />

               <property name="JDBC.Password" value="${password}" />

               <property name="JDBC.DefaultAutoCommit" value="true"/>

               <property name="Pool.MaximumActiveConnections" value="15" />

               <property name="Pool.MaximumIdleConnections" value="15" />

               <property name="Pool.MaximumWait" value="1000" />

          </dataSource>        

     </transactionManager>

 

As you can see the BOLD part of the mysqlconfig.xml file.

 

Is there a way for the transactionManager to include properties specific to the

database?

 

For example like :

 

               ...

               <property name="JDBC.Driver" value="com.mysql.jdbc.Driver" />

          <property name="JDBC.ConnectionURL" value="jdbc:mysql://localhost:3306/exam? "/>

          <property name=”JDBC.Driver.zeroDateTimeBehavior” value=”convertToNull”/>

               <property name="JDBC.Username" value="${username}" />

               <property name="JDBC.Password" value="${password}" />

 

I will really appreciate for this kind of change.

 

Thanks!

 

 

 

Reply via email to