摘要:
注意:该方法只能对抽象类使用,比如:public abstract class Xxx<T>,否则会报错。 代码如下: // 获取当前new的对象的泛型的父类类型 ParameterizedType pt = (ParameterizedType) this.getClass().getGeneri 阅读全文
摘要:
代码: select *, group_concat( round_index order by field(round_index, 3,4,1,2)) from xxx 阅读全文
摘要:
解决方式:在接口中定义方法传入参数、返回参数为对一个的类型,mapstruct的实现类会自动调用该方法。 代码: @Mapper(builder = @Builder(disableBuilder = true)) public interface StlmtCheckingResultConver 阅读全文
摘要:
期望效果:在xml里面写sql时自动追加deleted逻辑删除字段。比如SELECT count(0) FROM aaa。 执行时最终为 SELECT count(0) FROM aaa WHERE deleted = '0' 实现代码如下: @Beanpublic TenantLineInnerI 阅读全文
摘要:
代码: <!DOCTYPE html> <html> <head> <style> .reversed-text { transform: rotateY(180deg); } </style> </head> <body> <p class="reversed-text">这是需要反转的文本。</ 阅读全文
摘要:
代码如下: public static <T,K> List<T> listToTree(List<T> list,Predicate<T> isTop,Function<? super T, ? extends K> getId , Function<? super T, ? extends K> 阅读全文
摘要:
// ==UserScript== // @name url自动追加端口 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You 阅读全文
摘要:
linux根据进程关键搜索字批量结束进程(替换xxxxxx为自己想要查的关键字进程) ps -ef|grep xxxxxx|grep -v grep|awk '{print "kill -9 " $2}' |sh 阅读全文
摘要:
#1:(注意!)使用Git bash here执行: #2:查看git每个人当日提交代码行数(修改--after="2023-11-15 00:00:00"日期为今天 ,可以查询当日所有人提交代码量),--before="2099-12-31 23:59:59" 为截止时间 git log --fo 阅读全文
摘要:
#为了解决本地打包上传到服务器时耗时过久,直接用服务器自动更新代码并打包 #使用 sh linux-dabao-auto.sh 即可 linux-dabao-1-git-pull.sh #更新代码cd /home/app/szzy/yjdaxt/git/sz-yjda/home/app/szzy/y 阅读全文