我们大部分的项目都是 Spring Boot 的项目,它集成了很多工具,所以我不需要再加入其他的类。
比如求 MD5 的值,我就可以用 org.springframework.util.DigestUtils
1 | public abstract class DigestUtils |
md5DigestAsHex
1 | public static String md5DigestAsHex(InputStream inputStream) |
通过 IntelliJ IDEA 新建一个 Maven Springboot 项目,建立好之后,发现生成代码的包无法引入,代码已经提示红色标记错误。
点击按钮 Reimport All Maven Projects 或执行 maven clean, package 这类命令,都会提示如下错误:
Error running 'demo [validate]': Cannot find JRE '1.8'. You can specify JRE to run maven goals in Settings | Maven | Runner
按上述提示,进入 Settings | Maven | Runner,把正常的 JRE 环境选中即可。
上面是设置当前项目的,如果要设置以后所有新建的项目,则需要关闭所有项目后,再进入 Preferences
1 | DataFrame.apply(func, axis=0, broadcast=None, raw=False, reduce=None, result_type=None, args=(), **kwds) |
func : Function to be applied to each column or row. This function accepts a series and returns a series.
我们往往对 axis 搞不太清楚。
axis : Axis along which the function is applied in dataframe. Default value 0.
args : tuple / list of arguments to passed to function.