背景
automation test springboot 测试服务 接口返回的 内容是封装过的
jenkins job 只是通过python request 去发送测试请求去测试
jenkins console 里只会有该http 接口response 的 返回信息比如
{
response_code: "13000",
response_message: "Failed by ...",
label:"component"
}
原因
automation test springboot 测试服务代码中没有try catch 住对应的exception
加了 对应的catch 后解决
改进
springboot 全局exception 抓去,而不是每个逻辑去try catch