Spring笔记③--spring的命名空间

p:命名空间:

xmlns:p="http://www.springframework.org/schema/p"

作用:简化在xml配置bean的属性 在<bean>中使用p:属性名来配置

AOP:命名空间:

xmlns:aop="http://www.springframework.org/schema/aop"

xsi:schemaLocation:

http://www.springframework.org/schema/aop  http://www.springframework.org/schema/aop/spring-aop-3.0.xsd

作用:简化AspectJ的AOP在xml中配置

util:命名空间:

xmlns:util="http://www.springframework.org/schema/util"

xsi:schemaLocation:

http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd

context:命名空间:

xmlns:context="http://www.springframework.org/schema/context"

xsi:schemaLocation:

http://www.springframework.org/schema/context  http://www.springframework.org/schema/context/spring-context.xsd

作用:1.配置自动扫描bean注解类

context:命名空间:

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

 

 

 

原文地址:https://www.cnblogs.com/chengzhipcx/p/4763089.html