springmvc配置文件-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:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/context
https://www.springframework.org/schema/context/spring-context.xsd">
<!--配置组件扫描器,告诉Spring去哪些包扫描注解。不配置则会报404错误。-->
<context:component-scan base-package="com.iit"/>
<!--在当前WEB项目中,使用注解来创建控制器,而不是使用Servlet。-->
<mvc:annotation-driven/>
<!--新建静态资源文件目录(webapp/static),前后端分离项目中不用此配置。-->
<mvc:resources mapping="/static/**" location="/static/"/>
<!-- 将jsp配置到web-info下面的配置,前后端分离项目中不用此配置。-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"
id="internalResourceViewResolver">
<!--前缀-->
<property name="prefix" value="/WEB-INF/jsp/"/>
<!--后缀,可以为空。-->
<property name="suffix" value=".jsp"/>
</bean>
</beans>
本文来自博客园,作者:xiaoyongdata(微信号:xiaoyongdata),转载请注明原文链接:https://www.cnblogs.com/xiaoyongdata/p/16618349.html