2018-12-24 16:02
我的意思是前端传过来的是带有时分秒的,但是在后端通过action注入后十分秒丢失了。在DateGetter中有这么一个方法
public java.util.Date get(Action action, Controller c) {
return c.getParaToDate(getParameterName(), getDefaultValue());
}
其中c.getParaToDate 中是用
return new java.text.SimpleDateFormat("yyyy-MM-dd").parse(value.trim());
进行的格式化
我想应该是这个yyyy-MM-dd格式化的问题。
2018-12-24 10:35
@JFinal 其实我的想法是,sql模板还是jfinal的,不用xml,但是dao层借鉴mybatise的,只是定义接口,service层调用接口就能完成对dao的操作。
其中sql模板的namespace为接口的名字,sql名为方法名。
比如
DAO层
interface UserManager{
public List getUserList();
}
sql 模板
#namespace("UserManager")
#sql("getUserList")
......
#end
#end
Service层
@Inject
UserManager userManager;
public xx(){
userManager.getUserList();//完成了对Dao层的查询
}