0 Replies Latest reply on May 2, 2013 4:10 AM by julien_viet

    Juzu 0.6.0

    julien_viet

      I'm proud to announce the availability of Juzu 0.6.0 after a few months of development with new features.

       

      Portlet event producers

       

       

      @Action
      public Response.View process(EventQueue<MyEvent> producer) {
         producer.send("my.event", new MyEvent());
         return Controller_.index();
      }
      

       

      Portlet event consumers

       

      @Consumes("my.event")
      public Response.View process(Event<MyEvent> event) {
         System.out.println("Received event " + event);
         return Controller_.index();
      }
      

       

      Injection provider factories

       

      You can easily provide your own beans for injecting in Juzu applications.

       

      File upload plugin

       

      @Action   
      public Response.View action(org.apache.commons.fileupload.FileItem file) throws IOException {
        return Controller_.index();
      }
      

       

      Easy testing with Arquillian

       

      Ever heard of Arquillian ? Juzu does support it nicely!

       

      Google Guice support

       

      Now Juzu integrates with the following injection containers: Weld, Spring and Guice.