博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring MVC helloWorld中遇到的问题及解决办法
阅读量:5998 次
发布时间:2019-06-20

本文共 1466 字,大约阅读时间需要 4 分钟。

 

1、java.io.FileNotFoundException: Could not open ServletContext resource

不能加载ServletContext的用法是配置到web.xml

SpringMVCLesson
SpringMVCLesson
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:springservlet-config.xml
1
SpringMVCLesson
/

 

解决办法:

更改xml名字为 {ServletContext}-servlet.xml

SpringMVCLesson
org.springframework.web.servlet.DispatcherServlet
1
SpringMVCLesson
/

 

位置仍为/WEB-INF/下

2、org.springframework.web.servlet.DispatcherServlet noHandlerFound

解决办法:
SpringMVCLesson-servlet.xml增加

这个工程中还有个特殊问题是Source Folder设置错误导致java没有生成class文件

3、其它xml:xsi没有配置正确导致配置的元素没有被识别而报错

 

4、Spring中CoC(Convention over Configration)约定优于配置的理解又加深了

 

转载于:https://www.cnblogs.com/softidea/p/4458876.html

你可能感兴趣的文章
ASP.NET MVC Module
查看>>
JSP动作--JSP有三种凝视方式
查看>>
算法的时间复杂度示例
查看>>
[转]C#综合揭秘——细说多线程(下)
查看>>
[转]C#综合揭秘——细说多线程(上)
查看>>
DownloadProvider源码解析——与Volley对比
查看>>
Latest SQLite binary for January 2015
查看>>
JSON学习
查看>>
Codeforces Round #258 (Div. 2) 小结
查看>>
基于jquery下拉列表树插件代码
查看>>
探索WebKit内核(一)------ 菜鸟起步
查看>>
mysql 加入柱更改列删除列
查看>>
Oracle 工艺结构
查看>>
用mongoose实现mongodb增删改查
查看>>
动态类型
查看>>
ImportError: No module named argparse
查看>>
unity, animator stateMachine立即触发状态转换
查看>>
WebService它CXF这三个音符(Service接口实现类)
查看>>
.NET平台开源项目速览(3)小巧轻量级NoSQL文件数据库LiteDB
查看>>
从setTimeout谈JavaScript运行机制
查看>>