我需要调用这个方法时,网址不包含字符“API”。我是新的Spring,我不知道我是否可以这样做。该方法是
@Controller
public class RouterController {
//here I need to call method when the url doesn't contains the word "api"
@RequestMapping({"/api*"})
public String app() {
...
}
}
有人能帮我吗?
1条答案
按热度按时间j13ufse21#
您可以尝试使用:^(?!API$).*$