按照https://www.cnblogs.com/chenlinghong/p/8339555.html 方法搭建,其中导入lib一段没有做,便遇到了问题,后期把导入lib一段也实现了
遇到问题:
08-Jul-2017 21:45:26.064 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal One or more listeners failed to start. Full details will be found in the appropriate container log file
08-Jul-2017 21:45:26.066 严重 [RMI TCP Connection(3)-127.0.0.1] org.apache.catalina.core.StandardContext.startInternal Context [] startup failed due to previous errors
原error没有保存,提示一样,借用https://blog.csdn.net/cflys/article/details/74853402 中的error
遇到新问题:
Caused by: org.xml.sax.SAXParseException; lineNumber: 10; columnNumber: 61; cvc-complex-type.2.4.c: 通配符的匹配很全面, 但无法找到元素 'context:component-scan' 的声明。
主要问题是dispatcher-servlet.xml中schemaLocation字段没有context,即缺少context的schema,添加下图红框中的字段即可即可
还遇到一个问题, schemaLocation 值 必须具有偶数个 URI
现象和解决方法如下链接,一模一样:
https://blog.csdn.net/anlve512/article/details/78460621?locationNum=10&fps=1
访问时访问:http://localhost:8080/springmvcdemo/mvc/hello
其中springmvcdemo是自己的项目名即可
成果如下: