2018-06-13 10:52

jboot 现在就海哥自己做,然后jboot.io 也是刚刚上线不久。作者也要工作也要养家糊口,做人做事心怀感恩。

2017-11-23 16:31

@JFinal 3.3 还没有接触,如果这样子话 看来要改造一下啦 - -

2017-07-31 13:38

getParaValues(字段);

2017-07-25 18:17

异常很清晰了,需要先用 PropKit.use("xxx") 指定你要加载的配置文件呢

2017-07-12 14:20

https://git.oschina.net/log4j/LMS/tree/master/lms-common/src/main/java/io/github/wx/common/redis

2017-07-10 14:17

我可不可以这么理解 这个cacheName就是相当于 这个连接的 别名?连接由(IP + port + database)决定。

2017-06-15 23:51

@JFinal 嗯,看来只能使用 for 循环啦

2017-06-15 12:54

@小胖 这种形式也是存在 这个问题的

2017-05-20 11:39

这个 XSS 的 club

2017-05-20 11:29

你看一下文档的 #for 指令 用法类似于JSTL

2017-05-13 20:08

@chenmopinglou 直接调用 mq的JAVA API

2017-04-22 12:40

修改 JFinalStatViewServlet 里面service 。

2017-04-12 00:48

感谢楼主提供方法
我现在是这么解决
fileName = fileName.replace("classpath:/", "");
StringBuilder out = new StringBuilder();
InputStream inputStream = com.jfinal.template.FileStringSource.class.getClassLoader().getResourceAsStream(fileName);
byte[] b = new byte[4096];
try {
for (int n; (n = inputStream.read(b)) != -1;) {
out.append(new String(b, 0, n));
}
} catch (IOException e) {
throw new RuntimeException("Error loading sql file.", e);
} finally {
if (inputStream != null) try {inputStream.close();} catch (IOException e) {LogKit.error(e.getMessage(), e);}
}
return out;