摘要: public String getSignStr(Map<String, String> map) { // 移除值为空的 map.entrySet().removeIf(entry -> Objects.isNull(entry.getValue()) || "".equals(entry.get 阅读全文
posted @ 2022-09-09 16:31 怀梦忆古 阅读(823) 评论(0) 推荐(0)
摘要: 相关工具下载 1、去官网下载 2、链接:https://pan.baidu.com/s/17dCqpoEi8N24FEouDIBlCg 提取码:lala 下载完成之后,将BCFormats.bcpkg导入到程序中即可 阅读全文
posted @ 2022-08-01 11:20 怀梦忆古 阅读(925) 评论(0) 推荐(0)
摘要: import org.springframework.beans.factory.annotation.Value; import java.net.InetAddress; @Componentpublic class ServerConfig { @Value("${server.port}") 阅读全文
posted @ 2021-09-30 16:28 怀梦忆古 阅读(152) 评论(0) 推荐(0)
摘要: 参考原文:https://blog.csdn.net/weixin_38003389/article/details/88663636 1.导入依赖 <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpc 阅读全文
posted @ 2021-08-05 13:57 怀梦忆古 阅读(910) 评论(0) 推荐(0)
摘要: 1.在项目/src/main/resources下新建一个lib文件夹,将所需jar包导入 2.在项目中添加jar包 3.在pom文件中引入依赖 <dependency> <groupId>com.xizang</groupId> <artifactId>bcprov-ext-jdk15on-lu< 阅读全文
posted @ 2021-08-05 13:56 怀梦忆古 阅读(828) 评论(0) 推荐(0)
摘要: 在项目的.idea文件夹下的workspace.xml中找到下面代码 <component name="PropertiesComponent">。。。。。。 </component>添加如下代码 <property name="dynamic.classpath" value="true" /> 阅读全文
posted @ 2021-08-02 10:01 怀梦忆古 阅读(1098) 评论(0) 推荐(0)