SpringMvc 系统启动时加载数据到内存中
生活随笔
收集整理的這篇文章主要介紹了
SpringMvc 系统启动时加载数据到内存中
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
SpringMvc 系統啟動時加載數據到內存中
學習了:http://blog.csdn.net/newstruts/article/details/18668269
https://www.cnblogs.com/zhengteng/p/5381910.html
http://xfxlch.iteye.com/blog/2048049
http://duanxuchu.iteye.com/blog/2181647
結論:
方案一:
<!--beans.xml中配置 掃描服務包 --> <context:component-scan base-package="com.stono.service" />package com.stono.service @Service @Lazy(false) // 注意這句 public class LoadDataService implements ServletContextAware {@AutowiredTblMapper tblMapper;@Overridepublic void setServletContext(ServletContext context) {} }?
方案二:
<!--在beans.xml 中進行配置--> <bean id="loadDataService" class="com.stono.service.LoadDataService" lazy-init="false"> </bean>package com.stono.serivce@Service // @Component // 寫成@Component也可以 public class LoadDataService implements ServletContextAware {@AutowiredTblMapper tblMapper;@Overridepublic void setServletContext(ServletContext context) {} }?
轉載于:https://www.cnblogs.com/stono/p/7818123.html
總結
以上是生活随笔為你收集整理的SpringMvc 系统启动时加载数据到内存中的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JavaScript-简单的页面输入控制
- 下一篇: 软工团队 - 系统设计