Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getConfOrClassesPath (0.19 sec)

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

            if (StringUtil.isNotBlank(confPath)) {
                return Paths.get(confPath, names);
            }
            return getPath("WEB-INF/", "conf", names);
        }
    
        public static Path getConfOrClassesPath(final String... names) {
            final Path confPath = getConfPath(names);
            if (Files.exists(confPath)) {
                return confPath;
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/main/resources/fess.xml

    		<property name="roleSeparator">","</property>
    		 -->
    	</component>
    	<component name="tikaConfig" class="org.apache.tika.config.TikaConfig">
    		<arg>org.codelibs.fess.util.ResourceUtil.getConfOrClassesPath("tika.xml")</arg>
    	</component>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jan 01 06:48:48 GMT 2022
    - 5.2K bytes
    - Viewed (0)
Back to top