美文网首页
四、Web开发(11)

四、Web开发(11)

作者: 吴国友 | 来源:发表于2018-05-02 20:07 被阅读10次

3)、替换为其他嵌入式Servlet容器

默认支持:

Tomcat(默认使用)

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
   引入web模块默认就是使用嵌入式的Tomcat作为Servlet容器;
</dependency>

Jetty

<!-- 引入web模块 -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
   <exclusions>
      <exclusion>
         <artifactId>spring-boot-starter-tomcat</artifactId>
         <groupId>org.springframework.boot</groupId>
      </exclusion>
   </exclusions>
</dependency>

<!--引入其他的Servlet容器-->
<dependency>
   <artifactId>spring-boot-starter-jetty</artifactId>
   <groupId>org.springframework.boot</groupId>
</dependency>

Undertow

<!-- 引入web模块 -->
<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-web</artifactId>
   <exclusions>
      <exclusion>
         <artifactId>spring-boot-starter-tomcat</artifactId>
         <groupId>org.springframework.boot</groupId>
      </exclusion>
   </exclusions>
</dependency>

<!--引入其他的Servlet容器-->
<dependency>
   <artifactId>spring-boot-starter-undertow</artifactId>
   <groupId>org.springframework.boot</groupId>
</dependency>

相关文章

  • 四、Web开发(11)

    3)、替换为其他嵌入式Servlet容器 默认支持: Tomcat(默认使用) Jetty Undertow

  • 2021 年 11大强大的 Golang Web 开发框架

    2021 年 大强大的 Golang Web 开发框架 最佳 Golang 网络框架列表11 个用于 Web 应用...

  • 微信web的开发总结

    title: 微信web的开发总结date: 2018-06-21 11:18:21tags: web 最近写了一...

  • 四、Web开发(1)

    1、简介 使用SpringBoot; 1)、创建SpringBoot应用,选中我们需要的模块; 2)、Spring...

  • 四、Web开发(2)

    3、模板引擎 JSP、Velocity、Freemarker、Thymeleaf SpringBoot推荐的Thy...

  • 四、Web开发(3)

    4、SpringMVC自动配置 https://docs.spring.io/spring-boot/docs/1...

  • 四、Web开发(4)

    6、RestfulCRUD 1)、默认访问首页 2)、国际化 1)、编写国际化配置文件; 2)、使用Resourc...

  • 四、Web开发(5)

    3)、登陆 开发期间模板引擎页面修改以后,要实时生效 1)、禁用模板引擎的缓存 2)、页面修改完成以后ctrl+f...

  • 四、Web开发(8)

    7、错误处理机制 1)、SpringBoot默认的错误处理机制 默认效果: ​ 1)、浏览器,返回一个...

  • 四、Web开发(6)

    5)、CRUD-员工列表 实验要求: 1)、RestfulCRUD:CRUD满足Rest风格; URI: /资源...

网友评论

      本文标题:四、Web开发(11)

      本文链接:https://www.haomeiwen.com/subject/zzthrftx.html