mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
16 lines
691 B
XML
16 lines
691 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd">
|
|
|
|
<!-- Default abstract Ebean Server configuration -->
|
|
<bean id="defaultEbeanServerConfig" class="io.ebean.config.ServerConfig" abstract="true">
|
|
<property name="externalTransactionManager">
|
|
<bean class="io.ebean.spring.txn.SpringJdbcTransactionManager"/>
|
|
</property>
|
|
<property name="namingConvention">
|
|
<bean class="io.ebean.config.UnderscoreNamingConvention"/>
|
|
</property>
|
|
</bean>
|
|
</beans>
|