时间:2022-08-03 12:21:26 | 栏目:JAVA代码 | 点击:次
使用server.context-path
server.context-path=/api
使用server.servlet.context-path
server.servlet.context-path=/api
一共有两种方法。
创建一个config包,然后在包内创建MyMvcConfig类。
import org.springframework.context.annotation.Configuration; import org.springframework.core.Ordered; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @Configuration public class MyMvcConfig extends WebMvcConfigurerAdapter { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/").setViewName("index"); registry.setOrder(Ordered.HIGHEST_PRECEDENCE); super.addViewControllers(registry); } }
注意:如果用这个方法html页面需要在static下,不然会出现404错误,找不到页面。
在controller层中创建一个IndexController类
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; @Controller public class IndexController { @RequestMapping({"/","/index"}) public String index(){ return "index"; } }