编码-SpringDataJPA 配置出错

问题描述

SpringDataJPA 配置出错

配置/jpa:repositories出问题

我的配置文件如下
<?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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:tool="http://www.springframework.org/schema/tool"
xmlns:jpa="http://www.springframework.org/schema/data/jpa"
xmlns:repository="http://www.springframework.org/schema/data/repository"
xsi:schemaLocation=
"http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-4.0.xsd
http://www.springframework.org/schema/tool
http://www.springframework.org/schema/tool/spring-tool-4.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/data/jpa
http://www.springframework.org/schema/data/jpa/spring-jpa.xsd
http://www.springframework.org/schema/data/repository
http://www.springframework.org/schema/data/repository/spring-repository-1.5.xsd

">

<util:properties id="settings" location="classpath:config.properties"></util:properties>

<context:component-scan base-package="com.stru.*">
    <context:include-filter type="assignable" expression="com.stru.entity.Annimal"/>
    <context:include-filter type="assignable" expression="com.stru.entity.Information"/>
</context:component-scan>

<!-- 自动装配注解Bean后置处理器 -->
<bean class="org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor"/>  

<!-- JPA注解Bean后置处理器 -->
<bean  class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" /> 

<!-- 开启Spring提供的基于注解的声明式事务管理 -->
<tx:annotation-driven transaction-manager="transactionManager"/>

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="#{settings['jdbc.driverClassName']}"></property>
        <property name="url" value="#{settings['jdbc.url']}" />
        <property name="username" value="#{settings['jdbc.username']}" />
        <property name="password" value="#{settings['jdbc.password']}" />
</bean>

<!-- JPA START -->

<bean id="jpaVendorAdapter" class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
    <property name="database" value="#{settings['jpa.database']}"></property>
    <property name="showSql" value="true"></property>
    <property name="generateDdl" value="false"></property>
    <property name="databasePlatform" value="org.hibernate.dialect.MySQLDialect"></property>
</bean>

<bean id="entityManager" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="dataSource" ref="dataSource"></property>
    <property name="jpaVendorAdapter" ref="jpaVendorAdapter"></property>
</bean>

 <!-- 声明一个Spring提供的JPA事务管理器,传入的参数是Spring中的实体管理器工厂 -->
<bean id="transactionManager"
    class="org.springframework.orm.jpa.JpaTransactionManager">
    <property name="entityManagerFactory" ref="entityManager" />
</bean> 

<jpa:repositories base-package=""></jpa:repositories>

解决方案

配置hbase出错

解决方案二:

什么错误?。。。。。。。。。。。。。。。

时间: 2024-10-30 17:59:31

编码-SpringDataJPA 配置出错的相关文章

springmvc+mybatis整合 MapperScannerConfigurer配置出错

问题描述 springmvc+mybatis整合 MapperScannerConfigurer配置出错 1C 配置如下: 问题:如果配置了 <property name=""sqlSessionFactoryBeanName"" value=""wechatSqlSessionFactory"" />,启动的时候报错如下:Caused by: org.springframework.beans.factory.B

Windows8网络配置出错导致不能上网如何重新启用以太网

  在使用计算机的时候,常因网络配置出错导致无法上网,影响工作.学习和娱乐,这种情况其实只要重新启用以太网就可以了.对于电脑新手来说,很有必要掌握网络配置这一项技能.下面就给大家介绍一下,Windows8系统下如何快速处理这方面的问题. 处理方法: 1. 右键点击桌面的右下角网络小图标. 2. 单击打开网络和共享中心.在右上角有个更改适配器设置,在这里就可以看到你的网络连接状况. 3. 单击更改适配器设置.这里显示了包括你的wifi的网络连接. 4. 在这里我们可以看到以太网网络连接,这就是你插

Windows8怎么解决网络配置出错无法上网的问题

  在使用计算机的时候,因网络配置出错导致无法上网,影响工作.学习和娱乐.对于电脑新手来说,很有必要掌握网络配置这一项技能.下面,小编就来告诉大家解决方案. 操作步骤 鼠标点击通知区域里面的网络图标,如下图,打开网络和共享中心. 点击左上角的更改适配器设置,进入下一个界面. 在网络连接界面,可以查看机子的所有连接,包括WIFI无线网络. 找到出错的网络,右击,点击禁用. 当图标显示灰色的时候再右键点击,启用然后回到桌面,网络会重新配,这样就轻松的解决了上不去网的困难.

框架-laravel环境配置出错问题

问题描述 laravel环境配置出错问题 还需要怎么配置吗 解决方案 参考:http://www.cnblogs.com/huangbx/p/Laravel_1.html

name-ssh框架配置问题struts配置出错

问题描述 ssh框架配置问题struts配置出错 2014-12-31 9:52:38 org.apache.catalina.startup.ContextConfig applicationWebConfig 严重: Parse error in application web.xml file at jndi:/localhost/DMS-CMS/WEB-INF/web.xml java.lang.IllegalArgumentException: Filter mapping speci

opencv配置出错-opencv3.0+VS2013配置出错

问题描述 opencv3.0+VS2013配置出错 1C 亲们,配置opencv总是出错啊,所有的链接库我都配置好几遍了,还是有问题啊 1>------ 已启动生成: 项目: opencv_test 配置: Debug Win32 ------1>LINK : fatal error LNK1104: 无法打开文件"opencv_ts300d.obj"========== 生成: 成功 0 个,失败 1 个,最新 0 个,跳过 0 个 ========== 解决方案 ple

mvc注解-spring MVC注解 + hibernate +jpa配置 出错 具体如下

问题描述 spring MVC注解 + hibernate +jpa配置 出错 具体如下 这个是错误 No unique bean of type [javax.persistence.EntityManagerFactory] is defined: expected single bean but found 0 下面为XML配置文件 web.xml 导入hibernate <filter> <filter-name>openEntityManagerInViewFilter&

visual studio-关于VS TFS2010 配置 出错无法继续!

问题描述 关于VS TFS2010 配置 出错无法继续! 我用的是windows 7 64位旗舰版 由于工作需要,项目环境需要用到TFS2010 数据库是SQLSERVER2008R2版,visualstudio是2013版 在安装TFS时,首先数据库就配置失败无法继续配置,他提示无法远程访问,可能是sqlserver的端口的问题.求解-- 解决方案 用tfs2015吧,还支持git呢 解决方案二: 公司硬件太LOW,还什么都要!!!你有没有TFS2010配置的图解,求给一份!!!

pc lint-VS2010安装PC-Lint环境配置出错

问题描述 VS2010安装PC-Lint环境配置出错 在选择编译器时,没有VC2010选项,我按照VC2008环境来配置的.编译一个HelloWorld程序,出现以下错误: F:VS2010VCincludeutility(143): error 49: (Error -- Expected a type) : first(_Val1), second(_STD move(_Val2)) F:VS2010VCincludeutility(149): error 49: (Error -- Exp