app开发者平台在数字化时代的重要性与发展趋势解析
458
2023-07-14
spring通过构造函数注入实现方法分析
本文实例讲述了spring通过构造函数注入实现方法。分享给大家供大家参考,具体如下:
一 通过构造函数注入
set注入的缺点是无法清晰表达哪些属性是必须的,哪些是可选的,构造注入的优势是通过构造强制依赖关系,不可能实例化不完全的或无法使用的bean。
二 举例
1 Employee
package com.hsp.constructor;
public class Employee {
private String name;
private int age;
public Employee(String name) {
System.out.println("Employee(String name) 函数被调用..");
this.name = name;
this.age = age;
}
public Employee(String name, int age) {
System.out.println("Employee(String name, int age) 函数被调用..");
this.name = name;
this.age = age;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
2 beans.xml
xmlns:xsi="http://w3.ohttp://rg/2001/XMLSchema-instance"; xmlns:context="http://springframework.org/schema/context"; xmlns:tx="http://springframework.org/schema/tx"; xsi:schemaLocation="http://springframework.org/schema/beanshttp://springframework.org/schema/beans/spring-beans-2.5.xsd http://springframework.org/schema/contexthttp://springframework.org/schema/context/spring-context-2.5.xsd http://springframework.org/schema/txhttp://springframework.org/schema/tx/spring-tx-2.5.xsd";>
xmlns:xsi="http://w3.ohttp://rg/2001/XMLSchema-instance";
xmlns:context="http://springframework.org/schema/context";
xmlns:tx="http://springframework.org/schema/tx";
xsi:schemaLocation="http://springframework.org/schema/beanshttp://springframework.org/schema/beans/spring-beans-2.5.xsd
http://springframework.org/schema/contexthttp://springframework.org/schema/context/spring-context-2.5.xsd
http://springframework.org/schema/txhttp://springframework.org/schema/tx/spring-tx-2.5.xsd";>
3 App1
package com.hsp.constructor;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class App1 {
/**
* @param arhttp://gs
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ApplicationContext ac=new ClassPathXmlApplicationContext("com/hsp/constructor/beans.xml");
Employee ee=(Employee) ac.getBean("employee");
System.out.println(ee.getName());
}
}
三 测试结果
Employee(String name) 函数被调用..
大明
更多关于java相关内容感兴趣的读者可查看本站专题:《Spring框架入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》
希望本文所述对大家java程序设计有所帮助。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~