@@ -128,10 +128,10 @@ public class BlogInterceptor implements Interceptor {
```
## 更多支持
-- JFinal 官方网站 [http://www.jfinal.com](http://www.jfinal.com/)
+- JFinal 官方网站 [https://jfinal.com](https://jfinal.com/)
- 扫码关注官方微信公众号,第一时间尊享最新动向
-
+
@@ -9,7 +9,7 @@
<name>JFinal</name>
<description>JFinal is a simple, light, rapid,independent, extensible Java WEB + ORM framework. The feature of JFinal looks like ruby on rails especially ActiveRecord.</description>
- <url>http://www.jfinal.com</url>
+ <url>https://jfinal.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -379,7 +379,7 @@ public class MetaBuilder {
* 3:如果number的长度在1 <= n <= 9
* number(n) 对应 java.lang.Integer 类型
*
- * 社区分享:《Oracle NUMBER 类型映射改进》http://www.jfinal.com/share/1145
+ * 社区分享:《Oracle NUMBER 类型映射改进》https://jfinal.com/share/1145
*/
protected String handleJavaType(String typeStr, ResultSetMetaData rsmd, int column) throws SQLException {
// 当前实现只处理 Oracle
@@ -57,7 +57,7 @@ public class RedirectRender extends Render {
public String buildFinalUrl() {
String ret;
- // 如果一个url为/login/connect?goto=http://www.jfinal.com,则有错误
+ // 如果一个url为/login/connect?goto=https://jfinal.com,则有错误
// ^((https|http|ftp|rtsp|mms)?://)$ ==> indexOf 取值为 (3, 5)
if (contextPath != null && (url.indexOf("://") == -1 || url.indexOf("://") > 5)) {
ret = contextPath + url;
@@ -60,7 +60,7 @@ public class VelocityRender extends Render {
String webPath = servletContext.getRealPath("/");
if (webPath == null) {
try {
- // 支持 weblogic: http://www.jfinal.com/feedback/1994
+ // 支持 weblogic: https://jfinal.com/feedback/1994
webPath = servletContext.getResource("/").getPath();
} catch (java.net.MalformedURLException e) {
com.jfinal.kit.LogKit.error(e.getMessage(), e);
@@ -73,7 +73,7 @@ public class Assign extends Expr {
/**
* 获取 assign 表达式左侧标识符 id
* 在自定义指令中得到 id 值,可以得知该赋值表达式是针对哪个变量在操作,有助于扩展
- * 需求来源:http://www.jfinal.com/share/379
+ * 需求来源:https://jfinal.com/share/379
public String getId() {
return id;