ApplicationContext context = new ClassPathXmlApplicationContext("HelloWorldBean.xml");
HelloWorld h1 = (HelloWorld) context.getBean("b1");
h1.getMsg();
h1.getName();
此处所有内容都很好,添加了maven依赖项,但此getMsg
或getName
方法未提供任何输出。
如果我写
System.out.println(h1.getMsg() + h1.getName() );
它将给出msg和name变量的值。
这有什么问题可以帮到谁?
答案 0 :(得分:1)
在pojo中, getMsg 应该有System.out.println(msg);
然后会打印,否则你必须手动将 getMsg 方法放到** sysout *中,如图所示。