摘要:
在使用WebFlux做练习的时候,提示'producer' type is unknown to ReactiveAdapterRegistry //创建Router路由public RouterFunction<ServerResponse> routerFunction(){ UserServi 阅读全文
摘要:
第一种:public static String getCRC(byte[] bytes){ int CRC = 0x0000ffff; int POLYNOMIAL = 0x0000a001; int i, j; for (i = 0; i < bytes.length; i++) { CRC ^ 阅读全文