2017-04-14 17:07

@JFinal 问一下:如何在jsp中用jstl使用Record

2017-04-13 17:58

@JFinal解决了,是表单name属性问题。

2017-04-13 17:54

@JFinal getFiles()不是返回的是List集合吗,我之前用List uploadFiles = getFiles()循环只能重命名一个,其他就不行了

2017-04-13 17:23

@JFinal 解决了,数据库版本问题。上传文件时怎样重命名,使用file的renameto方法只能操作单文件,多个就不行了

2017-04-12 11:50

@JFinal 重新安装的eclipse,连不上mysql,出异常:java.math.BigInteger cannot be cast to java.lang.Long 怎么回事?

2017-02-22 19:54

@JFinal 请教一下sql防注入问题:比如我 想查找 :select * from user where id like ? and roleId like ? and name like ?
出现错误

2017-02-21 09:32

@JFinal isSuccess = UserRole.dao.findByUserId(user.getId()).set("roleId", roleId).update();就这一句

2017-02-20 21:59

@JFinal userRole表中有userID与roleId两个字段,我先用userId查询出UserRole对象,再设置set("roleId",roleId),最后UserRole对象调用update(),报sql错误:“You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'where `roleId` = 36 and `userId` = 8' at line 1”

2017-02-20 21:55

@JFinal 问一下,update方法必须 表中存在id才能更新吗

2017-02-10 10:54

@JFinal 只创建了customer表,网站上的demo,我也试了,也是同一个错误

2017-02-10 09:35

@JFinal 我创建的customer表中有主键啊,我就想动态生成相应字段的get与set方法,怎么弄啊