2017-03-22 59 views
0

我有一個春天開機寧靜的應用程序,但如果我去到以下網址:刪除默認春天開機歡迎頁面

http://localhost:8080 

http://localhost:8080/profile 

然後我看到一些默認的春天開機JSON如下所示:

{ 


    "_links" : { 


    "customerEntities" : { 

    "href" : "http://localhost:8080/customerEntities{?page,size,sort}", 
    "templated" : true 
    }, 
    "profile" : { 
    "href" : "http://localhost:8080/profile" 
    } 
} 
} 

我該如何禁用此功能?我不想讓這些頁面變形

+0

你有依賴關係'彈簧引導啓動-data-rest'?如果是這樣,這種依賴性提供了這些響應。您可以刪除依賴項以刪除這些響應。 – dunni

回答

1

因爲Spring HATEOAS和Spring Data JPA將它們自動組合在一起。

這種依賴使這些變化

<dependency> 
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-starter-data-rest</artifactId> 
</dependency> 

所以檢查這需要你對你的項目或刪除的依賴,並檢查

More