摘要:
@Servicepublic class A extends GenericBaseService {@Autowiredprivate B b;}@Servicepublic class B extends GenericBaseService {@Autowiredprivate A a;} s 阅读全文
摘要:
ZipInputStream和ZipOutputStream定义压缩流在日常中经常会使用到zip或rar这样的压缩文件,更加便利了我们日常文件的传输和使用。当然在java中也提供了相应的输入输出流来压缩和解压gzip、zip和rar这样的文件。ZipInputStream“压缩文件输入流”,用于读取 阅读全文
摘要:
自定义注解 import java.lang.annotation.*;@Target({ElementType.FIELD,ElementType.TYPE})@Retention(RetentionPolicy.RUNTIME)@Documentedpublic @interface Check 阅读全文
摘要:
@Configuration、@Service、@Component 都会将修饰的类交给 spring 来管理,但就注解这个层面来说,貌似是没有加载顺序的。默认为 包名+文件名 来判断加载顺序。 如果需要指定加载顺序,可以使用 @DependsOn 注解。 例如: 有这么一个注解,@DependsO 阅读全文
摘要:
参见链接:https://prop.springboot.io/#/5.Data 阅读全文
摘要:
问题: nginx在做转发时会对带“_”下划线的header 内容做限制,导致header头丢失, 解决方法 一: 既然ngnix对下划线不支持,那么不用下划线就是了,比如比如原来”app_version”改成”app-version”就可以了,(难怪一般header的name都是’-‘来拼接的,比 阅读全文
摘要:
mysql 查看被锁住的表 查询是否锁表 show OPEN TABLES where In_use > 0; 查看所有进程 mysql: show processlist; mariabd: show full processlist; 查询到相对应的进程 然后 kill id 杀掉指定mysql 阅读全文