- 博客(10)
- 收藏
- 关注
原创 Java8 方法积累
Java8 方法积累removeIf()// 移除集合中字段全为NULL的无意义对象list.removeIf(filter -> filter.getProperty1() == null && filter.getProperty2() == null);stream().filter()// 获取List中属性Property值为checkString的第一个元素List<Entity> list;Optional<Entity>
2021-11-06 15:45:06
138
原创 java.util.LinkedHashMap cannot be cast to Entity
java.util.LinkedHashMap cannot be cast to Entity原代码public void saveData(Map<String, Object> record) { List<Entity> saveList = (List<Entity>) record.get("saveList"); for (Entity entity : saveList) { System.out.print(entit
2021-11-06 13:31:03
487
原创 使用RestTemplate 远程调用,传递文件类型参数
标题 使用RestTemplate 远程调用,传递文件类型参数1.类私有属性声明@Value("${server.ipPort}")private String ipPort;@Resourceprivate RestTemplate restTemplate;2.方法实现
2021-11-06 10:33:22
1020
3
原创 springboot
springboot一:springboot项目的搭建步骤IDEA——>maven.quickstartspringboot提供了一个父类,父类中注册了很多内容,首先需要继承它的pom文件(继承的是pom里的一些相关配置)<!-- 继承父类 --><parent> <groupId>org.springframework.boot<...
2019-12-10 19:41:47
807
原创 在IDEA中创建maven项目进行SSM整合
在IDEA中创建maven项目进行SSM整合首先使用IDEA创建一个Maven项目Create New Project —— Maven —— 选中 Create from archetype —— maven-archetype-webapp 在pom.xml中配置所需要的jar包在src下新建resources(标记为Resources root)、te...
2019-11-16 16:14:26
236
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人