spring beans 这么多xmlns如何写

spring beans 这么多xmlns怎么写每次看视屏都是人家写好的完全不知道该怎么写有没有这方面的帮助文档[解决

spring beans 这么多xmlns怎么写
每次看视屏都是人家写好的  完全不知道该怎么写  有没有这方面的帮助文档
[解决办法]
spring beans 这么多xmlns怎么写
re:
你说的是spring的配置文件中的xml 名称空间?


<?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:aop="http://www.springframework.org/schema/aop"
     xmlns:tx="http://www.springframework.org/schema/tx"
     xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">           
    <!-- import common options properties -->       
    <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location">
<value>classpath:commonoptions.properties</value>
</property>
</bean>
        ...