Exclude JSP classes by default

This commit is contained in:
Dave Syer
2013-07-24 11:44:40 +01:00
parent abf36c30f9
commit ca74168936
2 changed files with 1 additions and 5 deletions

View File

@@ -44,7 +44,7 @@ import org.springframework.web.context.WebApplicationContext;
*/
public abstract class SpringServletInitializer implements WebApplicationInitializer {
private final Log logger = LogFactory.getLog(getClass());
protected final Log logger = LogFactory.getLog(getClass());
@Override
public void onStartup(ServletContext servletContext) throws ServletException {

View File

@@ -21,9 +21,5 @@
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-logging-juli</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jsp-api</artifactId>
</dependency>
</dependencies>
</project>