笔记而已
喜欢喝豆浆的鱼
这个作者很懒,什么都没留下…
展开
-
gitbook 3.2.3及之后流程图解决方案
gitbook 3.2.3及之后流程图解决方案原因:编写公司api接口文档使用gitbook时,想要绘画流程图,结果渲染不出来解决方案:引入插件“plugins”: [“mermaid-gb3”]流程图绘画AB在第2点实际的语法是这样子的这样就????️了...原创 2020-07-14 10:51:38 · 1181 阅读 · 0 评论 -
Spring的pageable对象接收分页参数时的字段与swagger上的不一致
Spring的pageable对象接收分页参数时的字段与swagger上的不一致在写分页接口时用到了pageable对象使用@PageableDefault注解可以达到收到默认分页参数的效果具体使用:sort = "created", direction = Sort.Direction.DESC然后在项目中使用的swagger来构建接口文档,在swagger上显示的pageable参数字段是但是实际接收参数的字段是:/** * Page index parameter name.原创 2020-05-29 14:39:06 · 1900 阅读 · 0 评论 -
Spring中@Validated的使用
Spring中@Validated的使用近期在写接口中,要对同一个bean进行自定义校验这就要用到@Validated这个注解了,使用:在类中定义自定义接口,主要是用于分组来校验不同字段 public interface VerifyOne { } public interface VerifyTwo { }之后将接口引入到定义校验的字段名上 @NotNull(groups = VerifyOne.class) @ApiModelProperty(value =原创 2020-05-27 11:51:34 · 1237 阅读 · 0 评论 -
There is no PasswordEncoder mapped for the id "null"
在spring-security登陆时报错:There is no PasswordEncoder mapped for the id “null”版本问题用spring-security5.0以上报错使用内存获取认证信息 auth .inMemoryAuthentication() .withUser("user").pa...原创 2019-06-11 11:10:49 · 687 阅读 · 0 评论 -
Springboot 集成 Activiti时启动报错!'org.activiti.spring.boot.SecurityAutoConfiguration
Springboot 集成 Activiti时启动报错!org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.activiti.spring.boot.SecurityAutoConfiguration': Initialization of bean failed;...原创 2019-05-17 10:34:56 · 6259 阅读 · 0 评论 -
linux上搭建kafka
首先要拥有java环境可以测试一下是否拥有java -version好啦! 开始下载kafkawget http://mirrors.cnnic.cn/apache/kafka/0.10.0.1/kafka_2.10-0.10.0.1.tgz解压tar -zxvf kafka_2.10-0.10.0.1.tgz解压后其实就可以了感谢并借鉴简书博客:https://...原创 2019-05-08 22:00:28 · 822 阅读 · 0 评论 -
logback中使用MDC自定义日志输出格式
logback-MDC相当于自定义日志格式输出写在过滤器中示例: try { Context context = createContext(request, response); processSysNo(request, response, context); processSeqNo(request, response, context); ...原创 2019-04-29 15:55:23 · 3052 阅读 · 0 评论 -
kafka入门学习使用
安装(mac版)1. 安装命令: brew install kafka出现: zookeeper-server-start /usr/local/etc/kafka/zookeeper.properties & kafka-server-start /usr/local/etc/kafka/server.properties表示:安装成功2. 首先要启动zookeeper(博主...原创 2019-04-23 14:25:26 · 219 阅读 · 0 评论 -
MongoDB入门学习记录
数据库CollectionDocument概念解析术语mongoDb解释说明databasedatabase数据库tablecollection表/集合rowdocument数据/文档columnfield字段/域indexindex索引table joins表连接,MongoDB不支持primary ...原创 2019-04-22 14:59:30 · 215 阅读 · 0 评论 -
logback日志写入kafka
配置kafkakafka: bootstrap-servers: 127.0.0.1:9092 producer: retries: 0 batch-size: 16384 buffer-memory: 33554432 key-serializer: org.apache.kafka.common.serialization.St...原创 2019-04-25 21:58:07 · 1642 阅读 · 0 评论 -
springboot集成Kafka
kafka集成到springboot项目中依赖 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web&l...原创 2019-04-25 21:56:21 · 182 阅读 · 0 评论 -
Java 1.8 stream,filter,map 练习
stream,filter,map 练习public class FunctionTest { private List<Person> people = null; @Before public void before() { Person wu = new Person("小鱼", 18, "男"); Person y...原创 2018-09-01 15:51:32 · 1031 阅读 · 0 评论 -
Springboot自定义注解校验
Springboot自定义注解校验自定义注解类package com.kiet.springboot_project.setting;import com.kiet.springboot_project.configuration.FlagValidatorClass;import javax.validation.Constraint;import javax.vali...原创 2018-08-18 09:49:52 · 3231 阅读 · 0 评论 -
实现Spring+SpringMVC+MyBatis的整合
maven依赖配置<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/m原创 2017-11-06 17:36:27 · 308 阅读 · 0 评论 -
Mybatis-逆向工程实现
generatorConfig.xml(配置文件)<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis原创 2017-11-06 16:49:06 · 445 阅读 · 0 评论