Mapper常用操作
- 使用
include
代替大量重复的条件判断代码:[XXXQueryInBo
、XXXQueryInOtherBo
、Sort
、BizBaseObject
],如:
<!-- 后台考试管理分页查询,带排序规则 zhaoj 2016年12月12日 14:19:25-->
<select id="relationQueryByPageWithSort" resultMap="result3">
SELECT
EXAM_SCOPE.*,EXAM_COURSE.NAME AS COURSE_NAME,EXAM_TYPE.NAME AS TYPE_NAME,EXAM_POLICY.TYPE AS POLICY_TYPE
FROM
EXAM_SCOPE EXAM_SCOPE,
EXAM_POLICY EXAM_POLICY,
EXAM_COURSE EXAM_COURSE,
EXAM_TYPE EXAM_TYPE
<where>
EXAM_COURSE.ID = EXAM_SCOPE.COURSE_ID
AND EXAM_SCOPE.ID = EXAM_POLICY.SCOPE_ID
AND EXAM_TYPE.ID = EXAM_SCOPE.TYPE_ID
<include refid="ExamScopeQueryInBo" />
<include refid="ExamCourse.ExamCourseQueryInOtherBo" />
<include refid="ExamPolicy.ExamPolicyQueryInOtherBo" />
<include refid="ExamType.ExamTypeQueryInOtherBo" />
</where>
<include refid="Sort.orderBy" />
</select>
Java常用操作
- 获取当前用户ID
AppContext.getCurrentUserId();
- 获取当前
request
、response
AppContext.getRequest();
AppContext.getResponse();
- 从Spring中获取Bean
ExamUser examUser = AppContext.getBean(ExamUser.class);
- 获取application.yml中的配置
@Value("${subSystem:}")
private String subSystem;
@Value("${subNode:'默认值'}")
private String subNode;
Controller层常用操作
职能:
- 数据校验
- 数据封装
- 将合法的数据传递到
Service
层,并接收Service
层返回结果- 封装响应数据
- 返回响应数据
- 常用注解解析:
@CheckToken : 用于token验证,防止CSRF攻击,也有防止重复提交的作用
@ResponseBody : 用于返回Json数据
@Authorization : 用于权限验证,说明调用该方法需要验证权限
@LogMark(memo="添加保存") : 用于记录日志,可以用于修饰方法,也可用于修饰类,若类和方法上均有修饰,则系统会以方法上的为准
@RequestMapping(value = "/insert") : 用于URL映射
- 合理使用
RestController
和ResponseBody
:
-
RestController
用于修饰Controller
类,意味着整个Controller
的所有接口,返回的均为JSON数据 -
ResponseBody
用于修饰Method
方法,意味着方法返回的是JSON数据 - 例如,下列两个例子达到的效果是一样的:
``` java
@RestController
@RequestMapping("/mobile")
public class MobileController {
@RequestMapping("/test")
public Object test() {
return new String("test");
}
}
@RequestMapping("/mobile")
public class MobileController {
@RequestMapping("/test")
@ResponseBody
public Object test() {
return new String("test");
}
}
```
- 文件用
MultipartFile
和MultipartFile[]
接收:
关于@RequestMapping(value = "/upload") public ModelAndView upload(MultipartFile file) throws Exception{ //判空 if(!file.isEmpty()){ //存储路径,如:D:\test\demo.txt String path = "D:\\test\\"+file.getOriginalFilename(); //使用apache.common提供的工具类写入磁盘 FileOutputStream fos = FileUtils.openOutputStream(new File(path)); IOUtils.copy(file.getInputStream(), fos); } return new ModelAndView(); }
MultipartFile
的更多操作,详见:官方API文档 - 调用Service层需使用
getSerive()
- Restful URL传参Demo:
@RequestMapping(value = "/delete/{id:[\\d]+}") @ResponseBody public AjaxResponse delete(@PathVariable Integer id){ return super.delete(id); }
- 不要轻易将带有“,”符号的参数传到Controller,详见:原因
HTML常用操作
- 页面读取枚举
${resourceBundle("Role."+item.role)}
- Freemarker在页面上的常用操作:
//格式化数字输出
<#setting number_format="#">
//获取枚举国际化propertis文件中键为“Bool.YES”的值
${resourceBundle("Bool.YES")}
//---------------------------------------宏及常用宏的使用---------------------------------------
//引入宏
<#import "/common/tag.htm" as tag>
//截取字符串
<@tag.substr content="${item.examQuestion.content!}
//根据枚举生成select下拉框
<@enum.select id="bo.result" type="com.vnetoo.common.enums.Bool" header="true" default=""/>
//根据枚举生成radio单选框
<@enum.radio id="bo.type" type="com.vnetoo.common.enums.Bool" default="${bo.type}"/>
//根据枚举生成checkbox复选框
<@enum.checkbox id="bo.type" type="com.vnetoo.common.enums.Bool" default="${bo.type}"/>
常用配置
- 删除约束配置(component.deleteRestrictXml配置)
- 在src/main/resources目录下新建约束XML文件,如:spring-relationRef.xml(文件名可自定义,格式需是xml),中间表不可配置中间约束。
<?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean class="com.vnetoo.common.bo.BizRelationObject">
<property name="id" value="1001" />
<property name="operationObjectName" value="com.vnetoo.vcomponent.exam.admin.examKeyPoint.bo.ExamKeyPoint" />
<property name="refObjectName" value="com.vnetoo.vcomponent.exam.admin.examQuestion.bo.ExamQuestion" />
<property name="refField" value="keyPointId" />
<property name="refDaoName" value="examQuestionDaoImpl" />
<property name="msg" value="数据被题目引用,不能删除!" />
<property name="deleteFlag" value="false" />
</bean>
<bean class="com.vnetoo.common.bo.BizRelationObject">
<property name="id" value="1002" />
<property name="operationObjectName" value="com.vnetoo.vcomponent.exam.admin.examCourse.bo.ExamCourse" />
<property name="refObjectName" value="com.vnetoo.vcomponent.exam.admin.examKeyPoint.bo.ExamKeyPoint" />
<property name="refField" value="courseId" />
<property name="refDaoName" value="examKeyPointDaoImpl" />
<property name="msg" value="数据被知识点引用,不能删除!" />
<property name="deleteFlag" value="false" />
</bean>
</beans>
- 在application.yml中加入如下配置:
component:
deleteRestrictXml: spring-relationRef.xml
- 后台参数验证配置,详见:基于Hibernate Validate的后端验证
- 可在spring.xml中加载外部配置文件:
<bean id="propertyConfigurer" class="org.springframework.context.support.PropertySourcesPlaceholderConfigurer">
<!-- 忽略未找到的配置文件路径 -->
<property name="ignoreResourceNotFound" value="true" />
<!-- file: 物理文件路径 可以使用相对路径 同名配置项后面覆盖前面 -->
<property name="locations">
<list>
<value>classpath:config.properties</value>
<value>file:config.properties</value>
<value>classpath:cas.properties</value>
<value>file:cas.properties</value>
<value>classpath:memcache.properties</value>
<value>file:memcache.properties</value>
</list>
</property>
</bean>