springboot访问不到接口,报404,跪求大神指点

时间:2022-01-25 20:07:58
        网上很多解决方案都是说springboot的启动方法要放在外面的包,我的位置就是在外面的包,但还是扫描不到接口,我在启动方法里面写接口都访问不到,都是报404,感觉不是浏览器的问题,我还是试了在不同浏览器上跑,都是404的错,请大神给小白指点一下,感激不敬啊!!!

直接跑项目是这个样子。
springboot访问不到接口,报404,跪求大神指点

加上接口,就这样了

springboot访问不到接口,报404,跪求大神指点

项目结构如下:
springboot访问不到接口,报404,跪求大神指点

pom.xml如下:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>Second</groupId>
  <artifactId>xhu-second</artifactId>
  <packaging>war</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>xhu-second Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
  </dependencies>
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.2.4.RELEASE</version>
  </parent>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
    </plugins>
    <finalName>xhu-second</finalName>
  </build>
</project>


Application.java如下:
springboot访问不到接口,报404,跪求大神指点

test.java是我写的接口
springboot访问不到接口,报404,跪求大神指点

8 个解决方案

#1


该回复于2017-11-12 08:34:05被管理员删除

#2


那个补充下 你的注解是@RestController springboot返回json字符串 直接localhost就ok了 

#3


额怪我 没仔细看
springboot访问不到接口,报404,跪求大神指点
springboot访问不到接口,报404,跪求大神指点

这样弄 定义端口服务名称

#4


springboot访问不到接口,报404,跪求大神指点
直接访问定义的uri就变这样了,这个页面是什么?

#5


localhost:8080/springhello             

#6


你端口改了吗?配置文件有配?

#7


RequestMapping(value="/hello")

#8


直接跑项目是什么意思
有类似日志吗INFO 8548 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping :  Mapped "{[/springboot/hello],methods=[GET]}" onto 

#1


该回复于2017-11-12 08:34:05被管理员删除

#2


那个补充下 你的注解是@RestController springboot返回json字符串 直接localhost就ok了 

#3


额怪我 没仔细看
springboot访问不到接口,报404,跪求大神指点
springboot访问不到接口,报404,跪求大神指点

这样弄 定义端口服务名称

#4


springboot访问不到接口,报404,跪求大神指点
直接访问定义的uri就变这样了,这个页面是什么?

#5


localhost:8080/springhello             

#6


你端口改了吗?配置文件有配?

#7


RequestMapping(value="/hello")

#8


直接跑项目是什么意思
有类似日志吗INFO 8548 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping :  Mapped "{[/springboot/hello],methods=[GET]}" onto