知识大全 Spring+JPA+MySQL的配置文件
Posted 知
篇首语:书史足自悦,安用勤与劬。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 Spring+JPA+MySQL的配置文件相关的知识,希望对你有一定的参考价值。
Spring+JPA+MySQL的配置文件 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
一直在整合spring+hibernate 今天整合一下JPA +Spring
persistence xml 默认放在 META INF 目录下
Xml代码 <persistence xmlns= xmlns:xsi= instance xsi:schemaLocation= persistence_ _ xsd version= > <persistence unit name= java transaction type= RESOURCE_LOCAL > <provider> hibernate ejb HibernatePersistence</provider> <class>MyClass</class> <properties> <property name= hibernate cache provider_class value= hibernate cache EhCacheProvider /> <property name= show_sql value= true /> <property name= hibernate cache use_second_level_cache value= true /> <property name= hibernate cache use_query_cache value= false /> </properties> </persistence unit> </persistence> view plaincopy to clipboardprint? <persistence xmlns= xmlns:xsi= instance xsi:schemaLocation= persistence_ _ xsd version= > <persistence unit name= java transaction type= RESOURCE_LOCAL > <provider> hibernate ejb HibernatePersistence</provider> <class>MyClass</class> <properties> <property name= hibernate cache provider_class value= hibernate cache EhCacheProvider /> <property name= show_sql value= true /> <property name= hibernate cache use_second_level_cache value= true /> <property name= hibernate cache use_query_cache value= false /> </properties> </persistence unit> </persistence>
<persistence xmlns= xmlns:xsi= instance xsi:schemaLocation= persistence_ _ xsd version= > <persistence unit name= java transaction type= RESOURCE_LOCAL > <provider> hibernate ejb HibernatePersistence</provider> <class>MyClass</class> <properties> <property name= hibernate cache provider_class value= hibernate cache EhCacheProvider /> <property name= show_sql value= true /> <property name= hibernate cache use_second_level_cache value= true /> <property name= hibernate cache use_query_cache value= false /> </properties> </persistence unit> </persistence> applicationContext xml
Xml代码 <?xml version= encoding= UTF ?> <beans xmlns= xmlns:xsi= instance xmlns:aop= xmlns:tx= xsi:schemaLocation= beans xsd aop xsd tx xsd >
<bean class= springframework orm jpa support PersistenceAnnotationBeanPostProcessor />
<bean id= Myervice class= MyService /> <bean id= dataSource class= mons dbcp BasicDataSource > <property name= driverClassName > <value> mysql jdbc Driver</value> </property> <property name= url > <value>jdbc:mysql://localhost: </value> </property> <property name= username > <value>########</value> </property> <property name= password > <value>########</value> </property> </bean>
<! JPA EntityManagerFactoryBean for EntityManager > <bean id= entityManagerFactory class= springframework orm jpa LocalContainerEntityManagerFactoryBean > <property name= persistenceXmlLocation value= persistence xml /> <property name= persistenceUnitName value= java /> <property name= dataSource ref= dataSource /> </bean>
<! Transaction manager for JPA > <bean id= transactionManager class= springframework orm jpa JpaTransactionManager > <property name= entityManagerFactory > <ref bean= entityManagerFactory /> </property> </bean>
<tx:annotation driven transaction manager= transactionManager />
cha138/Article/program/Java/ky/201311/28409相关参考
详解Spring的配置文件 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 想必用过Spring的
在配置文件中很有一些属性会在团队的开发环境个人的开发环境集成测试环境生产环境甚至生产环境集群的每台服务器中都有所不同的 为了将
Spring中加载XML配置文件的方式 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! sprin
Eclipse编辑spring配置文件时提示功能 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
读取xml文件 /** *利用XmlBeanFactory(Resourceresource) *这里Resource必须是xml格式 *Resource包括AbstractResourc
SpringDataJPA初使用 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 我们都知道Spr
MySql配置主从复制读写分离 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! myini配置文件
改默认编码 /etc/initd/mysqlstart(stop)为启动和停止服务器 /etc/mysql/主要配置文件所在位置f /var/lib/mysql/放置的是数据库表文件夹这里的
Spring自动装配的学习 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 在xml配置文件中au
知识大全 spring struts2 ibatis框架整合开发
这里主要介绍一下spring+struts+ibatis所需要的jar包文件spring所需包 以上包为spring配置基本包ibatis所需包 有解决方法的朋友们希望能回复 与struts整合