上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 1.在File→Settings→Plugins 安装完,重新启动idea 阅读全文
posted @ 2020-11-03 22:29 Amy清风 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 1.pom依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文
posted @ 2020-11-03 22:03 Amy清风 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.重点是引入task的schema: xmlns:task="http://www.springframework.org/schema/task" http://www.springframework.org/schema/task http://www.springframework.org/ 阅读全文
posted @ 2020-10-10 21:25 Amy清风 阅读(365) 评论(0) 推荐(1) 编辑
摘要: 1.mysql登录 连接认证基本语法: mysql -h主机地址 -P端口 -u用户名 -p密码 示例:mysql -h localhost -u root -pwang 注意事项 1、 通常端口都可以默认:mysql默认的端口通常都是3306 2、 密码的输入可以先输入-p,直接换行,然后再以密文 阅读全文
posted @ 2020-09-13 20:28 Amy清风 阅读(136) 评论(0) 推荐(0) 编辑
摘要: pom.xml文件加入依赖 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> </dependency> idea安装lombok插件 点击File→Settings→Plugins 常 阅读全文
posted @ 2020-09-10 15:22 Amy清风 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 1.加入通用mapper依赖 <!--通用Mapper --> <dependency> <groupId>tk.mybatis</groupId> <artifactId>mapper</artifactId> <version>4.1.4</version> </dependency> 完整的p 阅读全文
posted @ 2020-09-09 20:53 Amy清风 阅读(581) 评论(0) 推荐(0) 编辑
摘要: 1.String类型转换成包装类 Double aDouble = Double.valueOf("12.66");//返回Double包装类型 double aDouble1 = Double.parseDouble("12.66");//返回double基本数据类型 Long aLong = L 阅读全文
posted @ 2020-09-09 19:43 Amy清风 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 该方法是将数组转化为list 有以下几点需要注意: (1)该方法不适用于基本数据类型(byte,short,int,long,float,double,boolean) (2)该方法将数组与列表链接起来,当更新其中之一时,另一个自动更新 (3)不支持add和remove方法 public stati 阅读全文
posted @ 2020-09-09 19:17 Amy清风 阅读(430) 评论(0) 推荐(0) 编辑
摘要: 1.BCryptPasswordEncoder使用之前要加入依赖 如果是SSM加入的依赖 <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-config</artifact 阅读全文
posted @ 2020-09-09 19:06 Amy清风 阅读(2820) 评论(0) 推荐(0) 编辑
摘要: 1.mapper.xml 传入的参数可以是List也可以是Array数组,ParameterType都写List就可以 collection="array"也可以写成collection=“lsit” <!--批量删除--> <delete id="deleteMenuIds" parameterT 阅读全文
posted @ 2020-09-09 19:01 Amy清风 阅读(2959) 评论(0) 推荐(2) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页