[Logo] The Limax project
  [Search] 搜索   [Recent Topics] 最新主题   [Hottest Topics] 热门主题   [Members]  会员列表   [Groups] 返回首页 
[Register] 会员注册 / 
[Login] 登入 
The latest version limax-5.16-b4623(release on 2019/06/21)  XML
论坛首页 » 系统公告
发表人 内容
Admin



注册时间: 02/09/2015 15:53:01
文章: 52
离线

Current version:5.16-b4623
Release date: 2019/06/21

limax-5.16-b4623 (2019/06/21)
1. Fix the URL special character problem in the http request path. For example, if the file name has a space, when tracking this problem, the java.net.URI has the following semantic flaws:
URI uri0 = URI.create("/abc%20%E9%94%99%E8%AF%AF");
URI uri1 = new URI(null, null, "/abc error", null);
URI uri2 = URI.create(uri1.toASCIIString());
System.out.println(uri0.equals(uri1));
System.out.println(uri0.equals(uri2));
Obviously, uri0, uri1, uri2 all point to the same path, but the first line outputs false and the second line outputs true.
2. Add limax.util.Promise.java to simplify asynchronous process management, consistent with the Promise functionality provided after ES6, as described in the javascript manual.
3. Provide a simplified version of au.
 
论坛首页 » 系统公告
前往:   
Powered by JForum 2.1.9 © JForum Team