gpt4 book ai didi

java - 集成 JPA 和 SpringIOc

转载 作者:行者123 更新时间:2023-11-30 06:27:23 27 4
gpt4 key购买 nike

您好,我写了一个小应用程序并尝试连接 jpa。在我的 spring 配置文件中,我这样写:

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="${jdbc.driver.manager}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.login}" />
<property name="password" value="${jdbc.password}" />
</bean>

<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
<property name="dataSource">
<ref bean="dataSource" />
</property>
<property name="packagesToScan">
<list>
<value>com.epam.newsmanagement.entity</value>
</list>
</property>
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
<property name="database" value="ORACLE" />
</bean>
</property>
</bean>

<bean id="jpaDao" class="com.epam.newsmanagement.dao.JPANewsDao" />

当我启动我的应用程序时,浏览器给我 404 错误,控制台给出这样的错误

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in ServletContext resource [/WEB-INF/jpa-configuration.xml]: Error setting property values; nested exception is org.springframework.beans.NotWritablePropertyException: Invalid property 'dataSource' of bean class [org.springframework.orm.jpa.LocalEntityManagerFactoryBean]: Bean property 'dataSource' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?

请帮忙)

最佳答案

org.springframework.orm.jpa.LocalEntityManagerFactoryBean 没有定义 dataSource/getDataSource() 字段/方法。这就是为什么你得到那个异常(exception)。

改为使用 LocalContainerEntityManagerFactoryBean

This可能对你有帮助

关于java - 集成 JPA 和 SpringIOc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13357533/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com