下面是"Idea安装及涉及springboot详细配置的图文教程"的完整攻略:
Idea安装
- 前往JetBrains官网下载Idea.
- 进入下载文件夹,运行下载的Idea安装包进行安装。
- 安装成功后,启动Idea,进入主界面。
Springboot配置
- 创建Springboot项目:在Idea主界面点击「Create New Project」,选择「Spring Initializer」,勾选相应的依赖包和配置项,点击「Next」,依次输入「Group」、「Artifact」和「Version」等项目信息,点击「Finish」完成项目创建。
- 在项目根目录下创建
src/main/java
目录结构,并在该目录下创建com.example.demo
包(包名可以根据需要修改)。 - 在
com.example.demo
包中创建DemoApplication
类,该类需要添加@SpringBootApplication
注解。
package com.example.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
- 在项目根目录下创建
src/main/resources
目录并添加配置文件application.yaml:
server:
port: 8080
- 启动SpringBoot应用程序。在Idea中,右键点击
DemoApplication.java
文件,选择Run DemoApplication
运行。
示例
示例1:添加依赖包
- 在
pom.xml
文件中添加如下代码,以添加Spring Web
依赖包。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
- 在
com.example.demo
包中创建HelloController
类。
package com.example.demo;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello World!";
}
}
- 启动SpringBoot应用程序,使用浏览器访问http://localhost:8080/hello,即可看到"Hello World!"的输出。
示例2:自定义配置文件
- 在
src/main/resources
目录下新建application-dev.yaml
文件,并添加如下配置:
server:
port: 8080
my:
name: "Bob"
age: 18
- 在
com.example.demo
包下创建ConfigController
类:
package com.example.demo;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class ConfigController {
@Value("${my.name}")
private String name;
@Value("${my.age}")
private int age;
@GetMapping("/config")
public String getConfig() {
return "name: " + name + ", age: " + age;
}
}
- 启动SpringBoot应用程序,使用浏览器访问http://localhost:8080/config,即可看到自定义的配置项输出。
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:Idea安装及涉及springboot详细配置的图文教程 - Python技术站