[jboss-user] [JBoss Seam] - Re: EntityManager inside ActionHandler

szaccaria do-not-reply at jboss.com
Wed Jul 18 05:00:04 EDT 2007


For whom might be interested, I have found one solution...


  | public class InformaInizioProcesso implements ActionHandler {
  | 	
  | 	private static final long serialVersionUID = 1L;
  | 	
  | 	public void execute(ExecutionContext arg0) throws Exception {
  | 		
  | 		Long idDocumento = (Long)arg0.getVariable("idDocumento");
  | 		
  | 		Renderer renderer = (Renderer)Component.getInstance(Renderer.class);
  | 		EntityManager em  = (EntityManager)Component.getInstance("entityManager", true);
  | 		
  | 	    Documento doc = (Documento) em.createQuery("select distinct d from Documento d where d.id = :id").setParameter("id", idDocumento).getSingleResult();
  | 		
  | 		Contexts.getEventContext().set("doc", doc);
  | 		
  | 	    renderer.render("/mail.xhtml");
  | 		 
  | 	}
  | 
  | }
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4065294#4065294

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4065294



More information about the jboss-user mailing list