Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 110DB200C67 for ; Mon, 1 May 2017 08:14:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0CE5F160BA9; Mon, 1 May 2017 06:14:09 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 543D4160BA4 for ; Mon, 1 May 2017 08:14:08 +0200 (CEST) Received: (qmail 38123 invoked by uid 500); 1 May 2017 06:14:07 -0000 Mailing-List: contact issues-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list issues@struts.apache.org Received: (qmail 38113 invoked by uid 99); 1 May 2017 06:14:07 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 May 2017 06:14:07 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id ECEC4C2413 for ; Mon, 1 May 2017 06:14:06 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id gBGQjniN3mFl for ; Mon, 1 May 2017 06:14:06 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id D143B5FC64 for ; Mon, 1 May 2017 06:14:05 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 443BBE05BF for ; Mon, 1 May 2017 06:14:05 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 7A59F21DE1 for ; Mon, 1 May 2017 06:14:04 +0000 (UTC) Date: Mon, 1 May 2017 06:14:04 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@struts.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (WW-4793) Don't add JBossFileManager as a possible FileManager when not on JBoss MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 01 May 2017 06:14:09 -0000 [ https://issues.apache.org/jira/browse/WW-4793?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15990612#comment-15990612 ] ASF GitHub Bot commented on WW-4793: ------------------------------------ GitHub user sdutry opened a pull request: https://github.com/apache/struts/pull/136 WW-4793 only add JBossFileManager when supported You can merge this pull request into a Git repository by running: $ git pull https://github.com/sdutry/struts WW-4793 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/struts/pull/136.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #136 ---- commit f7beeacf400ec6bdb27a7d67deb3b55dcc0f5dac Author: Stefaan Dutry Date: 2017-05-01T05:54:19Z added utility innerclass for checking support commit 4be974a482a2894b677ee4d2292ec778dfcd429e Author: Stefaan Dutry Date: 2017-05-01T06:00:54Z only add JBossFileManager when it's supported commit b140218cf2c7c634a6c42cd859d6d3b81cb5c290 Author: Stefaan Dutry Date: 2017-05-01T06:06:11Z removed redundant logger declaration ---- > Don't add JBossFileManager as a possible FileManager when not on JBoss > ---------------------------------------------------------------------- > > Key: WW-4793 > URL: https://issues.apache.org/jira/browse/WW-4793 > Project: Struts 2 > Issue Type: Improvement > Components: Core > Affects Versions: 2.5.10 > Reporter: Stefaan Dutry > Priority: Trivial > > When the application starts and there is no FileManager specified as initParam, the {{JBossFileManager}} gets added. > This results in the check happening everytime a FileManager is requested. > (When turning on logging, i can see it happening 12 times when starting a simple application) > {code:java|title=org.apache.struts2.dispatcher.Dispatcher} > ... > private void init_FileManager() throws ClassNotFoundException { > if (initParams.containsKey(StrutsConstants.STRUTS_FILE_MANAGER)) { > ... > } else { > // add any other Struts 2 provided implementations of FileManager > configurationManager.addContainerProvider(new FileManagerProvider(JBossFileManager.class, "jboss")); > } > ... > } > ... > {code} > {code:java|title=com.opensymphony.xwork2.util.fs.DefaultFileManagerFactory} > private FileManager lookupFileManager() { > Set names = container.getInstanceNames(FileManager.class); > ... > for (FileManager fm : internals) { > if (fm.support()) { > return fm; > } > } > return null; > } > {code} > My suggestion would be to not add it if it's not supported. > I don't know what the best way to do this would be. > The possibility i was thinking of so far involves the following: > * Creating a seperate utility class to check if it can support it > ** perhaps a public static innerclass of {{JBossFileManager}} with public static method(s) to check it? > ** or a seperate class (although i think this might be awkward) > * adding a test around adding the JBossFileManager to only do it when it could be supported. > additional information: > * log messages were noticed by adjusting the log4j2 configuration in the {{form-processing}} application from {{struts-examples}} and starting it. -- This message was sent by Atlassian JIRA (v6.3.15#6346)