public class TestDIServiceImpl implements TestDIService { private TestDao testDao; //constructor方法注入 public TestDIServiceImpl(TestDao testDao){ super(); this.testDao = testDao; } @Override public void sayHello(String arg) { System.out.println("service构造方法注入sayHello"); arg = arg + ":" + this.hashCode(); testDao.sayHello(arg); }}
结果只显示arg的内容了,不显示System.out.println("service构造方法注入sayHello");中的内容
什么原因呢 我没有看出来
解决了。。。
也希望大家多动脑筋,有些问题是可以自己解决的