发表于: 2016-05-20 21:58:53
0 2659
【操作步骤】
1.实现要求“部署两台web,一台挂掉不影响使用”。
这个要求很容易实现,使用Nginx的Upstream就可以。
2.优化了一下程序。
我以前在调用Spring配置文件中的bean时,使用的方法是这样的:
ApplicationContext ctx = new ClassPathXmlApplicationContext("rmiClient.xml");
ClassesService classesService = (ClassesService) ctx.getBean("classesService");
就是要手动加载一下xml配置文件。
其实只要你在xml文件中配置了bean,可以这样在项目中直接调用bean:
@Autowired
ClassesService classesService;
会自动注入的。
3.任务8完成。
【知识总结】
【出现的问题(已解决)】
【出现的问题(未解决)】
1.要求“部署两台Service,在WEB中随机访问任意一台Service。”,此要求未实现,老大说这个难度太高,先跳过。
【疑问】
评论