1 Reply Latest reply on Jan 5, 2010 1:14 PM by lvdberg

    Problem in example given

      Hi,


      I was trying out the example given in the Seam documentation. However every time my jboss server starts my one component is not getting deployed in seam


      here is the code used. I am not using any EJB ot entity manager also. Just plain old JDBC code for simplification. I am a newbie to Seam so sorry if my problem is very stupid.


      @Stateless
      @Name(test)
      public class TestAction implements Test {


              @In @Out
              private Person person;
              
              @Out
              private List fans;


              @PersistenceContext
              private EntityManager em;
              
             public String sayHello() throws SQLException {
            
                
                      Using plain jdbc code to get hold of list of entities.
               


             }


      }



      @Local
      public interface Test
      {
              public String sayHello() throws SQLException;
      }

        • 1. Re: Problem in example given
          lvdberg

          Hi,


          You're saying you're not using EJB, but the code looks like a real stateless session bean to me!


          To be able to find this bean, Seam needs some additional help. I assume that you have packed this bean in a Jar for deployment and if so, it should contain a - empty - seam.properties file. Furthermore you need additional configurations in components.xml 


          There is really no need to use jdbc code, because the Entitymanager gets directly injected, assuming that there is a persistency context avalable.


          Leo