spring-mvc报红错误

can‘t resolve spring  以及运行测试案例报错 ‘无法找到路径’

解决办法是在pom文件里面重新配置 对应  resource

<resources>

<resource>

<directory>src/main/java</directory>

<includes> <include>**/*.properties</include>

<include>**/*.xml</include> </includes>

<filtering>false</filtering>

</resource>

由于修改了默认的resource目录,导致src/main/resources的所有文件都不能被扫描,因此还要配多一个

<resource>

<directory>src/main/resources</directory>

<includes>

<include>**/*.properties</include> <include>**/*.xml</include>

</includes>

<filtering>false</filtering>

</resource>

</resources>

时间: 2024-10-16 21:56:19

spring-mvc报红错误的相关文章

react 报红错误汇总

react  报红错误汇总 一.Uncaught TypeError: Cannot read property 'value' of undefined 未知类型错:无法读取未定义的属性“value” 我的源码: console.log(item.controlAttributeObj.placeholder.value) 错误原因: controlAttributeObj的初始值为{},所以第一次获取 placeholder 为 undefined , undefined 是没有属性的,所以

转转转![Spring MVC] - 500/404错误处理-SimpleMappingExceptionResolver

参考博客: http://www.cnblogs.com/dongying/p/6129937.html http://www.cnblogs.com/rollenholt/archive/2012/12/25/2832731.html http://cgs1999.iteye.com/blog/1547197 我在项目中的使用: 1)404找不到: web.xml中配置: <!-- 404错误 --> <error-page> <error-code>404</

spring mvc 数据绑定 400错误

情景:使用在方法中绑定数据的时候,打开链接,出现400错误. @RequestMapping(value = "editItemSubmit") public String editItemSubmit(int id, Items item) { itemService.updateItemFromId(id, item); return "redirect:queryItemlList"; } public class Items { private int id

[Spring MVC] - 500/404错误处理

Spring MVC中404 找不到页面错误可以直接使用web.xml中配置: 在<web-app/>节点内加入: <error-page> <error-code>404</error-code> <location>/WEB-INF/views/errors/404.jsp</location> </error-page> 500的运行时错误,可以使用Spring MVC的SimpleMappingExceptionR

spring mvc 报错汇总--点滴。。

1....identifier of an instance of org.szgzw.ent.profile.baseinfo.enterprise.EnterpriseEntity was altered from 2c90e4da49514c750149515eb56f0003 to undefined; nested exception is org.hibernate.HibernateException: identifier of an instance of org.szgzw.

Spring MVC + mybatis项目错误解决方案汇总

1.启动tomcat时,报java.lang.ClassNotFoundException: org.springframework.web.util.IntrospectorCleanupListener错误,如下图: 解决方法:项目 ->右键 -> 属性 -> Deployment Assembly -> add -> Java Build Path Entries -> next -> Maven Dependencies -> Finish ->

FreeMarker与Spring MVC 4结合错误:Caused by: java.lang.NoClassDefFoundError: org/springframework/ui/freemarker/FreeMarkerConfiguration

添加spring-context-support的依赖到POM: <!-- spring-context-support --> <!-- https://mvnrepository.com/artifact/org.springframework/spring-context-support --> <dependency> <groupId>org.springframework</groupId> <artifactId>spr

Spring MVC报异常:org.springframework.web.util.NestedServletException: Request processing failed

在使用SpringMVC绑定基本类型(如String,Integer等)参数时,应通过@RequestParam注解指定具体的参数名称,否则,当源代码在非debug模式下编译后,运行时会引发HandlerMethodInvocationException异常,这是因为只有在debug模式下编译,其参数名称才存储在编译好的代码中. 譬如下面的代码会引发异常: @RequestMapping(value = "/security/login", method = RequestMethod

SpringBoot、Spring MVC报错:Unable to create requested service [org.hibernate.engine.jdbc.env.spi.JdbcEnvironment]

出现问题的原因: jdbc配置不正确 解决方案: 1.检查是否已添加数据库驱动jar包 2.检查数据库服务是否启动 3.检查数据库配置文件 主要为:dialect,driver_class,url,username,password这五项. 务必注意检查大小写以及英文标点. 4.检查是否缺少字符集.时区等配置 示例:jdbc:mysql://localhost:3306/database?useUnicode=true&characterEncoding=UTF-8&serverTimez