SpringBoot外置Servlet容器


1.使用外置的Servlet容器

嵌入式Servlet容器:应用打成可执行的jar

优点:简单、便携;

缺点:默认不支持JSP、优化定制比较复杂.;

外置的Servlet容器:外面安装Tomcat—应用war包的方式打包;

操作步骤

2.先创建出SpringBoot项目

2.1创建一个普通的mavenjava项目

image-20241228173027548

image-20241228173102035

image-20241228173117116

2.2在pom.xml中,设置打包方式为war包,引入父工程模板,左侧设置三级包结构

image-20241228173515305

 <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.5.6</version>
        <relativePath/>
    </parent>

2.3引入springboot的stater、web的starter、thymeleaf的模板引擎

image-20241228201048909

   		<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <!--加载web-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>

2.4创建启动类SpringBootTomcatApplication

package com.qcby.springbootTomcat;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class SpringBootTomcatApplication {

    public static void main(String[] args) {
        SpringApplication.run(SpringBootTomcatApplication.class, args);
    }
}

2.5编写配置文件

application.yml

image-20241228200454747

server:
  port: 8085
spring:
  mvc:
    view:
      prefix: /WEB-INF/pages
      suffix: .jsp

2.6编写页面和Controller

编写success.htmlSuccessController

image-20241228200713357

<!DOCTYPE HTML>
<!--命名空间-->
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <div th:text="111111111"></div>

</body>
</html>
package com.qcby.springbootTomcat.Controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
@RequestMapping("/user")
public class SuccessController {

    @RequestMapping("/test")
    public String success(){
        System.out.println("222222222");
        return "success";
    }
}

3.将嵌入式的Tomcat指定为procided

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-tomcat</artifactId>
            <scope>provided</scope>
        </dependency>

4.设置项目的目录结构

创建包结构

image-20241228202109208

image-20241228202153325

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

<body>
    <h1>外部Tomcat的使用</h1>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
         version="3.1">
</web-app>

image-20241228201801752

image-20241228201917497

image-20241228202024386

5.部署Tomcat

image-20241228202346389

image-20241228202456066

image-20241228202557481

6.编写SpringBootServletInitializer的子类

必须编写一个SpringBootServletInitializer的子类,并调用configure方法

image-20241228202653251

package com.qcby.springbootTomcat;

import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;

public class ServletInitializer extends SpringBootServletInitializer {
    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(SpringBootTomcatApplication.class);
    }
}

7.启动程序

image-20241228202830990

8.原理

jar包:执行SpringBoot主类的main方法,启动ioc容器,创建嵌入式的Servlet容器;

war包:启动服务器,服务器启动SpringBoot应用【SpringBootServletInitializer】,启动ioc容器;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值