上一页 1 2 3 4 5 6 7 8 9 ··· 30 下一页
摘要: 原来的pom文件里有这样的结构: <build> <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) --> <plugins> <! 阅读全文
posted @ 2021-11-11 08:17 弓呆的胖次 阅读(422) 评论(0) 推荐(1) 编辑
摘要: 生产环境里可以用jar直接运行,也可以打包成war包部署到tomcat里。 https://blog.csdn.net/qq_33512843/article/details/80951741 阅读全文
posted @ 2021-11-10 16:20 弓呆的胖次 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 我在跟着一个教程学github社交登录实验,需要用到springSocial,但是在导入包的时候,发现出现以下错误,错误没截全。。。没办法了 Could not transfer artifact org.springframework.social:spring-social-github: 出错 阅读全文
posted @ 2021-10-29 14:36 弓呆的胖次 阅读(711) 评论(0) 推荐(0) 编辑
摘要: 亲测可用 https://blog.csdn.net/m0_37619183/article/details/81873465 阅读全文
posted @ 2021-10-29 09:06 弓呆的胖次 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 在mac端,打开终端,输入 mysql -uroot -p 之后,如果出现commend not found之类的错误,可以配置一下alies 1.首先,终端中输入 vim ~/.bashrc 加上以下两行代码: alias mysql=/usr/local/mysql/bin/mysql alia 阅读全文
posted @ 2021-10-29 08:53 弓呆的胖次 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 原始博客地址:https://www.xjyili.cn/2547.html 问题描述今天用IntelliJ IDEA提交完代码后,偶然之间发现没有push到Github上,再仔细一看,之前好几次的push都是失败的(呜呜,我的Contribution) 。报错都是一样的: Push failed: 阅读全文
posted @ 2021-10-25 16:13 弓呆的胖次 阅读(147) 评论(2) 推荐(1) 编辑
摘要: https://blog.csdn.net/lpq374606827/article/details/93203927 当List转化为数组时,如果想转化为二维数组: List<int[]> res = new ArrayList<>(); res.toArray(new int[res.size( 阅读全文
posted @ 2021-09-12 14:26 弓呆的胖次 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 思路:我们需要维护当前每个链表没有被合并的元素的最前面一个,kk 个链表就最多有 kk 个满足这样条件的元素,每次在这些元素里面选取 val 属性最小的元素合并到答案中。在选取最小元素的时候,我们可以用优先队列来优化这个过程。 作者:LeetCode-Solution链接:https://leetc 阅读全文
posted @ 2021-09-07 15:14 弓呆的胖次 阅读(503) 评论(0) 推荐(0) 编辑
摘要: https://leetcode-cn.com/problems/path-sum-ii/solution/yi-pian-wen-zhang-jie-jue-suo-you-er-cha-oo63/ 阅读全文
posted @ 2021-08-25 14:34 弓呆的胖次 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.sczyh30.com/posts/Java/java-reflection-1/ 阅读全文
posted @ 2021-08-23 09:01 弓呆的胖次 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 30 下一页