SpringMvc最全的约束——你的感冒清个人总结

<?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:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd"> <!-- 个人实现
必需
-->
<bean class="com.shaofei.web.controller.HelloController" name="/hello.do"></bean> <!-- 映射器(框架)
可选
-->
<bean
class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> <!-- 适配器(框架)
可选 -->
<bean
class="org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter"></bean> <!-- 视图解析器(框架)
可选 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver"></bean> </beans>

最新文章

  1. Java 中的集合接口——List、Set、Map
  2. ajax-登陆+验证码
  3. 多系统PE win UBUNTU OSX
  4. Third-person Camera Navigation
  5. 利用BitLocker和vhdx创建一个有加密的Win10系统
  6. Mybatis的批量CRUD
  7. 【spring 7】spring和Hibernate的整合:声明式事务
  8. openoffice转换过程中遇到繁体字文档转换失败的问题
  9. tomcat gc问题总结
  10. login-登录
  11. 如何理解jQuery中的ajaxSubmit方法
  12. TestNG+ExtentReports生成超漂亮的测试报告
  13. uvalive 7500 Boxes and Balls
  14. wpf中内置资源文件
  15. Java中单例模式的几种实现
  16. filter 过滤器的基本使用
  17. SSH实现ajax
  18. Python pip源更改
  19. vue路由的钩子函数和跳转
  20. 856. Score of Parentheses

热门文章

  1. 分享基于.NET动态编译&amp;Newtonsoft.Json封装实现JSON转换器(JsonConverter)原理及JSON操作技巧
  2. 演练:创建和使用静态库 (C++)
  3. cmake常用工程示例大集合
  4. Excel求值表达式——太好用了
  5. VS2013设置release版本可调试
  6. elasticsearch local debug环境搭建
  7. Controls 属性与继承 TShape 类的小练习(使用TShape可以解决很多图形问题)
  8. UITableViewStyleGrouped 设置表头出现section不为0的问题
  9. 【操作系统】关于Linux桌面操作系统
  10. abp(net core)+easyui+efcore仓储系统——领域层创建实体(三)