您的当前位置:首页springboot (一) hello world

springboot (一) hello world

2024-12-14 来源:哗拓教育

新建Spring Initializr项

2. 填写项目信息,项目名称,包名,组织公司名,打包方式,JDK编译版本。

3. 选择项目使用技术。

4. 确认项目名称和工程路径。

5. 完成项目的创建。项目架构如图:

6. 创建控制层,编写逻辑,测试运行。

@RestController

publicclassIndexController{

@RequestMapping("/")

String index() {

return"Hello World!";

}

}

显示全文