上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 如果容器中有AutowiredAnnotationBeanPostProcessor后处理器,则加了@Autowired注解的或只有一个参数的构造器的bean由这个后处理器创建。 @Controller public class HeloController { @Autowired private 阅读全文
posted @ 2022-03-25 16:11 言思宁 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ApplicationContext refresh的流程 ApplicationContext的父类是AbstractApplicationContext, refresh是AbstractApplicationContext中的一个方法,它负责初始化ApplicationContext容器,容器 阅读全文
posted @ 2022-03-25 14:44 言思宁 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 算法题 一、链表 1. 反转链表 如当输入链表{1,2,3}时,经反转后,原链表变为{3,2,1},所以对应的输出为{3,2,1}。以上转换过程如下图所示: 示例: 输入:{1,2,3} 返回值:{3,2,1} 代码: public class Solution { public ListNode 阅读全文
posted @ 2022-03-17 16:04 言思宁 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 全零子串的数量 题目:全零子串的数量 给出一个只包含0或1的字符串str,请返回这个字符串中全为0的子字符串的个数 1<=|str|<=30000 示例: 输入:"00010011" 输出:9 解释: "0"子字符串有5个, "00"子字符串有3个, "000"子字符串有1个。 所以返回9 代码: 阅读全文
posted @ 2022-03-09 17:12 言思宁 阅读(72) 评论(0) 推荐(0) 编辑
摘要: Mybatis动态标签 1. if标签 动态条件判断 <select id="findByCondition" resultType="user" parameterType="user"> select * from user where 1=1 <if test="username!=null" 阅读全文
posted @ 2022-03-03 21:23 言思宁 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 滑动串口求和 题目:滑动窗口内数的和 给你一个大小为n的整型数组和一个大小为k的滑动窗口,将滑动窗口从头移到尾,输出从开始到结束每一个时刻滑动窗口内的数的和。 示例: 输入:array = [1,2,7,8,5], k = 3 输出:[10,17,20] 解析: 1 + 2 + 7 = 10 2 + 阅读全文
posted @ 2022-02-21 11:43 言思宁 阅读(62) 评论(0) 推荐(0) 编辑
摘要: Linux修改文件报错 今天修改nginx的配置文件时: http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; lua_package_path "/u 阅读全文
posted @ 2022-02-10 22:01 言思宁 阅读(68) 评论(0) 推荐(0) 编辑
摘要: CentOS无法远程连接 1. 查看CentOS是否能ping ping www.baidu.com 如果超时,,则可能是防火墙未关闭,关闭防火墙 systemctl stop firewalld systemctl disable firewalld 2. Windows的防火墙未关闭 查看win 阅读全文
posted @ 2022-02-10 19:32 言思宁 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 数组中的第K个最大元素 题目:数组中的第K个最大元素 给定整数数组 nums 和整数 k,请返回数组中第 k 个最大的元素。 请注意,你需要找的是数组排序后的第 k 个最大的元素,而不是第 k 个不同的元素。 示例: 输入: [3,2,1,5,6,4] 和 k = 2 输出: 5 示例: 输入: [ 阅读全文
posted @ 2022-02-09 15:31 言思宁 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 归并排序 class Solution2 { public int[] sortArray(int[] nums) { if (nums == null || nums.length == 0) return nums; int[] temp = new int[nums.length]; merg 阅读全文
posted @ 2022-02-07 11:30 言思宁 阅读(20) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页