如何在spring boot中设置rest的基url?

我试图将mvc和rest混合在一个单一的spring引导项目中。

我想在一个地方设置所有其余控制器(例如example.com/api)的基本路径(我不想用@RequestMapping('api/products'),而只是用注释每个控制器@RequestMapping('/products')

Mvc控制器应可通过example.com/whatever访问

可能吗?

(我不使用spring数据休息,只是spring mvc)

回答:

使用Spring Boot 1.2+(<2.0),只需在application.properties中使用一个属性即可:

spring.data.rest.basePath=/api

对于2.x,请使用

server.servlet.context-path=/api

以上是 如何在spring boot中设置rest的基url? 的全部内容, 来源链接: utcz.com/qa/408349.html

回到顶部