* 作者:李明
* 版本:1.0
* 邮箱:liming@sogou-inc.com
*/
public void putAllDataToCache(){
List<TemplateType> allTemplateTypes = new TemplateTypeAccessSessionMySQL().queryAllTemplateType();
EhcacheHandler ehcachedHanler = EhcacheHandler.getInstance();
for (TemplateType templateType : allTemplateTypes) {
ehcachedHanler.set(EhcacheHandler.FOREVER_CACHE,templateType.getId().getValue(), templateType);
}