首页 > 代码库 > springboot

springboot

IDEA创建springBoot

三种启动方式

1.DemoApplication.java启动类 -> 打开 -> 右击 -> run DemoApplication

2.项目根目录 -> mvn spring-boot:run

3.mvn install -> java -jar demo_0.0.1_snapshot.jar

 

springBoot配置文件

application.properties 或者 application.yml  (注意yml键值间要空格)

application.properties

--|server.port=8081

--|server.context-path=/demo

application.yml

--|server

----|port: 8081

----|context-path: /demo

 

springboot