直接跑项目是这个样子。
加上接口,就这样了
项目结构如下:
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如下:
test.java是我写的接口
8 个解决方案
#1
#2
那个补充下 你的注解是@RestController springboot返回json字符串 直接localhost就ok了
#3
额怪我 没仔细看
这样弄 定义端口服务名称
这样弄 定义端口服务名称
#4
直接访问定义的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
有类似日志吗INFO 8548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/springboot/hello],methods=[GET]}" onto
#1
#2
那个补充下 你的注解是@RestController springboot返回json字符串 直接localhost就ok了
#3
额怪我 没仔细看
这样弄 定义端口服务名称
这样弄 定义端口服务名称
#4
直接访问定义的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
有类似日志吗INFO 8548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/springboot/hello],methods=[GET]}" onto