From 4dac12254abddfc92ce8cf6283eaabeb73516564 Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Tue, 10 Feb 2015 23:56:39 +0800 Subject: [PATCH] Update 26.3.4. JSP limitations.md --- IV. Spring Boot features/26.3.4. JSP limitations.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/IV. Spring Boot features/26.3.4. JSP limitations.md b/IV. Spring Boot features/26.3.4. JSP limitations.md index e69de29..8509279 100644 --- a/IV. Spring Boot features/26.3.4. JSP limitations.md +++ b/IV. Spring Boot features/26.3.4. JSP limitations.md @@ -0,0 +1,9 @@ +### 26.3.4. JSP的限制 + +在内嵌的servlet容器中运行一个Spring Boot应用时(并打包成一个可执行的存档archive),容器对JSP的支持有一些限制。 + +1. tomcat只支持war的打包方式,不支持可执行的jar。 +2. 内嵌的Jetty目前不支持JSPs。 +3. Undertow不支持JSPs。 + +这里有个[JSP示例](http://github.com/spring-projects/spring-boot/tree/master/spring-boot-samples/spring-boot-sample-web-jsp),你可以查看如何设置相关事项。