关于springboot正常启动,路由却无法正常访问的问题

  1. pom的配置,
<parent>
    <groupId>org.springframework.boot</groupId>  
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.9.RELEASE</version>
  </parent>
<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

2.helloApplication.java


@SpringBootApplication
@Configuration
@Controller
public class helloApplication {

    @RequestMapping("test")
    @ResponseBody
    public String hello() {
        return "hello world!!!";
    }
    public static void main(String[] args) throws Exception {

        System.out.println("springboot-------------------开始启动");
        SpringApplication app=new SpringApplication(helloApplication.class);
        app.setBannerMode(Banner.Mode.OFF);

        app.run(args);
        //SpringApplication.run(TestController.class, args);
        System.out.println("springboot-------------------启动完成");
    }
}

3.运行结果
这里写图片描述
这里会看到路由会配置成功

4.出现404无法访问的问题
这里主要有三种情况

  1. *Application.java和你的@controller注解类,不在同一级目录下,@SpringBootApplication默认的扫描位置就是Application所在的同级目录和子目录
  2. 注解的导入的类不对,这个自行百度,一般不会出现
  3. 这里是我遇到的情况,springboot正常启动,但是路由配置没有生效,最后搞了好久才发现是springboot的版本太低<version>1.5.9.RELEASE</version>升级了一下版本,问题完美解决,希望能给大家提供点建议。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值