博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring4-通过bean.属性或bean.方法调用
阅读量:6208 次
发布时间:2019-06-21

本文共 4323 字,大约阅读时间需要 14 分钟。

本文转自 素颜猪 51CTO博客,原文链接:

http://blog.51cto.com/suyanzhu/1910258

1.创建Maven项目,项目名称springdemo45,如图所示

2.配置Maven,修改项目中的pom.xml文件,修改内容如下

  
1.0.0
  
shequ
  
springdemo13
  
0.0.1-SNAPSHOT
    
  
1.7
  
UTF-8
  
UTF-8
  
    
  
  
codelds
  
https://code.lds.org/nexus/content/groups/main-repo
  
  
    
  
  
javax.annotation
  
jsr250-api
  
1.0
  
     
  
org.springframework
  
spring-test
  
4.1.4.RELEASE
  
     
  
junit
  
junit
  
4.10
  
     
  
org.springframework
  
spring-core
  
4.1.4.RELEASE
  
     
        
org.springframework
        
spring-context
        
4.1.4.RELEASE
    
        
        
org.springframework
        
spring-jdbc
        
4.1.4.RELEASE
    
        
        
mysql
        
mysql-connector-java
        
5.1.34
    
         
  

3.在src/main/java下创建实体Bean Forum,包名(com.mycompany.shequ.bean)如图所示

4.实体Bean Forum的内容如下

package com.mycompany.shequ.bean;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Component("forumBean")public class Forum {	private int fid;	private String name;	private int displayOrder;	public int getDisplayOrder() {		return displayOrder;	}	@Value("1")	public void setDisplayOrder(int displayOrder) {		this.displayOrder = displayOrder;	}	public int getFid() {		return fid;	}	@Value("1")	public void setFid(int fid) {		this.fid = fid;	}	public String getName() {		return name;	}	@Value("Spring EL以注解形式")	public void setName(String name) {		this.name = name;	}	@Override	public String toString() {		return "{fid=>"+this.fid+",name=>"+this.name+",displayOrder=>"+this.displayOrder+"}";	}		public String getAddress(String address){		return address;	}}

5.在src/main/java下创建实体Bean ForumPost,包名(com.mycompany.shequ.bean)如图所示

6.实体Bean ForumPost的内容如下

package com.mycompany.shequ.bean;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Component("forumPostBean")public class ForumPost {	private int pid;	private String name;	private Forum forum;	private String address;	public String getAddress() {		return address;	}	@Value("#{forumBean.getAddress('jiangsu')}")//通过.调用forumBean中的getAddress方法	public void setAddress(String address) {		this.address = address;	}	public int getPid() {		return pid;	}	@Value("1")	public void setPid(int pid) {		this.pid = pid;	}	public String getName() {		return name;	}	@Value("#{forumBean.name}")//通过.调用forumBean中的name属性	public void setName(String name) {		this.name = name;	}	public Forum getForum() {		return forum;	}	@Value("#{forumBean}")	public void setForum(Forum forum) {		this.forum = forum;	}}

7.在src/main/resource下创建核心的配置文件applicationContext.xml,如图所示

8.核心的配置文件applicationContext.xml的内容如下

9.在src/test/java下创建测试文件AppTest,包名(com.mycompany.shequ.test)如图所示

10.测试文件AppTest的内容如下

package com.mycompany.shequ.test;import org.junit.Test;import org.springframework.context.ConfigurableApplicationContext;import org.springframework.context.support.ClassPathXmlApplicationContext;import com.mycompany.shequ.bean.ForumPost;public class AppTest {		@Test	public void beanTest(){	    ConfigurableApplicationContext context = new 	    ClassPathXmlApplicationContext("applicationContext.xml");		ForumPost forumPost = (ForumPost) context.getBean("forumPostBean");		System.out.println(forumPost.getName());		System.out.println(forumPost.getAddress());		System.out.println(forumPost.getForum());	}}

11.在测试类AppTest的beanTest方法上右键运行,输出结果如图所示

转载地址:http://skkja.baihongyu.com/

你可能感兴趣的文章
Linux平台Oracle多个实例启动说明
查看>>
bash腳本編程之三 条件判断及算数运算
查看>>
php cookie
查看>>
linux下redis安装
查看>>
弃 Java 而使用 Kotlin 的你后悔了吗?| kotlin将会是最好的开发语言
查看>>
JavaScript 数据类型
查看>>
量子通信和大数据最有市场突破前景
查看>>
StringBuilder用法小结
查看>>
CSS - 修改input - placeholder 和 readonly 的样式
查看>>
android studio :cannot resolve symbol R
查看>>
paper 20 :color moments
查看>>
代码大全
查看>>
DataTable.ImportRow()与DataTable.Rows.Add()的区别
查看>>
程序集、应用程序配置及App.config和YourSoft.exe.config .
查看>>
二叉树的基本操作及应用(三)
查看>>
朱晔和你聊Spring系列S1E3:Spring咖啡罐里的豆子
查看>>
IOS CALayer的属性和使用
查看>>
温故而知新:柯里化 与 bind() 的认知
查看>>
Django REST framework
查看>>
CSS 如何让Table的里面TD全有边框 而Table的右左边框没有
查看>>