mybatis-plus中判断list为空
使用list.size()>0判断
代码示例:
<if test="list.size()>0">
and t.group in
<foreach collection="list" item="group" open="(" separator="," close=")">
#{oGroup}
</foreach>
</if>
idea快捷键
- Ctrl+Shift+U 大小写切换
- Ctrl+H 类的继承关系
- Ctrl+Alt+U 查看UML类图
- Ctrl+Alt+L 代码格式化
前后端传json字符串
前端传json字符串(序列化) 后端获取到字符串转json(反序列化)时如果字符串中包含字符串则要转义
例如
{"list":"[["N0000025","N0000026","N0000141"]]"} 要转成
{"list":"[["N0000025","N0000026","N0000141"]]"}传到后端
使用JSON.stringify(list)转义
根据骨架创建maven项目失败,setting.xml配置
找到maven目录下的config下的setting.xml文件加入阿里的镜像
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<!--或-->
<mirror>
<id>aliyun-public</id>
<mirrorOf>*</mirrorOf>
<name>aliyun public</name>
<url>https://maven.aliyun.com/repository/public</url>
</mirror>
修改仓库目录地址
<localRepository>D:\Devtools\maven\repository</localRepository>
网友评论