Alex_TD

上一页 1 ··· 3 4 5 6 7 8 9 10 下一页

2020年2月17日

Mybaits-----Limit分页

摘要: 1.分页显示: select * from user limit 当前页=pagesize*(i-1),页面数据条数; 总页数=(数据总条数+pagesize-1)/pagesize 或者 (int) Math.ceil((double)总条数/pagesize) 2.rowbounds 3.前端实 阅读全文

posted @ 2020-02-17 17:44 Alex_TD 阅读(85) 评论(0) 推荐(0) 编辑
Mybatis---log4j

摘要: 1.日志配置:<settings> <setting name="logImpl" value="STDOUT_LOGGING"/>//自带日志 <setting name="logImpl" value="LOG4J"/>//第三方日志</settings>2.配置文件:log4j.propert 阅读全文

posted @ 2020-02-17 17:24 Alex_TD 阅读(111) 评论(0) 推荐(0) 编辑
Mybatis----ResultMap 结果集

摘要: 1.实体类和数据库列的名称不一致的解决方式:(注:mybaitis的类型处理器,java类型和数据库类型转换问题?) 1.数据库查询语句:给列起别名(和实体类属性名一致) 2.Mapper配置中:ResultMap: 结果集映射:解决实体类和数据库列之间的映射关系 <resultMap id="Us 阅读全文

posted @ 2020-02-17 14:39 Alex_TD 阅读(357) 评论(0) 推荐(0) 编辑
Mybatis--生命周期作用域

摘要: 1.生命周期和作用域: 1.SqlSessionFactoryBuilder 创建完成 SqlSessionFactory 就可以释放了 2.SqlSessionFactory: 相当于保存数据库会话的线程池。 一旦创建就应该在程序的运行期间一致存在。 不得丢弃和创建另一个实例。 使用单例或者静态单 阅读全文

posted @ 2020-02-17 13:53 Alex_TD 阅读(114) 评论(0) 推荐(0) 编辑
Mybatis---注意事项及配置类属性

摘要: 1.注意事项:Mapper 里字符串用""双引号, select * from table where concat(col1,col2) like "%"#{col3}"%"; select count(id) from table; 1.实体类的属性名和数据库字段一致 2.绑定映射resourc 阅读全文

posted @ 2020-02-17 13:19 Alex_TD 阅读(299) 评论(0) 推荐(0) 编辑

2020年2月15日

Mybatis---1

摘要: 一。 创建数据库: 1. create database if not exists `mybatis` default character set utf8 default collate utf8_general_ci; 2. show create database mybatis; 3. u 阅读全文

posted @ 2020-02-15 19:53 Alex_TD 阅读(159) 评论(0) 推荐(0) 编辑

2020年2月14日

Mysql----JDBC 连接池 DBCP C3P0

摘要: 1.数据库连接池: 连接池容量 最大连接数 最小连接数 排队机制 超时 1.实现DataSource 接口 2.DBCP //1.配置 Properties文件,2.创建连接池工厂方法。3.操作数据库一样。 半自动? DataSource datesourc= BasicDataSourceFact 阅读全文

posted @ 2020-02-14 19:44 Alex_TD 阅读(96) 评论(0) 推荐(0) 编辑
Mysql----Java JDBC

摘要: 1. import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class Demo{ public stati 阅读全文

posted @ 2020-02-14 18:36 Alex_TD 阅读(94) 评论(0) 推荐(0) 编辑

2020年2月13日

Mysql--- 权限管理和备份

摘要: 1.权限管理:root 创建用户: create user chen identified by '123456 修改密码: update mysql.user set authentication_string='123456' where Host='localhost' and User='r 阅读全文

posted @ 2020-02-13 21:35 Alex_TD 阅读(171) 评论(0) 推荐(0) 编辑
Mysql---9 分页和排序

摘要: 1.分页 limit offset 和排序 order by desc 降序 asc 升序 select a.1,2,3,4 from a inner join b on a.1=b.1 inner join c on c.2=b.2 where 3='xxx' order by 4 desc (a 阅读全文

posted @ 2020-02-13 18:40 Alex_TD 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页