mirror of
https://gitee.com/dromara/sa-token.git
synced 2025-04-05 17:37:53 +08:00
修复SaServletFilter
异常函数中无法自定义Content-Type
的问题
This commit is contained in:
parent
ac94dbb70c
commit
6eec264e70
@ -167,7 +167,9 @@ public class SaServletFilter implements Filter {
|
||||
String resultString = String.valueOf(result);
|
||||
|
||||
// 2. 写入输出流
|
||||
response.setContentType("text/plain; charset=utf-8");
|
||||
if(response.getContentType() == null) {
|
||||
response.setContentType("text/plain; charset=utf-8");
|
||||
}
|
||||
response.getWriter().print(resultString);
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user