- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for DiInjected (0.04 sec)
-
CLAUDE.md
- DI via `@Resource` annotation - `HtmlResponse` for JSP, `JsonResponse` for APIs ### Services - Business logic in `app.service.*` - Injected into Actions - Use behavior classes to access OpenSearch ### Helpers - Cross-cutting utilities in `helper.*` - Stateless, injected via DI - Access via `ComponentUtil.getFooHelper()` ## Development Notes - **Code Style**: Enforced by `mvn formatter:format`
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
/** Injected search engine client for OpenSearch operations. */ @Resource protected SearchEngineClient searchEngineClient; /** Injected helper for web and file system indexing operations. */ @Resource protected WebFsIndexHelper webFsIndexHelper; /** Injected helper for data store indexing operations. */ @ResourceRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 31.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java
if (annotation != null) { final Object injected = container.getComponent(fieldDesc.getFieldName()); if (injected != null) { FieldUtil.set(fieldDesc.getField(), component, injected); } } }
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
* to delete all access results for a given session, and to delete all access results. * </p> * * <p> * The class is a singleton, and is injected using the {@link Resource} annotation. * </p> * */ public class DataServiceImpl implements DataService<AccessResultImpl<Long>> { /** Counter for generating unique IDs */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
/** * Evaluates a Groovy script template with the provided parameters. * * <p>This method creates a new GroovyShell instance for each evaluation to ensure * thread safety. The DI container is automatically injected into the binding map * as "container" for script access.</p> * * @param template the Groovy script to evaluate (null-safe, returns null if empty)Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java
throws GraphConflictResolutionException { if (policy == null) { throw new GraphConflictResolutionException("no GraphConflictResolutionPolicy injected"); } if (graph == null) { return null; } final MetadataGraphVertex entry = graph.getEntry(); if (entry == null) { return null; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 7.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java
* with domtrip-based strategies for superior formatting preservation. * * <p>Determines which strategies to apply based on options and executes them in priority order. * The DI container automatically sorts the injected strategies by their @Priority annotations. */ @Named("strategy-orchestrator") @Singleton public class StrategyOrchestrator { private final List<UpgradeStrategy> strategies; @InjectRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcPipeHandleTest.java
// Setup buffer cache to return buffers for sendrecv operations lenient().when(mockBufferCache.getBuffer()).thenReturn(new byte[8192]); } /** * Helper method to create a DcerpcPipeHandle with injected mocks * Uses mock to avoid constructor issues while allowing real method calls */ private DcerpcPipeHandle createMockedDcerpcPipeHandle() throws Exception { // Create a mock without calling the constructorRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
* injection is complete. * * PostConstruct annotation ensures this method is called after the bean * has been constructed and all dependencies have been injected. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initializing {}", this.getClass().getSimpleName()); } load(); }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java
if (mojoDescriptor.isV4Api()) { // For Maven 4 plugins, register a service so that they can be directly injected into plugins Map<Class<? extends Service>, Supplier<? extends Service>> services = sessionV4.getAllServices(); services.forEach((itf, svc) -> scope.seed((Class<Service>) itf, (Supplier<Service>) svc));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 16:01:38 UTC 2025 - 11.5K bytes - Viewed (0)