热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

springMVC配置文件示例

springMVC配置文件示例Xml代码

spring MVC配置文件示例

Xml代码  收藏代码
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns&#61;"http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi&#61;"http://www.w3.org/2001/XMLSchema-instance" xmlns:context&#61;"http://www.springframework.org/schema/context"  
  4.     xmlns:aop&#61;"http://www.springframework.org/schema/aop" xmlns:tx&#61;"http://www.springframework.org/schema/tx"  
  5.     xmlns:mvc&#61;"http://www.springframework.org/schema/mvc"  
  6.     xsi:schemaLocation&#61;"http://www.springframework.org/schema/beans  
  7.            http://www.springframework.org/schema/beans/spring-beans-3.2.xsd  
  8.             http://www.springframework.org/schema/context  
  9.            http://www.springframework.org/schema/context/spring-context-3.2.xsd  
  10.            http://www.springframework.org/schema/aop  
  11.            http://www.springframework.org/schema/aop/spring-aop-3.2.xsd  
  12.            http://www.springframework.org/schema/tx   
  13.            http://www.springframework.org/schema/tx/spring-tx-3.2.xsd  
  14.            http://www.springframework.org/schema/mvc   
  15.            http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd"  
  16.              
  17.            >  
  18.   
  19.       
  20.     <bean  
  21.         class&#61;"org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />  
  22.   
  23.       
  24.     <bean  
  25.         class&#61;"org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter" />  
  26.       
  27.     <bean  
  28.         class&#61;"org.springframework.web.servlet.view.InternalResourceViewResolver">  
  29.         <property name&#61;"viewClass"  
  30.             value&#61;"org.springframework.web.servlet.view.JstlView" />  
  31.         <property name&#61;"prefix" value&#61;"/WEB-INF/jsp/" />  
  32.         <property name&#61;"suffix" value&#61;".jsp" />  
  33.     bean>  
  34. <mvc:annotation-driven />  
  35.     
  36.   
  37. <context:component-scan base-package&#61;"com.mvc.jn.controller"/>  
  38. beans>  

 目录结构如下&#xff1a;




推荐阅读
author-avatar
kkkkkkkkkkkk1982_799
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有