Spring Boot 使用IntelliJ IDEA创建一个web开发实例

Posted 猪脚踏浪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 使用IntelliJ IDEA创建一个web开发实例相关的知识,希望对你有一定的参考价值。

属性配置

1.配置application.properties文件

配置web访问端口和context path

server.port = 8081
server.servlet.context-path = /demo

 运行

 

2. 用application.yml进行配置

 

server:
  port : 8082
  servlet:
    context-path: /demo2

启动,访问

 

注意,application.properties 比application.yml的优先级高

 

以上是关于Spring Boot 使用IntelliJ IDEA创建一个web开发实例的主要内容,如果未能解决你的问题,请参考以下文章

使用 IntelliJ 部署启用嵌入式 tomcat 的 spring-boot 应用程序

使用 Spring Boot + IntelliJ 进行开发的最佳方式

Spring Cloud Spring Boot mybatis分布式微服务云架构使用Intellij中的Spring Initializr来快速构建Spring Boot/Cloud工程

Spring Cloud Spring Boot mybatis分布式微服务云架构使用Intellij中的Spring Initializr来快速构建Spring Boot/Cloud工程

如何在 IDEA Intellij 上使用 Spring-boot 进行自动重新加载

Springboot:使用Intellij中的Spring Initializr来快速构建Spring Boot工程