use of com.tomasio.projects.trainning.dto.TreinamentoSolicitadoDTO in project trainning by fernandotomasio.
the class TesteEcache method main.
public static void main(String[] args) throws IOException, DAOException {
CacheManager cacheManager = CacheManager.create(new ClassPathResource("echache.xml").getInputStream());
TreinamentoSolicitadoDAO dao = new HibernateTreinamentoSolicitadoDAO();
List<TreinamentoSolicitadoDTO> list = dao.findAll(null, null, null, null);
System.out.println(list.size());
Cache cache = cacheManager.getCache("colecoesCache");
cache.put(new Element("treinamentosSolicitados", list));
Element e = cache.get("treinamentosSolicitados");
@SuppressWarnings("unchecked") List<TreinamentoSolicitadoDTO> recuperados = (List<TreinamentoSolicitadoDTO>) e.getValue();
for (TreinamentoSolicitadoDTO treinamentoSolicitadoDTO : recuperados) {
System.out.println(treinamentoSolicitadoDTO.getId());
}
}
Aggregations