配置文件:SpringMVC相关配置文件的头文件

目录

 

web.xml的配置文件

SpringMVC的配置文件

 

web.xml的配置文件

<!DOCTYPE web-app PUBLIC
        "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd" >
<web-app>
    <display-name>Archetype Created Web Application</display-name>

    
</web-app>

SpringMVC的配置文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       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">

    
</beans>

 


版权声明:本文为weixin_47609997原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。