spring的配置文件怎么写

1.spring的配置文件怎么写标准的Spring配置文件编写:.mysql.jdbc.Driver jdbc:mysql://localhost/ssh?characterEncoding=utf-8 root123com/ssh/pojo/User.hbm.xmltrue 。
2.在spring的配置文件中配置Person,写出配置信息;<bean id="address" class=" 。Address">
<property name="city" value="http://www.xuexi88.com/zhishi/XXX" />
</bean>
<bean id="person" class=" 。Person">
<property name="name" value="http://www.xuexi88.com/zhishi/YYY" /> --->;值注入
<property name="addr" ref="address" /> --->;对象注入(ref=bean的id)
<property name="phone"> --->;集合对象注入
<value>123123123</value>
<value>123123123</value>
<value>123123123</value>
</property>
。.
</bean>
3.如何自动创建spring配置文件方法如下:
1、打开Myeclipse , 找到新建的工程项目;
2、右键点击--Myeclipse--project facets--install spring facet , 按图示找到那片小绿叶;
3、打开后会有弹窗 , 选择spring版本 , 根据下载的spring文件获得;
4、此步点击next , 可以根据自己的习惯配置 , 但是applicationcontext.xml文件的名称尽量不要改
5、这里是选择项目用到的jar包 , 如果自己有jar包 , 知道需要导入的jar包 , 可以把此处的复选框中的对勾去掉 , 自己导入更加安全;
6、当完成上一步时 , 就发现web.xml内容多了些配置内容 。
4.java使用泛型时spring ioc的配置文件怎么写一般是这么用的 , 比如:
public class{
private List<Dept> depts;
..get() set()
}
配置:(部分) xml头和xmlns合xsi自己根据自己的版本加吧
<bean id="user" class="com.*.User">
<!-- java.util.List -->
<property name="depts">
<list>
<value>1</value>
<ref bean="Dept" />
<bean class="com.*.Dept">
<property name="id" value="http://www.xuexi88.com/zhishi/1" />
<property name="name" value="http://www.xuexi88.com/zhishi/development" />
<property name="location" value="http://www.xuexi88.com/zhishi/beijing" />
</bean>
</list>
</property>
</bean>
User user = appCtx.getBean("user");//配置中的id
List<Dept> depts = user.getDepts();
【spring的配置文件怎么写】

spring的配置文件怎么写

文章插图