* @description:query all Templates from DB, then put to the cache
* @date:2014-5-5 下午7:56:03
* @version:v1.0
*/
public void putAllDataToCache(){
List<Template> allTemplates = new TemplateAccessSessionMySQL().queryAllTemplate();
EhcacheHandler ehcacheHanler = EhcacheHandler.getInstance();
for (Template template : allTemplates) {
ehcacheHanler.set(EhcacheHandler.FOREVER_CACHE,template.getId().getValue(), template);