美文网首页
开发常用操作

开发常用操作

作者: 小箭子 | 来源:发表于2016-12-06 14:28 被阅读0次
Mapper常用操作
  1. 使用include代替大量重复的条件判断代码:[XXXQueryInBoXXXQueryInOtherBoSortBizBaseObject],如:
<!-- 后台考试管理分页查询,带排序规则 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常用操作
  1. 获取当前用户ID
AppContext.getCurrentUserId();
  1. 获取当前requestresponse
AppContext.getRequest();
AppContext.getResponse();
  1. 从Spring中获取Bean
ExamUser examUser = AppContext.getBean(ExamUser.class);
  1. 获取application.yml中的配置
 @Value("${subSystem:}")
 private String subSystem;
    
 @Value("${subNode:'默认值'}")
 private String subNode;
Controller层常用操作

职能:

  1. 数据校验
  2. 数据封装
  3. 将合法的数据传递到Service层,并接收Service层返回结果
  4. 封装响应数据
  5. 返回响应数据
  1. 常用注解解析:
@CheckToken : 用于token验证,防止CSRF攻击,也有防止重复提交的作用
@ResponseBody : 用于返回Json数据
@Authorization : 用于权限验证,说明调用该方法需要验证权限
@LogMark(memo="添加保存") : 用于记录日志,可以用于修饰方法,也可用于修饰类,若类和方法上均有修饰,则系统会以方法上的为准
@RequestMapping(value = "/insert") : 用于URL映射
  1. 合理使用RestControllerResponseBody
  • 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");
        }
}
```
  1. 文件用MultipartFileMultipartFile[]接收:
    @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文档
  2. 调用Service层需使用getSerive()
  3. Restful URL传参Demo:
    @RequestMapping(value = "/delete/{id:[\\d]+}")
    @ResponseBody
    public AjaxResponse delete(@PathVariable Integer id){
        return super.delete(id);
    }
    
    
  4. 不要轻易将带有“,”符号的参数传到Controller,详见:原因
HTML常用操作
  1. 页面读取枚举
${resourceBundle("Role."+item.role)}
  1. 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}"/>

常用配置

  1. 删除约束配置(component.deleteRestrictXml配置)
  2. 在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>
  1. 在application.yml中加入如下配置:
component:
         deleteRestrictXml: spring-relationRef.xml
  1. 后台参数验证配置,详见:基于Hibernate Validate的后端验证
  2. 可在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> 

相关文章

  • 开发工具类 FileUtils

    包含常用的文件操作,辅助开发

  • 开发常用操作

    Mapper常用操作 使用include代替大量重复的条件判断代码:[XXXQueryInBo、XXXQueryI...

  • Toast的用法和源码解析

    Toast是我们在App开发过程常用的提示用户进行了一些操作又不影响用户正常操作的一个Android开发常用的控件...

  • Android 通用工具库,常用的文件操作,bitmap操作,数

    DevUtils Android开发工具类,常用的文件操作,bitmap操作,数据库操作,Toast显示,Dial...

  • iOS开发常用操作

    1.xcode启用http访问,iOS9以上在info.plist添加rowApp Transport Secur...

  • UINavigationController setViewCo

    在iOS开发中,UINavigationController是很常用的Controller,对它的一般操作就像操作...

  • 🍏常用 git 操作指北

    ? 常用 git 操作指南 ? git图形界面操作软件 ? 开发流程 git clone 拉取项目代码,不必多说 ...

  • win 10 常用快捷键

    win 10 系统常用的快捷操作记录备忘,常用的复制,粘贴不再记录; 首先为防止与开发软件冲突,作为开发环境应关闭...

  • Java8时间常用操作

    一、Java8时间常用操作 前言:时间操作在开发中经常被使用到,最近项目是用Java8开发,因此总结一下时间操作常...

  • Git团队开发常用操作

    团队开发常用操作 NO1 项目构建者 (1)在远程仓库创建仓库(2)将伙伴添加到仓库合作者中(无先后要求)(2)c...

网友评论

      本文标题:开发常用操作

      本文链接:https://www.haomeiwen.com/subject/uylrmttx.html