一、2020-03-17:
1.hashcode方法和equals方法的联系,为什么重写hashcode方法要重写equals方法?
回答的比较好的详见:
https://www.cnblogs.com/vi3nty/p/10642456.html
2.spring boot的原理?
Spring Boot启动的时候会通过@EnableAutoConfiguration注解找到META-INF/spring.factories配置文件中的所有自动配置类,并对其进行加载,而这些自动配置类都是以AutoConfiguration结尾来命名的,它实际上就是一个JavaConfig形式的Spring容器配置类,它能通过以Properties结尾命名的类中取得在全局配置文件中配置的属性如:server.port,而XxxxProperties类是通过@ConfigurationProperties注解与全局配置文件中对应的属性进行绑定的。
https://blog.csdn.net/u014745069/article/details/83820511
3.线程池有哪几种分类?简单说下线程池
4.讲讲shiro的原理,如何做到安全管理的?
5.说说netty
6.说说elasticsearch
7.讲下restful api的设计规范
原文:https://www.cnblogs.com/Aaronqcd/p/12513932.html