为了账号安全,请及时绑定邮箱和手机立即绑定

为什么service中构造器方法的sysout的内容没显示?

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");中的内容


正在回答

3 回答

什么原因呢  我没有看出来

0 回复 有任何疑惑可以回复我~

解决了。。。

也希望大家多动脑筋,有些问题是可以自己解决的

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么service中构造器方法的sysout的内容没显示?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信