1 Reply Latest reply on Jul 31, 2003 10:40 AM by cpaul_it

    Changing value in ejb-jar.xml file

      I can add an environment parameter in my ejb-jar.xml file and reference it successfully in my code.
      My question is how do I update my ejb-jar.xml file when it is zipped up into a *.jar file. If I can't change it and the only way to change it is to rebuild and deploy the jar file, then it might as well have been hard coded. Or should I be putting it somewhere else?

      Thanks in advance,

      Shaun

        • 1. Re: Changing value in ejb-jar.xml file
          cpaul_it

          You can unjar (or unzip) the .jar file, change the value in the ejb-jar.xml file, and then rejar the file. Our company did this for a while. However, since we kept having to change the value, we decided to put the information into a property file, which ended up being a much better solution for us.