- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 68 for injection (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
*/ public RelatedQueryHelper() { super(); } /** * Initializes the RelatedQueryHelper after dependency injection is complete. * This method is called automatically by the dependency injection framework * and loads the initial related query configurations. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
super(); } /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FessFileTransformer.class); /** * Initializes the transformer after dependency injection. * Sets up the Fess configuration and data serializer components. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
} /** * Registers this creator with the dictionary manager upon initialization. * This method is annotated with {@link PostConstruct} to be executed after * dependency injection is complete. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
} /** * Registers this creator with the dictionary manager upon initialization. * This method is annotated with {@link PostConstruct} to be executed after * dependency injection is complete. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java
/** Factory for creating and managing ingesters */ private IngestFactory ingestFactory = null; /** * Initializes the processor after dependency injection. * Sets up the ingest factory if available in the component system. */ @PostConstruct public void init() { if (ComponentUtil.hasIngestFactory()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
// Default constructor } /** * Initializes the file type mappings by loading configuration from Fess settings. * This method is called automatically after dependency injection is complete. * The mappings are loaded from the index filetype configuration property, * where each line contains a MIME type to file type mapping in the format "mimetype=filetype". */ @PostConstruct
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when a dependency injection container or component is not available. * This exception indicates that the required container or a specific component within it cannot be accessed. */ public class ContainerNotAvailableException extends FessSystemException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
} /** * Registers this creator with the dictionary manager upon initialization. * This method is annotated with {@link PostConstruct} to be executed after * dependency injection is complete. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
*/ public FacetInfo() { // Default constructor } /** * Initializes the facet configuration from Fess configuration properties. * This method is called after dependency injection to load default facet settings. */ @PostConstruct public void init() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (StringUtil.isNotBlank(fessConfig.getQueryFacetFields())) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
*/ public FacetQueryView() { // Default constructor } /** * Initializes the facet query view with default file type queries. * This method is called after dependency injection to set up file type facets * and register all queries with the FacetInfo component. */ @PostConstruct public void init() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0)