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

来源:2-2 Spring注入方式

慕粉0947393229

2018-12-20 02:09

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


写回答 关注

2回答

  • 慕工程6102479
    2019-08-17 17:02:35

    什么原因呢  我没有看出来

  • 慕粉0947393229
    2018-12-20 02:27:37

    解决了。。。

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

Spring入门篇

为您带来IOC和AOP的基本概念及用法,为后续高级课程学习打下基础

268786 学习 · 963 问题

查看课程

相似问题