上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the thr 阅读全文
posted @ 2019-05-19 17:01 赤云封天 阅读(83) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex 阅读全文
posted @ 2019-05-19 15:15 赤云封天 阅读(110) 评论(0) 推荐(0) 编辑
摘要: Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the s 阅读全文
posted @ 2019-05-19 10:35 赤云封天 阅读(124) 评论(0) 推荐(0) 编辑
摘要: Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order. Example 1: Example 2: 阅读全文
posted @ 2019-05-19 07:48 赤云封天 阅读(104) 评论(0) 推荐(0) 编辑
摘要: ORM(object relation mapping)对象(Javabean)与数据库中的关系记录映射的机制。 hibernate缺点: 优于SQL都是框架生成的,所以无法优化SQL; 对于某些复杂查询,是需要自定义的,框架力不从心。(hibernate的HQL支持自定义SQL) 全映射。如只想查 阅读全文
posted @ 2019-04-12 15:20 赤云封天 阅读(199) 评论(0) 推荐(0) 编辑
摘要: what is mybatis? MyBatis 是一款优秀的持久层框架,它支持定制化 SQL、存储过程以及高级映射。MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集。MyBatis 可以使用简单的 XML 或注解来配置和映射原生类型、接口和 Java 的 POJO(Pl 阅读全文
posted @ 2019-04-11 12:04 赤云封天 阅读(135) 评论(0) 推荐(0) 编辑
摘要: spring(一) https://www.cnblogs.com/yfs123456/p/10666804.html spring(二) https://www.cnblogs.com/yfs123456/p/10667885.html spring(三) https://www.cnblogs. 阅读全文
posted @ 2019-04-08 12:01 赤云封天 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 原教程: https://www.w3cschool.cn/wkspring/ 模型封装了应用程序数据,并且通常它们由 POJO 组成。 视图主要用于呈现模型数据,并且通常它生成客户端的浏览器可以解释的 HTML 输出。 控制器主要用于处理用户请求,并且构建合适的模型并将其传递到视图呈现。 模型封装 阅读全文
posted @ 2019-04-08 11:55 赤云封天 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 原教程: https://www.w3cschool.cn/wkspring/ spring编程式事务管理 org.springframework.transaction.PlatformTransactionManager 接口(提交或回滚事务) TransactionDefinition 接口( 阅读全文
posted @ 2019-04-08 10:23 赤云封天 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 原教程: https://www.w3cschool.cn/wkspring/ spring JDBC框架 以查询student表为例 创建StudentDao接口,封装有关数据库的操作(增删改查以及设置DataSource)【此处DataSource是依赖注入的】 创建spring bean类(S 阅读全文
posted @ 2019-04-08 08:29 赤云封天 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页