java springmvc 注册中央调度器代码解析
发布时间:2020-08-22 20:58:23
来源:脚本之家
阅读:107
作者:荆棘人
这篇文章主要介绍了java springmvc 注册中央调度器代码解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
在WEB-INF下的web.xml中配置
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
springmvc
org.springframework.web.servlet.DispatcherServlet
contextConfigLocation
classpath:springmvc.xml
1
springmvc
*.do
springmvc的核心对象是:DispatcherServlet
springmvc最基本的依赖是:
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
com.bjpowernode
ch01-primary
1.0-SNAPSHOT
war
ch01-primary Maven Webapp
http://www.example.com
UTF-8
1.8
1.8
javax.servlet
javax.servlet-api
3.1.0
org.springframework
spring-webmvc
4.3.16.RELEASE
maven-compiler-plugin
3.1
1.8
1.8
在resources文件夹下配置springmvc.xml文件
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。