缘起
在springboot中默认对jsp运行为生产模式,不允许修改内容保存后立即生效,因此在开发过程需要调试jsp页面每次需要重新启动服务器这样极大影响了我们的效率,为此springboot中提供了可以将默认的生产模式修改为调试模式,改为调试模式后就可以保存立即生效
如何开启调试模式
一、配置开启测试模式
老版本中
代码语言:txt复制server:
port: 8989
jsp-servlet:
init-parameters:
development: true #开启jsp页面的调试模式
新版本中
代码语言:txt复制server:
port: 8081
servlet:
jsp:
init-parameters:
development: true
原文:https://blog.csdn.net/zhang33565417/article/details/97557974