Joined: Thu Mar 24, 2005 10:07 am Posts: 14
|
Sorry if this question is basic but im seeing the following log message and I'm not sure the proper way to implement transactions. I see this log warning in the logs but don't know if its a big deal or not. Can anyone help?
------------------
INFO TransactionManagerLookupFactory:33 - No TransactionManagerLookup configured (in JTA environment, use of process level read-write cache is not recommended)
------------------
My ENV is:
Tomcat 5.0.28 with DBCP conn pool
Hibernate 2.1.8
SQL Server 2000
Mapping doc:
------------------
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.datasource">java:comp/env/jdbc/PCMExchange</property>
<property name="show_sql">false</property>
<property name="dialect">org.hibernate.dialect.SQLServerDialect</property>
<!-- Mapping files -->
<mapping resource="Investor.hbm.xml"/>
<mapping resource="Offering.hbm.xml"/>
<mapping resource="Contact.hbm.xml"/>
<mapping resource="PrevYearRevenue.hbm.xml"/>
<mapping resource="Location.hbm.xml"/>
<mapping resource="PrevYearNetIncome.hbm.xml"/>
<mapping resource="PrevYearPreTaxIncome.hbm.xml"/>
<mapping resource="TotalAssets.hbm.xml"/>
<mapping resource="LongTermDebt.hbm.xml"/>
<mapping resource="ShortTermDebt.hbm.xml"/>
<mapping resource="StockholderEquity.hbm.xml"/>
<mapping resource="NumberShareHolders.hbm.xml"/>
<mapping resource="Sector.hbm.xml"/>
<mapping resource="Company.hbm.xml"/>
<mapping resource="Revenue.hbm.xml"/>
<mapping resource="SICCode.hbm.xml"/>
</session-factory>
</hibernate-configuration>
THanks
|
|