摘要:
spring @component的作用详细介绍 1、@controller 控制器(注入服务) 2、@service 服务(注入dao) 3、@repository dao(实现dao访问) 4、@component (把普通pojo实例化到spring容器中,相当于配置文件中的<bean id= 阅读全文
摘要:
class Test{ public static void main(String[] args){ //当值在[-128,127]中,不创建新的Integer Integer f1 = 100,f2 = 100,f3 = 150, f4 = 150; System.out.println(f1 == f... 阅读全文
摘要:
方法一:通过Calendar类得日期比较,在这需要考虑闰年和平年,也要考虑跨年份 方法二:转化为毫秒数,再除以一天得毫秒数 阅读全文