2 Replies Latest reply on Jul 1, 2007 6:22 PM by tuxzilla

    seam.properties not working for me

    tuxzilla

      I put two properties in seam.properties

      sendMail.testMail=x@x.com
      sendMail.bypassEmail=false

      to configure a event scoped bean

      
      @Name("sendMail")
      @AutoCreate
      @Scope(ScopeType.EVENT)
      public class SendMail {
      
       private String testMail;
       private boolean bypassEmail;
      
      
       public void setTestMail(String testMail) {
       this.testMail = testMail;
       }
      
       public void setBypassEmail(boolean bypassEmail) {
       this.bypassEmail = bypassEmail;
       }
      ...
      
      }
      


      But this is not working. Did I miss anything? Thanks.