我是靠谱客的博主 酷炫舞蹈,最近开发中收集的这篇文章主要介绍SpringMVC项目的springmvc-servlet.xml文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

springmvc-servlet.xml文件配置

只要新建springmvc项目,直接在resource目录下新建springmvc-servlet.xml文件,粘贴如下代码

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd ">
<!--自动扫描包,让指定包下的注解生效,由IOC容器同一管理-->
<context:component-scan base-package="com.tan.controller"/>
<!--让SpringMVC不处理静态资源-->
<mvc:default-servlet-handler/>
<mvc:annotation-driven/>
<!--视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="internalResourceViewResolver">
<!--前缀-->
<property name="prefix" value="/WEB-INF/jsp/"/>
<!--后缀-->
<property name="suffix" value=".jsp"/>
</bean>
</beans>

如果是ssm项目,对应的springmvc的配置文件也可以直接用这个。

最后

以上就是酷炫舞蹈为你收集整理的SpringMVC项目的springmvc-servlet.xml文件的全部内容,希望文章能够帮你解决SpringMVC项目的springmvc-servlet.xml文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部