Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getProjectPropertiesFile (0.94 sec)

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to the project properties file.
         *
         * @return the Path object pointing to the project.properties file
         */
        public static Path getProjectPropertiesFile() {
            return getPath("WEB-INF/", StringUtil.EMPTY, "project.properties");
        }
    
        /**
         * Gets the path to image files directory.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            assertNotNull(pluginPath);
            assertTrue(pluginPath.toString().contains("plugin"));
        }
    
        public void test_getProjectPropertiesFile() {
            Path propFile = ResourceUtil.getProjectPropertiesFile();
            assertNotNull(propFile);
            assertTrue(propFile.toString().contains("project.properties"));
        }
    
        public void test_getImagePath() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                            return langItems;
                        }
                    });
    
            ComponentUtil.doInitProcesses(Runnable::run);
    
            parseProjectProperties(ResourceUtil.getProjectPropertiesFile());
    
            updateConfigListenerMap.put("Label", () -> Integer.toString(ComponentUtil.getLabelTypeHelper().load()));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top