码迷,mamicode.com
首页 > 其他好文 > 详细

代码模板

时间:2020-05-11 19:04:24      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:false   mysq   string   char   rac   test   cti   ams   lse   

1.mapper:空间的引入

<!DOCTYPE mapper PUBLIC

        "-//mybatis.org//DTD com.example.Mapper 3.0//EN"

        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

 

 

 2.js中空的判断

//空判断方法
function StringEmpty(v2){
    if(v2 == "" || v2 == null || v2== undefined||v2.replace(/(^s*)|(s*$)/g, "")==0){
        return true;
    }
}
//非空判断
function isNotEmpty(v2){
    if(v2 != "" && v2 != null && v2!= undefined&&v2.replace(/(^s*)|(s*$)/g, "")!=0){
        return true;
    }
}

 

3.#pagehelper分页插件配置
pagehelper.helperDialect=mysql
pagehelper.reasonable=true
pagehelper.supportMethodsArguments=true
pagehelper.params=count=countSql

 

4.MySQLurl配置:

 jdbc:mysql://localhost:3306/testall?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

 

代码模板

标签:false   mysq   string   char   rac   test   cti   ams   lse   

原文地址:https://www.cnblogs.com/7sevenxl/p/12870549.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!