博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC spring-servlet.xml配置
阅读量:6456 次
发布时间:2019-06-23

本文共 1337 字,大约阅读时间需要 4 分钟。

<?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" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
<!-- 扫描控制器包-->
<context:component-scan base-package="com.controller" />
<mvc:annotation-driven></mvc:annotation-driven>
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<!-- <property name="prefix" value="/view/" /> -->
<property name="suffix" value=".jsp" />
</bean>
</beans>

转载于:https://www.cnblogs.com/Wen-yu-jing/p/4268085.html

你可能感兴趣的文章
jsp+servlet+javaBean实现用户留言
查看>>
CSS盒模型
查看>>
解决网站使用sqlite时并发问题的一个经验
查看>>
operamasks—omBorderLayout布局
查看>>
代理模式
查看>>
彻底搞定C指针---指向指针的指针(转)
查看>>
Django多进程日志文件问题
查看>>
easyUI combobox combotree 模糊查询,带上下键选择功能,待完善。。。。
查看>>
RHEL6解决无法使用YUM源问题
查看>>
百度地址解析和逆地址解析
查看>>
【Dig工具】
查看>>
Jobs
查看>>
八皇后
查看>>
与图论的邂逅07:K短路
查看>>
Unix学习笔记(一) 用户安全与权限
查看>>
性能测试基础
查看>>
Eclipse rap 富客户端开发总结(1) :rap简单介绍和开发环境搭建
查看>>
webpack初识!
查看>>
新技能四步走
查看>>
图片轮播原理
查看>>