424183 - Start does not find LIB (Classpath) when on non-English locale
+ Adding more Java Environment dump to --list-config + Fixing .toUpperCase() use to include Locale.ENGLISH
This commit is contained in:
parent
dd0f50fc72
commit
2b0db585ef
|
@ -22,6 +22,7 @@ import java.io.File;
|
|||
import java.io.IOException;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Set;
|
||||
import java.util.StringTokenizer;
|
||||
import java.util.regex.Pattern;
|
||||
|
@ -193,7 +194,7 @@ public class AsyncGzipFilter extends UserAgentFilter implements GzipFactory
|
|||
{
|
||||
StringTokenizer tok = new StringTokenizer(tmp,",",false);
|
||||
while (tok.hasMoreTokens())
|
||||
_methods.add(tok.nextToken().trim().toUpperCase());
|
||||
_methods.add(tok.nextToken().trim().toUpperCase(Locale.ENGLISH));
|
||||
}
|
||||
else
|
||||
_methods.add(HttpMethod.GET.asString());
|
||||
|
|
|
@ -194,7 +194,7 @@ public class GzipFilter extends UserAgentFilter
|
|||
{
|
||||
StringTokenizer tok = new StringTokenizer(tmp,",",false);
|
||||
while (tok.hasMoreTokens())
|
||||
_methods.add(tok.nextToken().trim().toUpperCase());
|
||||
_methods.add(tok.nextToken().trim().toUpperCase(Locale.ENGLISH));
|
||||
}
|
||||
else
|
||||
_methods.add(HttpMethod.GET.asString());
|
||||
|
|
|
@ -30,6 +30,7 @@ import java.util.Collections;
|
|||
import java.util.Comparator;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
import java.util.Set;
|
||||
import java.util.regex.Matcher;
|
||||
import java.util.regex.Pattern;
|
||||
|
@ -295,7 +296,7 @@ public class Module
|
|||
|
||||
if (sectionMatcher.matches())
|
||||
{
|
||||
sectionType = sectionMatcher.group(1).trim().toUpperCase();
|
||||
sectionType = sectionMatcher.group(1).trim().toUpperCase(Locale.ENGLISH);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -161,6 +161,9 @@ public class StartArgs
|
|||
dumpSystemProperty("java.runtime.name");
|
||||
dumpSystemProperty("java.runtime.version");
|
||||
dumpSystemProperty("java.io.tmpdir");
|
||||
dumpSystemProperty("user.dir");
|
||||
dumpSystemProperty("user.language");
|
||||
dumpSystemProperty("user.country");
|
||||
|
||||
// Jetty Environment
|
||||
System.out.println();
|
||||
|
|
Loading…
Reference in New Issue