- 博客(13)
- 收藏
- 关注

原创 pip install of python
if you want to “pip install lxml” in python.but you will see:```pythonERROR: Exception:Traceback (most recent call last): File "c:\deletewheniiever\python\lib\site-packages\pip\_vendor\urllib3\...
2020-02-18 13:44:05
165
转载 Java中Stream(流式编程)难得好文收藏一下
一、使用Stream的好处Stream是Java 8提供的新功能,是对集合(Collection)对象功能的增强,能对集合对象进行各种非常便利、高效的聚合操作(aggregate operation),或者大批量数据操作 (bulk data operation)。 与Lambda 表达式结合,也可以提高编程效率、简洁性和程序可读性。同时它提供串行和并行两种模式进行汇聚操作,并发模式能够充分利用多核处理器的优势,使用 fork/join 并行方式来拆分任务和加速处理过程。通常编写并行代码很难而且容易出错,
2021-10-28 15:20:34
509
原创 Redis锁
package com.luo.spring_vue.controller;import org.springframework.data.redis.core.RedisTemplate;import org.springframework.web.bind.annotation.RestController;import javax.annotation.Resource;/** * @author * * @desc ... * * @date 2020-12-20 11
2020-12-20 15:46:22
132
转载 parameterType和resultType
parameterType:指定输入参数类型,mybatis通过ognl从输入对象中获取参数值拼接在sql中。resultType:指定输出结果类型,mybatis将sql查询结果的一行记录数据映射为resultType指定类型的对象。如果有多条数据,则分别进行映射,并把对象放到容器List中https://blog.youkuaiyun.com/m1234ilu/article/details/83759493...
2020-08-07 11:44:24
229
原创 JAVA基础[1](初)
数据类型java是一门强类型语言,不同与灵活的goprimitive type(1) ex. int long float(2) Booleanreference type(1) class(2) interface(3) array随记1: int i = 10;//10进制,10 int i1 = 010;//8进制,8 int i2 = 0x10;//16进制,16 int i3 = 0b10;//2进制,2.
2020-06-02 01:57:50
141
原创 Intellij Idea: Thymeleaf 命名空间th报错
#将html的标签修改为<html xmlns:th="http://www.thymeleaf.org">...</html>
2020-02-26 15:40:49
1147
转载 de-normalized and normalized(范式和反范式)
原文链接:https://blog.youkuaiyun.com/weixin_39682384/article/details/79600123https://blog.youkuaiyun.com/qq_33290787/article/details/51956532
2020-02-18 13:52:36
349
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人