自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(20)
  • 收藏
  • 关注

原创 如何杀掉占用端口号

如何杀掉占用端口号

2022-08-23 14:31:33 186

原创 手动回滚的

如果trycatch需要手动回滚

2022-06-17 09:57:44 201

原创 resultmap复杂查询

association<resultmap id = “xxx" type = "videoorder"><id colum= "id" property="id"/><result column = "user_id" property = "userid"><result column = "cdeatr_time" property = "createtime"><result column = "video_id" pr.

2021-11-30 16:18:18 683

原创 resultmap

<resultmap id = "xxx"type = "实体类(net.lrd.video)"><id column = "id" javatype = "id"><result column = "create_time"javatype = "ceatime"></resultmap>column 就是表的某列。 javatype就是实体类的属性。...

2021-11-30 15:16:31 98

原创 sql片段使用

自定义查询字段重复使用<sql id = "xxx">id,title,price</sql>select <inclode refid="xxx"/>inclode 字段就可以

2021-11-30 15:09:03 232 1

原创 mybatis常见配置

configuration(配置) properties(属性) settings(设置) typeAliases(类型别名) typeHandlers(类型处理器) objectFactory(对象⼯⼚) plugins(插件,少⽤) environments(环境配置,不配多环境,基本在Spring⾥⾯配置) environment(环境变量) transactionManager(事务管理器) dataSource(数据源) databaseIdProvid

2021-11-30 10:53:41 668

原创 mybatis 如果有>或<需要处理

delete from video where title <![cdata[ > ]]> #{time} , price <![cdata[ < ]] #{price}<![cdata[ > ]]> 用这个来代替 大于号。就不会和html标签冲突

2021-11-30 10:47:50 87

原创 批量更新使用trim

update video<trim ptrfix = "set" suffixoverrides = ","><if test = "title != null" >title = #{title,jdbctype = varchar} , </if><if test = "time != null" >title = #{time,jdbctype = timestamp} , </if><trim>suffix.

2021-11-30 10:29:20 316

原创 mybati如果出现:无效的列类型

mybati如果出现:无效的列类型,可能是缺少jdbcType只有当字段可为null时才需要jdbcType如果有两个以上入参加@param

2021-11-26 16:42:25 193

原创 mybatis如何获取自增后的主键

比如:<insert id = "add" parameterType = “net.lrd.video”> userGeneratedKeys ="true" keyProperty = "id" key Column = "id">insert into 'video' ('title' , 'summary' , 'cover_img' ,'price' , 'create_time')values(#{title,jdbcType = VARCHAR} ,#{sum

2021-11-26 16:36:58 156

原创 BETWEEN…AND 筛选日期

betweento_char(to_date(#{startDate},'yyyy-mm-dd'),'yyyy-mm-dd') andto_char(to_date(#{endDate},'yyyy-mm-dd'),'yyyy-mm-dd')在什么什么之间

2021-08-30 10:25:27 411

转载 bootStarp设置表格单元格属性

根据单元格或者行内其他单元格的内容,给该单元格设置一定的css样式columns: [{ field: 'index', title: '序号', align:"center", formatter:function(value, row, index){ return index+1; }, cellStyle:{ css:{"background-color":"red"} }...

2021-07-21 15:29:24 181

原创 流程图各个图形都代表什么

开始/结束 - 椭圆表示处理过程 - 矩形判断 - 菱形

2021-07-21 11:32:03 10838

转载 easyui按钮可选不可选,按钮显示隐藏

1.第一种document.getElementById("delete").style.display=''; //标签显示 document.getElementById("delete").style.display='none'; //标签隐藏<a id="btn_save" href="#" class="easyui-linkbutton" iconCls="icon-ok">确定</a>按钮的隐藏2.第二种 Jquery的具体写法:$("#bt...

2021-07-19 23:55:27 1617

原创 oracle

多条件or会有很多重复数据 如果用in函数就不会有大量重复数据ps:不知道为啥or a.pol_state = '00' or a.pol_state = '01' or a.pol_state = '02' or a.pol_state = '12'用a.pol_state in('00','01','02','12') 就会正常,所以以后并且的条件就要用到in...

2021-07-16 14:32:40 100

原创 ModelAndView后台传参

@RequestMapping("/initnonRealTimeModify")public ModelAndView initnonRealTimeModify(HttpServletRequest request) { ModelAndView model = new ModelAndView(); String contId = request.getParameter("contId"); model.setViewName("/nonrealtimemodify/jsp/n.

2021-07-14 16:56:54 542

原创 mybatis

如果要取两个表的id,直接在后面加别名,然后resultMap中 <result column="id" jdbcType="VARCHAR" property="别名" />就好了

2021-07-13 15:41:46 75

原创 easyUI控制table显隐方法

在jsp页面table标签中加入 id='table1' class="easyui-panel" closed = "true"之后用.panel就可以实现EU中table的显隐 $("#table1").panel('close') $("#table1").panel('open')

2021-07-13 14:24:03 670

转载 spring mvc 常用前后台数据交互的注解(转载)

关于spring mvc前后台交互的一些注解Url模板在请求路径中添加变量,使用{}。通过@pathVariable注解在方法参数中,获得url中的变量值。@pathVariable(“url中的变量名”)参数。适用于Restful风格架构,注入bean当在类中需要引用另一个类对象的时候,需要注入。@Resource和@Autowired可以实现注入。@Autowired默认是根据bytpye类型注入对象。@Resource默认是根据byN..

2021-07-13 13:10:35 587

原创 小岱知识积累

用@Transactional注解@Transactional(rollbackFor = Exception.class)在错误后加,抛出异常throw new YBException(RetInfoUtil.buildRetinfo("xxx"));这样出现异常后就会回滚

2021-07-09 16:25:13 95

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除