SpringBoot2创建demo时出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found


SpringBoot2创建demo时出现的常见错误


1.出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found

MAVEN在环境配置中有问题,检查环境配置的路径是否缺失,注意斜杠,分号之类的
在这里插入图片描述
path里面的%Maven_Home%\bin
SpringBoot2创建demo时出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found_第1张图片

2.plugin等插件出现刷新无效,无法下载

plugin一直卡死和报错因为没加版本号
SpringBoot2创建demo时出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found_第2张图片
加入版本号后即可 2.4.2
SpringBoot2创建demo时出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found_第3张图片

3.main方法报错

这是因为main不能直接放在java文件夹下,需要新建一个文件夹即可
SpringBoot2创建demo时出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found_第4张图片

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

public class Mainas {
    public static void main(String[] args) {
        SpringApplication.run(Mainas.class, args);
    }


}

4.页面访问不到

SpringBoot2创建demo时出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found_第5张图片

页面访问不到是因为启动类的位置不对要将 main 放在与Dao等的统计目录下

将 main 放在与Dao等的同级目录下即可
SpringBoot2创建demo时出现错误 Project ‘org.springframework.boot:spring-boot-starter-parent’ not found_第6张图片


```java
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {
    @GetMapping("/hllo")
    @ResponseBody
    public String handle01(){
        return "Hello, Spring Boot 2!";
    }
}

你可能感兴趣的:(spring,boot,web,maven,java,spring)