我正在研究Spring Data REST,特别是HAL浏览器。我一直关注http://docs.spring.io/spring-data/rest/docs/current/reference/html/#_the_hal_browser的文档。
当我导航到http://localhost:8080
时,它会将我(按预期方式)重定向到http://localhost:8080/browser/index.html#/
,并显示HAL浏览器。我的问题是,它不是显示有关我的API根目录的详细信息,而是试图显示自己。例如,响应正文部分中包含HAL浏览器的HTML
,而不是我的API中的JSON
。
我不确定我的设置是否做错了 - 它非常香草(下面的完整源代码清单),所以我们会欣赏正确方向的任何指针!
为了完整性 - 如果我在资源管理器文本字段中输入/users
并选择Go !,那么我会按预期看到我的API的详细信息。此外,如果我删除HAL浏览器依赖项并浏览到http://localhost:8080
,那么我会按预期看到我的API的根目录。
的pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>sample</groupId>
<artifactId>restsample</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>My application</name>
<description>My application description</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.0.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-browser</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
Application.java
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
User.java
@Data
@Entity
public class User {
@Id
@GeneratedValue
private Long id;
@NotBlank
@Size(min = 1, max = 100)
@Column(unique = true)
private String username;
}
UserRepository.java
@RepositoryRestResource
public interface UserRepository extends CrudRepository<User, Long> {
User save(User user);
}
答案 0 :(得分:1)
尝试从
更改依赖项<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-browser</artifactId>
</dependency>
到
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-explorer</artifactId>
</dependency>
然后转到:http://localhost:8080
答案 1 :(得分:0)
一个简单的解决方案是复制hal-browser文件,例如从repo中复制:
中的https://github.com/mikekelly/hal-browser src/main/resources/static/
你的Spring Boot应用程序。
答案 2 :(得分:0)
从原始问题的评论中获取信息,答案如下:
a-better-oliver:
If you ask for HTML, then you get HTML
我:
I should have used "Accept: application/hal+json", which does indeed return the correct data.
答案 3 :(得分:0)
作为在同一页面中建议的解决方案之一,例如复制HAL浏览器文件及所有文件。我不想在使用REST-HAL-Browser时增加任何复杂性。
我做了一个小型的研发工作,知道如何使用Springboot应用程序配置REST-HAL-Browser以及如何使用它?以简单易用的方式,使每个人都可以使用步骤即使返回数据,我也得到了JSON格式,而不是传统的HTML格式。
在我的应用程序中,我对REST-HAL-browser使用了SpringBoot-2.x版本及以下依赖项。
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-browser</artifactId>
</dependency>
Look at hear了解如何配置和使用。
注意:如果您的方法返回了一些内容,最好将Producer类型与path一起配置为 application / json 。
答案 4 :(得分:0)
如果您使用的是Spring 2.2.X,请仅与REST HAL浏览器一起使用,只需转到:http://localhost:8080/而不是http://localhost:8080/browser。
谢谢
答案 5 :(得分:0)
对于未来的读者:根据 Spring-Io GitHub 问题,HAL 浏览器在较新版本的 Spring Boot 中弃用。
如果您在使用 Hal 浏览器时遇到问题,请尝试改用 Hal Explorer: https://mvnrepository.com/artifact/org.springframework.data/spring-data-rest-hal-explorer
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-rest-hal-explorer</artifactId>
</dependency>
可以在此 GitHub 问题中找到更多信息: Spring Boot 2.2 apps should use spring-data-rest-hal-explorer rather than spring-data-rest-hal-browser