Spring中的aware接口详情
509
2022-09-11
java的main方法中调用spring的service方式
目录main方法调用spring的servicemain方法调用spring的dao service方法
main方法调用spring的service
将业务层类配置到Spring中:
Spring的方式http://进行操作:
ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
CustomerService customerService = (CustomerService) applicationContext.getBean("customerService");
customerService.save(customer);
main方法调用spring的dao service方法
public static void main(String[] args) {
ApplicationContext context = new
ClassPathXmlApplicationContext("ApplicationContext.xml");
System.out.println("aaa");
// ServiceReportService service = (ServiceReportService)context.getBean(http://"serviceReportService");
http:// }
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~