如果我做:
__repr__
Controller获取test @ email而不是test@email.com。如何将带点的URL传递给@Autowired
protected MockMvc mockMvc;
mockMvc.perform(delete("/example/test@email.com");
?
答案 0 :(得分:1)
您必须扩展控制器方法以接受点。
E.g。你可以这样写:
@RequestMapping(value = "/delete/{email:.*}",
method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)