📄 testbeanforyou.java
字号:
package test;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
*
* @author worldheart
*
*/
public class TestBeanForYou implements ITestBean{
protected static final Log log = LogFactory.getLog(TestBeanForYou.class);
private HelloWorld hw;
public HelloWorld getHw() {
return hw;
}
@ForYou
public void setHw(HelloWorld hw) {
this.hw = hw;
}
public void testBean() {
if(this.hw != null){
log.info("HelloWorld对象不为null!");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -