Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for processWebInfLib (0.06 sec)

  1. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

        public void test_methodsExist() {
            // Verify that processWebInfLib method is overridden (it's protected so we can't call it directly)
            try {
                final java.lang.reflect.Method method = FessWebResourceRoot.class.getDeclaredMethod("processWebInfLib");
                assertNotNull("processWebInfLib method should exist", method);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

         * the "Fess-WebAppJar" manifest attribute.
         *
         * @throws LifecycleException if an error occurs during processing
         */
        @Override
        protected void processWebInfLib() throws LifecycleException {
            super.processWebInfLib();
    
            final WebResource[] possibleJars = listResources("/WEB-INF/plugin", false);
    
            for (final WebResource possibleJar : possibleJars) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top