摘要:
直接用这个地址下载pycharm:https://download-cdn.jetbrains.com.cn/python/pycharm-professional-2024.3.1.1.exe 阅读全文
摘要:
# 查询 logstash ps -ef|grep logstash # elastic ps -ef|grep elastic # kibana ps -ef|grep kibana # 关闭服务,根据线程id进行kill kill -9 {#线程id} # 进入目录 cd /opt/elk7.1 阅读全文
摘要:
首先要找到正确的配置文件 java-app.yml input { tcp { port => 1001 } } filter { json { source => "message" } grok { match => ["message","(\[%{DATA}\] )?(trace_id=%{ 阅读全文
摘要:
import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import java.util.Base64; public class AE 阅读全文
摘要:
项目启动的要加上配置文件的扫描路径 import com.example.config.ObsProperties; import org.mybatis.spring.annotation.MapperScan; import org.springframework.boot.SpringAppl 阅读全文
摘要:
文章引用:https://www.cnblogs.com/chenggan/p/16008226.html application程序入口也要加上扫描 import org.mybatis.spring.annotation.MapperScan; @MapperScan("com.lexin.ap 阅读全文
摘要:
1. 报错信息 系统错误,错误信息:org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'defaultTx' is expected to be of type 'org.springframew 阅读全文
摘要:
1.增加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 2.程序入口初始化Bean im 阅读全文
摘要:
1. 问题 2. 原因 org.apache.juli.logging.DirectJDKLog:log|Error parsing HTTP request header Note: further occurrences of HTTP header parsing errors will be 阅读全文
摘要:
问题1 org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'jobConfParser' defined in class path resource [com/cxytian 阅读全文