mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
替换过期的key
This commit is contained in:
parent
c538014042
commit
7ddcc117fd
@ -3,7 +3,7 @@
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
|
||||
# 5.8.6.M1 (2022-08-29)
|
||||
# 5.8.6.M1 (2022-08-30)
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 CollUtil新增addIfAbsent方法(pr#750@Gitee)
|
||||
@ -17,6 +17,7 @@
|
||||
* 【core 】 NumberUtil.roundStr() 修改为使用toPlainString(pr#775@Gitee)
|
||||
* 【extra 】 QrCodeUtil新增SVG格式、Ascii Art字符画格式(pr#763@Gitee)
|
||||
* 【jwt 】 JWTUtil的parseToken增加空值异常抛出(issue#I5OCQB@Gitee)
|
||||
* 【extra 】 resource.loader等过期参数替换(issue#2571@Github)
|
||||
*
|
||||
### 🐞Bug修复
|
||||
* 【http 】 修复https下可能的Patch、Get请求失效问题(issue#I3Z3DH@Gitee)
|
||||
|
@ -8,7 +8,7 @@ import org.apache.velocity.app.Velocity;
|
||||
|
||||
/**
|
||||
* Velocity模板引擎<br>
|
||||
* 见:http://velocity.apache.org/
|
||||
* 见:<a href="http://velocity.apache.org/">http://velocity.apache.org/</a>
|
||||
*
|
||||
* @author looly
|
||||
*/
|
||||
@ -132,13 +132,13 @@ public class VelocityEngine implements TemplateEngine {
|
||||
}
|
||||
break;
|
||||
case WEB_ROOT:
|
||||
ve.setProperty(Velocity.RESOURCE_LOADER, "webapp");
|
||||
ve.setProperty(Velocity.RESOURCE_LOADERS, "webapp");
|
||||
ve.setProperty("webapp.resource.loader.class", "org.apache.velocity.tools.view.servlet.WebappLoader");
|
||||
ve.setProperty("webapp.resource.loader.path", StrUtil.nullToDefault(config.getPath(), StrUtil.SLASH));
|
||||
break;
|
||||
case STRING:
|
||||
ve.setProperty(Velocity.RESOURCE_LOADER, "str");
|
||||
ve.setProperty("str.resource.loader.class", SimpleStringResourceLoader.class.getName());
|
||||
ve.setProperty(Velocity.RESOURCE_LOADERS, "str");
|
||||
ve.setProperty("resource.loader.str.class", SimpleStringResourceLoader.class.getName());
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user