java - 如何将 applicationContext.xml 中的对象转换为 java 注释

标签 java spring spring-mvc spring-data-jpa entitymanager

我正在开发一个 spring mvc 项目,我想转换我在 applicationContext.xml 中的 jpa 配置,我在开发 spring mvc 3 时编写的,现在我想转到 spring Mvc 4 并编写我所有的 Jpa 配置都只使用 Java 注释有人可以帮助我

这是我的 applicationContext 文件:

<?xml version="1.0" encoding="UTF-8"?>
<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"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">


 <bean id="datasource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
  <property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
  <property name="url" value="jdbc:mysql://localhost:3306/db_adpub"></property>
  <property name="username" value="root"></property>
  <property name="password" value=""></property>
  </bean>

<bean id="persistenceUnitManager" class="org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager">
<property name="persistenceXmlLocations">
 <list>
    <value>classpath*:META-INF/persistence.xml</value>
  </list>
</property>
<property name="defaultDataSource" ref="datasource"></property>
</bean>

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
   <property name="persistenceUnitManager" ref="persistenceUnitManager"></property>
   <property name="persistenceUnitName" value="adpub"></property>
</bean>

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
  <property name="entityManagerFactory" ref="entityManagerFactory"></property>
</bean>

<tx:annotation-driven transaction-manager="transactionManager" />
<context:annotation-config></context:annotation-config>
<mvc:annotation-driven />
</beans>

谢谢

最佳答案

来自您的 XML 配置的类属性必须作为具体 beans 在您的应用程序上下文中。 Java 配置语法如下(在您的 @Configuration 类中):

@Bean
public JpaTransactionManager transactionManager() {
    JpaTransactionManager transactionManager = new JpaTransactionManager();
    transactionManager.setEntityManagerFactory(entityManagerFactory());
    return transactionManager;
}

@Bean LocalContainerEntityManagerFactoryBean entityManagerFactory() {
....
}

说明:您在 XML 配置中创建的 bean 是使用 setter 注入(inject)配置的(<property> 元素用于 setter 注入(inject)。因此您必须在 Java 配置中创建一个 bean,并使用等效的 setter 方法并在之后返回它。Spring 扫描你的 @Configuration 类,发现你的上下文中应该有 beans,创建它们并将它们放在你的应用程序上下文中。

关于java - 如何将 applicationContext.xml 中的对象转换为 java 注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40587098/

相关文章:

java - 在Java中计算多个二维形状的交集

java - 解决 Thymeleaf 缺乏可选支持的问题

spring-mvc - 在 MEAN 堆栈和 Spring MVC 之间做出决定以构建复杂的网站

java - 为什么这在 Maven 下编译正常,但在 Eclipse 中给我错误?

java - 如何在 Eclipse 正则表达式搜索中首先匹配检查前驱?

java - 如何识别其他 JUnit 测试何时窃取我的 Spring Root Controller ?

java - JMS 动态创建主题

java - Spring Controller 不解析 JSON

java - 出现错误 : The request sent by the client was syntactically incorrect

java - 为什么我的循环没有在满足特定条件时结束?