- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for shutdownCommonsHttpClient (0.29 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHook.java
private static final Logger logger = LogManager.getLogger(FessCurtainFinallyHook.class); @Override public void hook(final FwAssistantDirector assistantDirector) { shutdownCommonsHttpClient(); } private void shutdownCommonsHttpClient() { // from Tomcat7ConfigServlet (old class) try { final Class<?> clazz = Class.forName("org.apache.commons.httpclient.MultiThreadedHttpConnectionManager");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
assertTrue(true); } // Test shutdownCommonsHttpClient private method with reflection public void test_shutdownCommonsHttpClient_reflection() throws Exception { // Access the private method using reflection Method shutdownMethod = FessCurtainFinallyHook.class.getDeclaredMethod("shutdownCommonsHttpClient"); shutdownMethod.setAccessible(true); // Invoke the method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0)