手把手教你编写XML配置


其实我今天要说的内容很简单,但是假如你不知道的情况下可能就会很麻烦,或者无从下手,可能大家还会有其他更好的办法,在此仅作为参考使用。好了,下面开始正题

比如当我们要写一个Spring的配置的时候,或者Mybtis-Mapper.xml的时候,就拿spring的配置作为例子吧

首先我们会建一个applicationContext.xml的文件,当在写里面的配置的时候可能会有写麻烦,不用怕,我们有秘密武器

解压我们下载的Spring的JAR包,spring-framework-3.2.5.RELEASE-dist.zip ,我们在解压后的文件,一直往下找,顺序是spring-framework-3.2.5.RELEASE----》docs----》spring-framework-reference----》html   当找到这个html后,就已经成功一半了,我们会看到里面有各种各样的模版,


我们打开beans.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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="..." class="...">
<!-- collaborators and configuration for this bean go here --> </bean>
<bean id="..." class="...">
<!-- collaborators and configuration for this bean go here --> </bean>
<!-- more bean definitions go here --></beans>

复制进我们的applicationContext.xm中即可,在此基础上进行添加我们自己的bean组件,同时也可以添加其他的例如context,tx类型schemal

智能推荐

注意!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。



 
© 2014-2019 ITdaan.com 粤ICP备14056181号  

赞助商广告