java视频:https://www.bilibili.com/video/BV1Kb411W75N?p=577
SpringBoot、SpringMVC、分布式锁(数据库锁、Redis锁、ZK、JVM)
1、编译命令:javac hello.java 运行命令:java hello 文档化命令:javadoc -d myhello -author -version hello.java
eclipse配置:
window》preferences》General》Appearance》Colors and Fonts》Basic》Text Font,右侧Edit可以设置代码字体大小。
window》preferences》Java》Code Style》Code Templates》Comments》Types,设置整个类文档备注格式,method是方法的备注。
window》perspective》Customize Perspective...》Menu Visibility》File》New,勾选可以配置新建项目列表项。
智能提示:window》preferences》Java》Editor》Content Assist》Auto Activation》Auto activation triggers for java,填入 .abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
设置Eclipse在启动时提示选择工作空间,勾选:window》preferences》General》startup and shutdown》Workspaces》Prompt for workspace on startup
debug进不去java文件:Windows》preferences》Java》Installed JREs》选中本地JDK
保留小数位,四舍五入:
double num = 12.95555;
java.text.DecimalFormat df = new java.text.DecimalFormat("#.00");
String res = df.format(num);
判断一个对象res是否是某一类型:if (res instanceof type) {...}

3、接口中可以定义常量、抽象方法、静态方法、默认方法(使用default修饰),接口中的静态方法只能通过接口调用,默认方法需要实现类的实例调用。
4、单元测试,当前工程》右键》Build Path》Add Libraries...》JUnit》下一步,创建一个类:公共的、公共无参构造器、声明单元测试方法(public void testGetData,没有参数),测试方法上面要加@Test注解,
导入包 import org.junit.Test,运行测试方法,双击选中方法名,右键,run as》JUnit Test;直接写@Test注解,根据自动提示可以直接导入包。
5、IDEA下载安装:https://www.jb51.net/softs/543007.html#downintro2
6、eclipse快捷键:https://www.runoob.com/eclipse/eclipse-shortcuts.html
7、java注解:https://blog.csdn.net/javazejian/article/details/71860633
8、SpringCloud:https://www.bilibili.com/video/BV18E411x7eT?p=1
SpringCloud视频笔记:
https://blog.csdn.net/u011863024/article/details/114298270
https://blog.csdn.net/u011863024/article/details/114298282
https://blog.csdn.net/u011863024/article/details/114298288
9、SpringBoot:https://www.bilibili.com/video/BV19K4y1L7MT?p=34
10、SpringMVC:https://www.bilibili.com/video/BV1aE41167Tu?p=29
11、Spring5:https://www.bilibili.com/video/BV1WE411d7Dv?p=20
12、Mybatis:https://www.bilibili.com/video/BV1NE411Q7Nx?p=20
13、Maven:https://www.bilibili.com/video/BV12a411w7Ah?p=7
14、java基础:https://www.bilibili.com/video/BV1Kb411W75N?p=672
15、Android:https://www.bilibili.com/video/BV1Rt411e76H?p=5
16、LocalDateTime:https://www.cnblogs.com/huanshilang/p/12013386.html
17、若依导入导出使用dictType:https://blog.csdn.net/wcnmbbbb/article/details/117952232
18、SpringBoot整合SpringSecurity:https://www.bilibili.com/video/BV1KE411i7bC?p=1
19、SpringBoot整合Shiro框架:https://www.bilibili.com/video/BV1NE411i7S8?p=1
20、stream()使用:https://blog.csdn.net/y_k_y/article/details/84633001
21、mybatis多表关联查询和分布查询:https://www.cnblogs.com/jasmine-e/p/15351416.html
22、SpringCloud
SpringCloud Alibaba
服务注册:Nacos
服务调用:Ribbon、LoadBalancer、OpenFeign
服务降级:Hystrix、resilience4j、阿里Sentinel
服务网关:spring gateway
服务配置:Nacos
服务总线:Nacos
SpringCloud视频:https://www.bilibili.com/video/BV18E411x7eT?p=1
23、.NET Core JWT认证与授权:https://www.cnblogs.com/taotaozhuanyong/p/13793538.html
24、读取request中的内容:https://blog.csdn.net/javawutuobang/article/details/109350621
25、java自旋锁:https://blog.csdn.net/fuyuwei2015/article/details/83387536
26、java使用POI导出Excel,https://www.cnblogs.com/chenyonglin/p/12156688.html,POI设置单元格内容下拉框选择和单元格提示功能:https://blog.csdn.net/Alice_qixin/article/details/72867279
27、@Scheduled cron表达式 :https://www.cnblogs.com/dyppp/p/7498457.html
28、spring boot 和 spring cloud的版本匹配信息:https://start.spring.io/actuator/info
29、springcloud + nacos版本选择:https://blog.csdn.net/qq_38637558/article/details/114448690
https://blog.csdn.net/heshengfu1211/article/details/120643050
语言中文网:http://c.biancheng.net/view/1100.html
30、IDEA之maven配置详解 https://www.cnblogs.com/ckfuture/p/15821541.html

posted on 2021-03-15 14:14  邢帅杰  阅读(107)  评论(0编辑  收藏  举报