摘要:
1. Caused by: org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set 在配置文件中添加: 2. Caused by 阅读全文
摘要:
被测试类: 设计测试数据: 输入 预计输出 2018 1 31 2018 2 28 2018 3 31 2018 4 30 2018 5 31 2018 6 30 2018 7 31 2018 8 31 2018 9 30 2018 10 31 2018 11 30 2018 12 31 2018 阅读全文
摘要:
http://junit.sourceforge.net/javadoc/org/junit/Assert.html 使用: 新建测试类: 在预测试的类上点击右键 >NEW >Junit Test Case 阅读全文
摘要:
阅读全文
摘要:
1 package util; 2 3 import java.sql.DriverManager; 4 import java.sql.SQLException; 5 6 import com.mysql.jdbc.*; 7 8 9 10 public class DBConfgier { 11 12 ... 阅读全文
摘要:
1. 查询单表全部 select* from 数据表名; 2. 查询单表中一个或者多个字段 select 字段1,字段2 from 数据表名; 3. 查询单表中的指定信息 select* from 数据表名 where 属性= .....; 查询所有红色的产品号 4. 带有 IN 关键字的查询 Se 阅读全文
摘要:
给定一个整数数组 nums ,找到一个具有最大和的连续子数组(子数组最少包含一个元素),返回其最大和。 示例: 进阶: 如果你已经实现复杂度为 O(n) 的解法,尝试使用更为精妙的分治法求解。 O(n)复杂度: 阅读全文
摘要:
在WebContent下新建index.jsp 要点: 1. 表单 method 属性应该设置为 POST 方法,不能使用 GET 方法。 2. 表单 enctype 属性应该设置为 multipart/form-data,只有使用enctype="multipart/form-data",表单才会 阅读全文
摘要:
1 3 4 5 6 7 数据管理 8 13 74 134 135 136 137 138 139 选项 140 编号 141 封面 142 购书人 ... 阅读全文
摘要:
https://docs.spring.io/spring-boot/docs/current/reference/html/howto-data-access.html 配置数据源启动器。 阅读全文