<?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>

最新文章

  1. Java Thread 多线程 介绍
  2. SQL SERVER 2005 DBCC PAGE命令说明
  3. mongodb 基本指令学习 (2)
  4. POJ水题 1298
  5. POJ 2109
  6. BZOJ 2196: [Usaco2011 Mar]Brownie Slicing( 二分答案 )
  7. NOIP2010-普及组复赛模拟试题-第一题-手机
  8. Class类与Java反射
  9. MySQL的bigint类型
  10. BZOJ2702 : 金融风暴
  11. 跑python用ThinkPad好还是MacBook好?
  12. 经典算法冒泡排序java版
  13. 如何让Domain里的其他系统通过DC来进行外网的DNS解析
  14. Github ——转
  15. js数据绑定(模板引擎原理)
  16. 【转】CentOS下MySQL忘记root密码解决方法
  17. CS小分队第二阶段冲刺站立会议(5月28日)
  18. (转)Android性能优化——工具篇
  19. Reveal CocoaPods的使用
  20. dedecms添加新模型

热门文章

  1. 用PHP上传文件时$_FILES中error返回值详解
  2. EffectiveJava(2)应对多个构造函数应当使用构建器
  3. EffectiveJava(1) 构造器和静态工厂方法
  4. C中的C文件与h文件辨析
  5. [译] ContentEditable 那些好的、坏的和坑
  6. flex-direction用法解释
  7. ios程序,顶部和底部产生空白——程序不能全屏运行
  8. surface4 笔盖失灵的解决方案
  9. java游戏开发之基础
  10. 定时执行线程池ScheduledExecutorService的使用