From 15372cb73786d9a82abbd441b0c9e04a68967829 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 4 Mar 2014 22:28:02 +0000 Subject: [PATCH] Add Maven example for Tomcat 8 Fixes gh-430 --- docs/howto.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/howto.md b/docs/howto.md index c2bed20df2..faa965049e 100644 --- a/docs/howto.md +++ b/docs/howto.md @@ -161,9 +161,20 @@ of ways. Or the nuclear option is to add your own Tomcat 8 works with Spring Boot, but the default is to use Tomcat 7 (so we can support Java 1.6 out of the box). You should only need to -change the classpath to use Tomcat 8 for it to work. The -[websocket sample](https://github.com/spring-projects/spring-boot/blob/master/spring-boot-samples/spring-boot-sample-websocket/pom.xml) -shows you how to do that in Maven. +change the classpath to use Tomcat 8 for it to work. For example, using +the starter poms in Maven: + +```xml + + 8.0.3 + + + + ${project.groupId} + spring-boot-starter-web + + ... +``` ## Configure Jetty