javaweb-springmvc项目中springmvc.xml文件配置错误?

问题描述

springmvc项目中springmvc.xml文件配置错误?


org.springframework.beans.factory. BeanCreationException: Error creating bean with name 'houseChangeInfoController': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory. BeanCreationException: Could not autowire field: private cn.teen.service. HouseChangeInfoService cn.teen.controller.HouseChangeInfoController. service; nested exception is org.springframework.beans.factory. CannotLoadBeanClassException: Error loading class [org.springframework.validation.beanvalidation. LocalValidatorFactoryBean] for bean with name 'validator' defined in class path resource [spring-mvc. xml]: problem with class file or dependent class; nested exception is java.lang. NoClassDefFoundError: javax/validation/ValidatorFactory
org.springframework.beans.factory。BeanCreationException:创建bean与错误的名字“houseChangeInfoController”:注入autowired的依赖关系失败;嵌套org.springframework.beans.factory是个例外。私人cn.teen.service BeanCreationException:不能自动装配领域。HouseChangeInfoService cn.teen.controller.HouseChangeInfoController。服务;嵌套org.springframework.beans.factory是个例外。[org.springframework.validation.beanvalidation CannotLoadBeanClassException:错误加载类。LocalValidatorFactoryBean]为bean名称验证器的类路径中定义的资源(spring mvc。类文件或xml):问题依赖类;嵌套异常. lang。NoClassDefFoundError:javax /验证/ ValidatorFactory

Caused by: org.springframework.beans.factory. BeanCreationException: Could not autowire field: private cn.teen.service. HouseChangeInfoService cn.teen.controller.HouseChangeInfoController. service; nested exception is org.springframework.beans.factory. CannotLoadBeanClassException: Error loading class [org.springframework.validation.beanvalidation. LocalValidatorFactoryBean] for bean with name 'validator' defined in class path resource [spring-mvc. xml]: problem with class file or dependent class; nested exception is java.lang. NoClassDefFoundError: javax/validation/ValidatorFactory
引起的:org.springframework.beans.factory。私人cn.teen.service BeanCreationException:不能自动装配领域。HouseChangeInfoService cn.teen.controller.HouseChangeInfoController。服务;嵌套org.springframework.beans.factory是个例外。[org.springframework.validation.beanvalidation CannotLoadBeanClassException:错误加载类。LocalValidatorFactoryBean]为bean名称验证器的类路径中定义的资源(spring mvc。类文件或xml):问题依赖类;嵌套异常. lang。NoClassDefFoundError:javax /验证/ ValidatorFacto

解决方案

Error loading class [org.springframework.validation.beanvalidation.LocalValidatorFactoryBean] for bean with name 'validator' defined in class path resource [spring-mvc.xml]: problem with class file or dependent class; nested exception is java.lang.NoClassDefFoundError: javax/validation/ValidatorFactory

解决方案二:

这个是springmvc.xml文件

<?xml version="1.0" encoding="UTF-8"?>
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.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.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

<!-- 扫描controller(controller层注入) -->
<context:component-scan base-package="cn.teen.controller"/>

<mvc:annotation-driven/>

<!-- 对模型视图添加前后缀 -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
      p:prefix="/WEB-INF/views/" p:suffix=".jsp"/>

<!-- 以下 validator ConversionService 在使用 mvc:annotation-driven 会 自动注册 -->

<!-- 如果不加默认到 使用classpath下的 ValidationMessages.properties -->

<!-- 国际化的消息资源文件(本系统中主要用于显示/错误消息定制) -->
<!-- <bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
    <property name="basenames">
        <list>
            在web环境中一定要定位到classpath 否则默认到当前web应用下找
            <value>classpath:messages</value>
            <value>classpath:org/hibernate/validator/ValidationMessages</value>
        </list>
    </property>
    <property name="useCodeAsDefaultMessage" value="false"/>
    <property name="defaultEncoding" value="UTF-8"/>
    <property name="cacheSeconds" value="60"/>
</bean>
 -->

<!-- 支持返回json(避免IE在ajax请求时,返回json出现下载 ) -->
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
    <property name="messageConverters">
        <list>
            <ref bean="mappingJacksonHttpMessageConverter"/>
        </list>
    </property>
</bean>
<bean id="mappingJacksonHttpMessageConverter"
      class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter">
    <property name="supportedMediaTypes">
        <list>
            <value>text/plain;charset=UTF-8</value>
            <value>application/json;charset=UTF-8</value>
        </list>
    </property>
</bean>
<!-- 支持返回json -->

<bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping" />

<!-- <bean class="org.springframework.web.servlet.view.XmlViewResolver">
   <property name="location">
       <value>classpath:spring-excel-views.xml</value>
   </property>
   <property name="order" value="0" />
</bean>
 -->

<!-- 配置springMVC处理上传文件的信息 -->
<!-- <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
    <property name="defaultEncoding" value="utf-8"/>
    <property name="maxUploadSize" value="10485760000"/>
    <property name="maxInMemorySize" value="40960"/>
</bean>

启用shrio授权注解拦截方式
<aop:config proxy-target-class="true"></aop:config>
<bean class="org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor">
    <property name="securityManager" ref="securityManager"/>
</bean> -->

<!-- 控制器异常处理 -->

<!--

-->

解决方案三:

SpringMvc的xml文件的配置

解决方案四:

私人cn.teen.service BeanCreationException:不能自动装配领域。

时间: 2024-12-31 19:48:01

javaweb-springmvc项目中springmvc.xml文件配置错误?的相关文章

web xml-web项目中xml 文件配置错误,求大神们指教

问题描述 web项目中xml 文件配置错误,求大神们指教 源码是别人的,我导入户就现身错误 HTMLManager/html/* 下划线的地方是 /html/* 401/401.jsp 下划线的地方是 .jsp 怎么改呢. 解决方案 你能把问题具体化吗?

web xml-Web 项目中web.xml的配置有什么原则么有,怎么老是出错。求指点

问题描述 Web 项目中web.xml的配置有什么原则么有,怎么老是出错.求指点 严重: Parse error in application web.xml file at jndi:/localhost/TestStruts/WEB-INF/web.xml com.sun.org.apache.xerces.internal.impl.io.MalformedByteSequenceException: Invalid byte 2 of 2-byte UTF-8 sequence. at

在MFC程序中使用XML文件配置工具栏

现在我发现使用Visual Studio的资源编辑器进行编辑资源有着诸多的不便:首先是任何资源的变动一般变动代码,不利于系统维护,其次Visual Studio的资源编辑器的本身的功能有限,也不利于界面美化,三是不利于人员分工,开发人员既要忙实现功能,又要忙准备好的界面素材.对界面实现文件配置化正是解决上面问题的好方法.这次我实现了使用XML文件配置工具栏.这里所谓配置就是工具栏的界面信息如工具栏标题.按钮图片.是否为分隔符都在XML文件保存,程序通过解析XML文件来获取工具栏信息来创建工具栏.

JavaWeb项目中springmvc和tomcat对静态文件的处理_java

1.激活Tomcat的defaultServlet来处理静态文件,web.xml配置 <servlet-mapping> <servlet-name>default</servlet-name> <url-pattern>*.js</url-pattern> </servlet-mapping> a.说到了这里另外说说url-pattern的配置 <!--url-pattern的三种写法--> <!--精确匹配:以&

xml-在用SSH框架开发项目中的XML配置

问题描述 在用SSH框架开发项目中的XML配置 对于我现在已经在项目开发中用到了SSH的框架,但是在项目开发过程中遇到的XML配置的问题,在XML配置文件中里面有太多的配置标签,有时会用到自己从来就没有见过的标签,又不知道它们该如何用,为什么要用?用了有啥好处?为了解决这个问题,我现在想请那位大神给我说一下,请把在SSH框架中以及SpringMVC的配置文件的总结的所有的属性以及属性值给我说一下.我好积累下来.以备以后工作中使用.谢谢! 解决方案 你这是想走捷径啊,自己慢慢积累吧.这东西 谁会给

安卓开发中粘贴进项目里的xml文件的R.id里的属性报错怎么解决啊?新手,求助。。

问题描述 安卓开发中粘贴进项目里的xml文件的R.id里的属性报错怎么解决啊?新手,求助.. mContent = (EditText) findViewById(R.id.et_note_content);像这样的代码,R.java中能找到et_note_ content但就是报错,et_note_content cannot be resolved or is not a field.怎么解决啊,新手求助 解决方案 注意一下引入的R是不是你工程的R,看一下import

java项目中,本地文件夹内有DOM4J,可是在myEclipse中不显示

问题描述 java项目中,本地文件夹内有DOM4J,可是在myEclipse中不显示 java项目中,本地文件夹内有DOM4J,可是在myEclipse中不显示 解决方案 你把jar拷过来放在lib下,再add build path 解决方案二: 你是不是设置过滤器了,jar包都不显示啊 解决方案三: java project的jar包并非在lib中,而是在这个jre system library里面,引用外部包的话是右键点击他.....................(具体步骤省略,,) 解决

也有可能是action-怎么把一个项目中所有do文件去掉,项目正常运行

问题描述 怎么把一个项目中所有do文件去掉,项目正常运行 do文件有可能是jsp,也有可能是action,想简单易明去掉do 解决方案 Life is a Do-it-yourself Project 生活是一个自己动手的项目 解决方案二: do文件就是个扩展名,你可以通过配置改strust的扩展名,不能删除

maven项目中web.xml报错

问题描述 maven项目中web.xml报错 已加入这段代码就报错,求指导... 解决方案 好像是你web.xml配置有问题,试试下面的 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee