Add server.tomcat.access_valve_enabled flag
Also introduced new strategy for customizing Tomcat Context (TomcatContextCustomizer) - any that are added to the factory will be applied before any other customizations in postProcessContext() [Fixes #54670052] [bs-275] Make Tomcat access valve logs more accessiblepull/13/head
parent
dc812ddf17
commit
d2419a36fd
@ -1,2 +1,4 @@
|
||||
# Allow Thymeleaf templates to be reloaded at dev time
|
||||
spring.template.cache: false
|
||||
spring.template.cache: false
|
||||
server.tomcat.access_log_enabled: true
|
||||
server.tomcat.basedir: target/tomcat
|
@ -0,0 +1,31 @@
|
||||
/*
|
||||
* Copyright 2012-2013 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.springframework.boot.context.embedded.tomcat;
|
||||
|
||||
import org.apache.catalina.Context;
|
||||
|
||||
/**
|
||||
* @author Dave Syer
|
||||
*/
|
||||
public interface TomcatContextCustomizer {
|
||||
|
||||
/**
|
||||
* @param context the context to customize
|
||||
*/
|
||||
void customize(Context context);
|
||||
|
||||
}
|
Loading…
Reference in New Issue