Spring xml文档头得配置
spring文档头一般是可以复制过来得,刚学习得时候一直看网上有没有配置,然后也没有找到,希望以下过程得学习可以给大家带来帮助!!
1.Spring配置方法:首先写一个source Folder 专门来写xml文档,再建一个spring包
2.右键spring包,-->new -->othter 建一个xml文档
3.-->next 名字一般为spring.xml -->next 选择第二个Creste XML file from an XML schema file
4.-->Finish完成 ,完成后只有一个句话<?xml version="1.0" encoding="UTF-8"?> ,添加一个<beans></beans>标签,然后切换到Design模式下(以键值对得方式显示),右击bean,点击Edit Namespaces
5.点击add键,选择xsi,xsd选项,点击OK!
6.还没有完成,如果你需要别得配置,则继续,-->右键beans,-->点击add,-->选择Spercify New Namespace ,-->选择Browse,
7.-->选择 第二项Select XML Catalog entry ,选择自己添加的Catalog,如果没有添加的话,要先去添加,没有文件的话去maven 官网下在最新版本maven,下载后解压,然后找到schema文件,里面右好多个文件,你可以选择在eclipse中选择添加beans,context,aop,3个即可,这3个是核心
8.然后则可以点击ok!-->Namespace Name:则可以叫Location Hint的名字 ,-->点击ok
8.依此添加就可以!!-->切换到source,你就可以看到一下:
其实可以直接复制这个头也可以的:一下为标准代码: (里面有 p: c: util 的配置)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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">
</beans>