每次尝试时我都在使用spring boot restful API
if(userRepository.findByEmail != null) Throw new RuntimeException("This email already exists");
我没有收到消息,我只在邮递员中收到一条带有空消息的错误消息,而是仅在spring boot命令内部收到我在RuntimeException中传递的消息。
答案 0 :(得分:2)
他们在Spring 2.3.0中对此进行了更改,要通过邮递员查看错误消息,您需要在属性文件(application.properties)中添加server.error.include-message=always