九月 03, 2019 1:34:47 下午 org.apache.catalina.startup.Catalina start
信息: Server startup in 2978 ms
19-09-03 13:34:55 ocn.site.springmvc.controller.Manicontroller =====>>> zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7
19-09-03 13:34:55 ocn.site.springmvc.controller.Manicontroller =====>>> 用户名
19-09-03 13:34:55 ocn.site.springmvc.controller.Manicontroller =====>>> 密码
九月 03, 2019 1:34:55 下午 org.apache.jasper.compiler.TldLocationsCache tldScanJar
信息: At least one JAR was scanned for TLDs yet contained no TLDs. Enable debug logging for this logger for a complete list of JARs that were scanned but no TLDs were found in them. Skipping unneeded JARs during scanning can improve startup time and JSP compilation time.
// org.springframework.web.servlet.DispatcherServlet
static {
// Load default strategy implementations from properties file.
// This is currently strictly internal and not meant to be customized
// by application developers.
try {
ClassPathResource resource = new ClassPathResource(DEFAULT_STRATEGIES_PATH, DispatcherServlet.class);
defaultStrategies = PropertiesLoaderUtils.loadProperties(resource);
}
catch (IOException ex) {
throw new IllegalStateException("Could not load '" + DEFAULT_STRATEGIES_PATH + "': " + ex.getMessage());
}
}
// org.springframework.web.servlet.DispatcherServlet.DEFAULT_STRATEGIES_PATH
private static final String DEFAULT_STRATEGIES_PATH = "DispatcherServlet.properties";
// org.springframework.web.servlet.DispatcherServlet.LOCALE_RESOLVER_BEAN_NAME
/** Well-known name for the LocaleResolver object in the bean factory for this namespace. */
public static final String LOCALE_RESOLVER_BEAN_NAME = "localeResolver";
// org.springframework.web.servlet.DispatcherServlet.initLocaleResolver(ApplicationContext)
private void initLocaleResolver(ApplicationContext context) {
try {
this.localeResolver = context.getBean(LOCALE_RESOLVER_BEAN_NAME, LocaleResolver.class);
if (logger.isDebugEnabled()) {
logger.debug("Using LocaleResolver [" + this.localeResolver + "]");
}
}
catch (NoSuchBeanDefinitionException ex) {
// We need to use the default.
this.localeResolver = getDefaultStrategy(context, LocaleResolver.class);
if (logger.isDebugEnabled()) {
logger.debug("Unable to locate LocaleResolver with name '" + LOCALE_RESOLVER_BEAN_NAME +
"': using default [" + this.localeResolver + "]");
}
}
}