-
-
Save kamal-github/1de9d25e7908faf1d53caa9062541009 to your computer and use it in GitHub Desktop.
jpaConfig.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:tx="http://www.springframework.org/schema/tx" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd | |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd | |
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd"> | |
<context:annotation-config /> | |
<context:component-scan base-package="com.lorem.Todo" /> | |
<bean | |
class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" /> | |
<bean | |
id="entityManagerFactory" | |
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> | |
<property name="persistenceUnitName" value="punit" /> | |
<property name="dataSource" ref="dataSource" /> | |
<property name="jpaVendorAdapter"> | |
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"> | |
<property name="showSql" value="true" /> | |
</bean> | |
</property> | |
<property name="jpaPropertyMap"> | |
<map> | |
<entry key="hibernate.dialect" value="org.hibernate.dialect.MySQL5InnoDBDialect" /> | |
<entry key="hibernate.hbm2ddl.auto" value="none" /> | |
<entry key="hibernate.format_sql" value="true" /> | |
</map> | |
</property> | |
</bean> | |
<bean | |
id="transactionManager" | |
class="org.springframework.orm.jpa.JpaTransactionManager"> | |
<property name="entityManagerFactory" ref="entityManagerFactory" /> | |
</bean> | |
<tx:annotation-driven transaction-manager="transactionManager" /> | |
<bean | |
id="dataSource" | |
class="org.springframework.jdbc.datasource.DriverManagerDataSource"> | |
<property name="driverClassName" value="com.mysql.jdbc.Driver" /> | |
<property name="url" value="jdbc:mysql://localhost:3306/todo?autoReconnect=true" /> | |
<property name="username" value="root" /> | |
<property name="password" value="asm" /> | |
</bean> | |
</beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment