<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>1.0.0</modelVersion> <groupId>shequ</groupId> <artifactId>springdemo13</artifactId> <version>0.0.1-SNAPSHOT</version> <properties> <java.version>1.7</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <repositories> <repository> <id>codelds</id> <url>https://code.lds.org/nexus/content/groups/main-repo</url> </repository> </repositories> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>4.1.4.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>4.1.4.RELEASE</version> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> <version>4.1.4.RELEASE</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.34</version> </dependency> </dependencies> <build/> </project>
package com.mycompany.shequ.bean; public class Forum { private int fid; private String name; public int getFid() { return fid; } public void setFid(int fid) { this.fid = fid; } public String getName() { return name; } public void setName(String name) { this.name = name; } @Override public String toString() { return "{fid=>"+this.fid+",name=>"+this.name+"}"; } }
package com.mycompany.shequ.bean; public class ForumPost { private int pid; private String name; private Forum forum; public int getPid() { return pid; } public void setPid(int pid) { this.pid = pid; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Forum getForum() { return forum; } public void setForum(Forum forum) { this.forum = forum; } @Override public String toString() { return "{pid=>"+this.pid+",name=>"+this.name+",["+this.forum+"]}"; } }
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> <!-- 1.非内部Bean --> <bean id="forumpost1" class="com.mycompany.shequ.bean.ForumPost"> <property name="pid" value="1"></property> <property name="name" value="forumpost中的非内部bean"></property> <property name="forum" ref="forum"></property> </bean> <bean id="forum" class="com.mycompany.shequ.bean.Forum"> <property name="fid" value="1"></property> <property name="name" value="forum中的非内部bean"></property> </bean> <!-- 2.内部Bean --> <bean id="forumpost2" class="com.mycompany.shequ.bean.ForumPost"> <property name="pid" value="2"></property> <property name="name" value="forumpost中的内部bean"></property> <property name="forum"> <bean class="com.mycompany.shequ.bean.Forum"> <property name="fid" value="2"></property> <property name="name" value="forum中的内部bean"></property> </bean> </property> </bean> </beans>
<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-4.0.xsd"> <import resource="bean/spring-bean.xml"/> </beans>
package com.mycompany.shequ.test; import org.junit.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import com.mycompany.shequ.bean.ForumPost; public class AppTest { @Test public void beanTest(){ ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml"); ForumPost forumPost = (ForumPost) context.getBean("forumpost1"); System.out.println(forumPost); ForumPost forumPost2 = (ForumPost) context.getBean("forumpost2"); System.out.println(forumPost2); } }
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1909740
原文地址:http://suyanzhu.blog.51cto.com/8050189/1909740