[未解决] jpa 怎么在 mysql 中保存带毫秒的日期 2019年4月18日 | Leave a comment 问题: jpa 怎么在 mysql 中保存带毫秒的日期 有说是因为 mysql &… Read More
spring openfeign auth demo 2019年4月16日 | Leave a comment 问题: openfeign 调用接口需要注意 解决; @FeignClient(name = &… Read More
java http get request with body 2019年4月11日 | Leave a comment 问题: get 时需要 reqeustBody 传 json 解决: final var res… Read More
java scriptEngine 如何使用 java package 2019年4月9日 | Leave a comment 解决: Packages.* var op2 = new Packages.thelook.da… Read More
docker tomcat 更改为默认中文 locale 2019年3月15日 | Leave a comment 问题: docker run tomcat 是英文的 解决: -e … Read More
spring boot redis demo 2019年3月15日 | Leave a comment 解决: @Bean public CommandLineRunner r(StringRedisTemplate redis) { return (argv) -> { final var key = "tfh_l1"; for (int i = 0; i < 60; i++) { final var op = redis.opsForList(); op.rightPush(key, "i:" + i); redis.expire(key, 2, TimeUnit.MINUTES); Thread.sleep(1000); } }; } 123456789101112 @Bean public CommandLineRunner r(StringRedisTemplate redis) { return (argv) -> { final var key = "tfh_l1"; for (int i = 0; i < 60; i++) { final var op = redis.opsForList(); op.rightPush(key, "i:" + i); redis.expire(key, 2, TimeUnit.MINUTES); Thread.sleep(1000); } }; } application.yaml [… Read More
spring boot + swagger fox 配置 2019年3月12日 | Leave a comment 问题: 解决: [crayon-67462dd47666685905… Read More