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


    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>


    
    




  • 相关阅读:
    Mongo库表占用空间统计
    修改elasticsearch默认索引返回数
    针对docker中的mongo容器增加鉴权
    自动化测试框架STAF介绍
    单点登陆思想
    Django请求流程
    python冒泡排序,可对list中的字典进行排序
    python合并list中各个字典中相同条件的累计数
    哎,linux nginx命令就是记不住啊
    python利用urllib2读取webservice接口数据
  • 原文地址:https://www.cnblogs.com/shaofeer/p/11154398.html
Copyright © 2020-2023  润新知