spring Boot
Spring Boot 是启动 Spring 项目的最快、最流行的方式。
代码package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; @SpringBootApplication @RestController public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } @GetMapping("/hello") public String hello(@RequestParam(value = "name", defaultValue = "World") String name) { return String.format("Hello %s!", name); } }
这是在 Spring Boot 中创建一个简单的“Hello World”Web 服务所需的全部代码。
查看Java环境命令:cmd 里输入Java -version
出现问题,解析特别慢
解决方法:
原因:maven会使用远程仓库来加载依赖,是一个国外的网站,所以会很慢。应该使用阿里云的镜像,这样速度会提升很多。
步骤:1.右击pom.xml,选择"maven"->“create settings.xml”,创建了之后该图标会显示成"open settings.xml",点击它。
接着在setting.xml中添加镜像。
镜像代码:
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
最后,重启idea,右击pom.xml选择reImport即可。
问题解决参考:(15条消息) 使用IDEA创建springboot依赖下载很慢,解决方法_springboot下载依赖特别慢_专吃有AB血型的公老鼠的博客-CSDN博客