会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
林荼
认清自己的定位,不好高骛远,正视自己的失败,不盲目追求成功。
首页
新随笔
管理
上一页
1
2
3
4
下一页
2020年8月18日
idea2020.1 Maven项目 包下载不下来或者已经下载了就是飘红
摘要: 0、先在settings.xml加上阿里的镜像在刷新试试 <mirror> <id>aliyunmaven</id> <mirrorOf>*</mirrorOf> <name>阿里云公共仓库</name> <url>https://maven.aliyun.com/repository/public
阅读全文
posted @ 2020-08-18 20:27 林荼
阅读(905)
评论(0)
推荐(0)
2020年8月11日
SweetAlert 弹框之后点击OK执行方法
摘要: swal( '审核通过!', '', 'success' ).then(function () { Return(); })
阅读全文
posted @ 2020-08-11 14:27 林荼
阅读(674)
评论(0)
推荐(0)
Oracle 多条数据转一行逗号隔开
摘要: wm_concat 例: select wm_concat(市) from pa50 where apa132=省
阅读全文
posted @ 2020-08-11 14:25 林荼
阅读(1119)
评论(0)
推荐(0)
Oracle 根据单元格内容不同来判断不同条件
摘要: select xxx,xxx from xxx where decode(AAA,0,BBB,1,CCC)='12345' 如果AAA字段等于0则AAA=''12345' 否则如果BBB字段等于1则BBB='12345' 否则CCC='12345'
阅读全文
posted @ 2020-08-11 14:24 林荼
阅读(550)
评论(0)
推荐(1)
Mybatis-plus 实体类新增属性,使用实体类执行sql操作时忽略该属性 注解
摘要: @TableField(exist = false) 注解加载bean属性上,表示当前属性不是数据库的字段,但在项目中必须使用,这样在新增等使用bean的时候,mybatis-plus就会忽略这个,不会报错
阅读全文
posted @ 2020-08-11 14:17 林荼
阅读(3193)
评论(0)
推荐(0)
Mybatis 中判断参数长度
摘要: <if test="params.length()!=2">
阅读全文
posted @ 2020-08-11 14:16 林荼
阅读(3953)
评论(0)
推荐(0)
Mybatis 循环删除/插入
摘要: <foreach collection="array" open="(" separator="," close=")" index="index" item="item"> #{item} </foreach> item:集合中元素迭代时的别名,该参数为必选。 index:在list和数组中,in
阅读全文
posted @ 2020-08-11 14:15 林荼
阅读(1113)
评论(0)
推荐(0)
获取到jqgrid发送的请求得到的数据
摘要: loadComplete: function (data) { console.log(data); }, 例: var jgGrid = $("#jgTable").jqGrid({ url: "<%=request.getContextPath()%>/Pe03/toDetails_Audit"
阅读全文
posted @ 2020-08-11 14:14 林荼
阅读(2007)
评论(0)
推荐(0)
对象赋值给对象
摘要: import org.springframework.beans.BeanUtils; BeanUtils.copyProperties(源对象, 目标对象); 属性名需要相同
阅读全文
posted @ 2020-08-11 14:10 林荼
阅读(416)
评论(0)
推荐(0)
JAVA 读取excel文件成List<Entity>
摘要: package com.fsinfo.common.utils; import com.fsinfo.modules.enterprise.entity.EnterpriseRecordEntity; import org.apache.commons.io.FileUtils; import or
阅读全文
posted @ 2020-08-11 11:33 林荼
阅读(1637)
评论(2)
推荐(0)
上一页
1
2
3
4
下一页
公告