有人可以告诉我为什么我的电子邮件地址被削减了..为了测试,我们使用电子邮件地址,如test@aol.com.dev
我有以下代码:
@RequestMapping(value = "/profilenumber/{email}", method = RequestMethod.GET)
@ResponseBody
public ResponseEntity<String> getProfileNumber(@PathVariable String email, ModelMap model) throws ResourceNotFoundException
{
logger.debug("Looking for Profile Number for: " + email);
}
我的 logger.debug 的输出是test@aol.com我们正在丢失我们需要的.dev。有人可以告诉我为什么我们会失去它
Java 在我的 WebConfig 中有这个,但它没有帮助
@Bean
public DefaultAnnotationHandlerMapping defaultAnnotationHandlerMapping ()
{
DefaultAnnotationHandlerMapping b = new DefaultAnnotationHandlerMapping();
b.setUseDefaultSuffixPattern(false);
return b;
}