2 Replies Latest reply on Jul 11, 2006 3:17 AM by barc

    No deployment of files in

    barc

      Hi,

      I was wondering why when deploying in the folder
      <JBOSS_INSTALL>/server/barc/deploy/BARC/core
      the server does not find the files in there.

      It doesn't matter whether I deploy an ear, par, jar, ... anything in the"core" folder is skipped both on start up as on hot deployment.
      Only when changing the foldername to"_core" the files are deployed.

      I wasn't aware that "core" is a reserved word for JBoss. Is this described in the server guide, and if so where?
      (my apologies for not reading the complete guide ;-) )

      BTW I'm currently using JBoss 4.0.3SP1

      -- Pieter-Jan Savat

        • 1. Re: No deployment of files in
          visolvejboss

          Hello,

          In JBoss Guide 4.0.3, at page number 84,

          In section,

          2.4.2.6. Hot Deployment of Components, the URLDeploymentScanner

          Said that,


          ? Filter: The class name of a java.io.FileFilter implementation that is used to filter the contents of scanned
          directories. Any file not accepted by this filter will not be deployed. The default is
          org.jboss.deployment.scanner.DeploymentFilter which is an implementation that rejects the following
          patterns:
          "#*", "%*", ",*", ".*", "_$*", "*#", "*$", "*%", "*.BAK", "*.old", "*.orig", "*.rej", "*.bak", "*.sh", "*,v",
          "*~", ".make.state", ".nse_depinfo", "CVS", "CVS.admin", "RCS", "RCSLOG", "SCCS", "TAGS", "core", "tags"


          Note that, it contains the "core" folder name.




          • 2. Re: No deployment of files in
            barc

            Ah okay, thanks pointing it out