11 2021 档案

摘要:Dependency 'org.springframework:spring-webmvc' not found 在idea的自带的maven配置文件中修改settings.xml,引入国内阿里云镜像 <mirror> <id>nexus-aliyun</id> <mirrorOf>central< 阅读全文
posted @ 2021-11-24 10:45 比目目鱼 阅读(1241) 评论(0) 推荐(0)
摘要:import java.util.Arrays;public class BubbleSort { public static void main(String[] args) { int[] array = {2, 3, 5, 1, 8, 2, 9}; int[] a = sort(array); 阅读全文
posted @ 2021-11-04 09:17 比目目鱼 阅读(42) 评论(0) 推荐(0)