用eclipse 写的,发现不用加basePath ,自身就会从项目的根目录下开始寻找,加了basePath 反而路径有错,环境:
tomcat9.x
eclipse: Oxygen.2 Release (4.7.2)
不知道是不是设置了什么
tomcat9.x
eclipse: Oxygen.2 Release (4.7.2)
不知道是不是设置了什么
2017-12-22
感觉 多表这块我会直接返回map集合,替换javabean resultMap,个人感觉项目开发过程中修改字段太多了。如果改一个字段就去 修改javabean 和resultMap 太麻烦了。虽然有点违背OR思想
2017-12-18
老师这种可能更简单点哟!
if(command != null && !"".equals(command.trim())){stringBuilder.append(" and COMMAND='").append(command).append("'");
} if(description != null && !"".equals(description.trim())){
stringBuilder.append(" and DESCRIPTION like '%").append(description).append("%'");
}
if(command != null && !"".equals(command.trim())){stringBuilder.append(" and COMMAND='").append(command).append("'");
} if(description != null && !"".equals(description.trim())){
stringBuilder.append(" and DESCRIPTION like '%").append(description).append("%'");
}