摘要:
1.maven依赖 <dependency> <groupId>com.github.penggle</groupId> <artifactId>kaptcha</artifactId> <version>2.3.2</version> </dependency> 2.配置 import com.g 阅读全文
摘要:
package com.jwx.digital.client; import com.jwx.digital.client.pojo.dto.ChildDTO; import org.junit.Test; import java.util.Optional; /** * OptionalTest 阅读全文
摘要:
前几天和其他公司系统做对接,每隔5分钟把数据推到对方系统。 sign生成规则:sm3(年月日+单位编码+byzl@smart) sid=sm4({"depaCode":"4403","sign":"11111","registerDeskAmount":1,"inoculateDeskAmount" 阅读全文
摘要:
applycation.yml中加上 version :@project.version@ 阅读全文
摘要:
一:安装ActiveMQ 官网下载,解压 二:创建springboot项目,引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-activemq</artifact 阅读全文
摘要:
之前项目测试发现了bug,看日志没有任何异常信息,通过曾童鞋提供的远程debug,很好地定位到了问题,先记录一下,特此感谢一下曾童鞋 https://www.cnblogs.com/zeng1994/ 一、启动jar包时添加点参数 在启动远程的jar包时添加启动参数 1 ‐Xdebug ‐Xrunj 阅读全文
摘要:
package com.jwx.commons.core.util; import javax.crypto.Cipher;import javax.crypto.spec.SecretKeySpec;import java.util.logging.Level;import java.util.l 阅读全文
摘要:
使用jdbc连接oracle时url有三种格式 格式一: Oracle JDBC Thin using an SID 这种格式是最简单也是用得最多的。 你的oracle的sid可以通过一下指令获得: 测试代码: 格式二: Oracle JDBC Thin using a ServiceName 注意 阅读全文
摘要:
配置如下: server { listen 80; server_name localhost; return 301 https://localhost$request_uri; charset UTF-8; location / { root html; # 这个是指定一个项目所在目录 inde 阅读全文
摘要:
判断字段是否含有逗号,有的话在字段前后加双引号即可 阅读全文