我正在运行以下链接中的示例:
http://chathurangat.blogspot.se/2011/12/send-email-in-spring-with-gmail.html
它工作正常。我的问题是为什么
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("emailConfiguration.xml");
EmailSender emailSender=(EmailSender)context.getBean("emailSenderBean");
放在控制器中? 有没有更好的方法来读取xml文件?并创建bean?
可以自动装配ClassPathXmlApplicationContext吗?
如何在JPA中使用此示例?
由于
答案 0 :(得分:0)
解决
只需使用
然后你不需要在控制器中使用bean的声明。
由于