spring 常用的一些命名空间配置方式及作用

     最近常有人问起,一些spring的多种命名空间的配置及其作用,今天在这里就介绍几个给大家。


       xmlns="http://www.springframework.org/schema/beans"
       xmlns:context="
http://www.springframework.org/schema/context"
       xmlns:aop="
http://www.springframework.org/schema/aop"
       xmlns:util="
http://www.springframework.org/schema/util"
       xmlns:task="
http://www.springframework.org/schema/task"
       xsi:schemaLocation="
        http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.2.xsd
  http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.2.xsd
  http://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-3.2.xsd
  http://www.springframework.org/schema/utilhttp://www.springframework.org/schema/util/spring-util.xsd
  http://www.springframework.org/schema/taskhttp://www.springframework.org/schema/task/spring-task.xsd">
 
   
   
   
   
   
   
   

很简单,但是在spring项目中基本很实用,还有比如mvc的引入等

xmlns:mvc=”http://www.springframework.org/schema/mvc”
xsi:schemaLocation=”http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd”




你可能感兴趣的:(java高级开发)