SpringBoot(7)—— 使用外置的Servlet容器

使用外置的Servlet容器


步骤:

1. 创建一个war项目
2. 将嵌入式的Tomcat指定为provided
 	<groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
    <scope>provided</scope>
3. 创建一个ServletInitializerextends SpringBootServletInitializer,并调用configure方法
4. 创建好目录结构和测试程序
(1)创建好后需要另外生成webapp目录和web.xml文件:
Project Structure - Modules - web - Web Resource Directories:生成webapp目录
Project Structure - Modules - web - Deployment Descriptors:点+号生成web.xml文件,指定路径为:src\main\webapp\WEB-INF\web.xml
(2)创建Tomcat服务器
(3)在主配置文件application.properties中设置jsp的前后缀
spring.mvc.view.prefix=/WEB-INF/
spring.mvc.view.suffix=.jsp
(4)创建/hello请求的Controller方法,将数据放到model
(5)在页面使用${}调用model中的数据

具体代码:
ServletInitializer:(使用Spring Initializer创建项目时,Packaging选择War,会自动生成该类)

public class ServletInitializer extends SpringBootServletInitializer {

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(SpringBoot04WebJspApplication.class);
    }

}

HelloController

@Controller
public class HelloController {

    @GetMapping("/hello")
    public String hello(Model model){
        model.addAttribute("msg", "你好");

        return "success";
    }
}

hello.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

    <h1>Hello JSP</h1>

    <a href="abc">abc</a>

</body>
</html>

success.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
</head>
<body>

    <h1>Success</h1>

    <h3>${msg}</h3>

</body>
</html>

application.properties

spring.mvc.view.prefix=/WEB-INF/
spring.mvc.view.suffix=.jsp
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值