SpringMvc 系统启动时加载数据到内存中
生活随笔
收集整理的這篇文章主要介紹了
SpringMvc 系统启动时加载数据到内存中
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
SpringMvc 系統(tǒng)啟動(dòng)時(shí)加載數(shù)據(jù)到內(nèi)存中
學(xué)習(xí)了: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
結(jié)論:
方案一:
<!--beans.xml中配置 掃描服務(wù)包 --> <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 中進(jìn)行配置--> <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) {} }?
轉(zhuǎn)載于:https://www.cnblogs.com/stono/p/7818123.html
總結(jié)
以上是生活随笔為你收集整理的SpringMvc 系统启动时加载数据到内存中的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: JavaScript-简单的页面输入控制
- 下一篇: 软工团队 - 系统设计