摘要: ```// 构建一个updateWrapper UpdateWrapper updateWrapper = new UpdateWrapper(); updateWrapper.eq("id",id); // 根据id去判断更新那条数据 updateWrapper.set("state", 2); 阅读全文
posted @ 2023-07-01 15:25 菜鸟Axin 阅读(860) 评论(0) 推荐(0)
摘要: idea对于使用的maven具有兼容性问题 如果出现以下错误 java.lang.RuntimeException: org.codehaus.plexus.component.repository.exception.ComponentLookupException: com.google.inj 阅读全文
posted @ 2023-05-18 09:23 菜鸟Axin 阅读(3500) 评论(0) 推荐(0)
摘要: public class Test{ public static void main(String[] args){ System.out.println("Hello,World!"); } } public 包外可调用的(此外还有protected、default、private) class 阅读全文
posted @ 2023-05-16 09:12 菜鸟Axin 阅读(71) 评论(0) 推荐(0)