spring-mvc配置文件

    xiaoxiao2021-03-25  92

    <?xmlversion="1.0"encoding="UTF-8"?> <beansxmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc"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-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> <!-- 配置controller注解扫描 --> <context:component-scanbase-package="cn.bll.controller"></context:component-scan> <!-- 注解驱动 作用:替我们自动配置最新版的注射器--> <mvc:annotation-driven></mvc:annotation-driven> <!--视图解析器 --> <beanclass="org.springframework.web.servlet.view.InternalResourceViewResolver"> <!-- 前缀 --> <propertyname="prefix"value="/WEB-INF/jsp/"></property> <!-- 后缀--> <propertyname="suffix"value=".jsp"></property> </bean> </beans>

    转载请注明原文地址: https://ju.6miu.com/read-24137.html

    最新回复(0)