Spring HelloWorld Program不提供输出

时间:2017-05-24 06:08:54

标签: spring maven pom.xml

ApplicationContext context = new ClassPathXmlApplicationContext("HelloWorldBean.xml");
HelloWorld h1 = (HelloWorld) context.getBean("b1");
h1.getMsg(); 
h1.getName(); 

此处所有内容都很好,添加了maven依赖项,但此getMsggetName方法未提供任何输出。

如果我写

System.out.println(h1.getMsg() + h1.getName()  );

它将给出msg和name变量的值。

这有什么问题可以帮到谁?

1 个答案:

答案 0 :(得分:1)

在pojo中, getMsg 应该有System.out.println(msg);然后会打印,否则你必须手动将 getMsg 方法放到** sysout *中,如图所示。