日常收藏
日常收藏集锦
常用网站:
掘金酱
StackOverFlow 技术问答
github
开源中国
游戏源码分享
V站
运维常用
关于安装一些linux或者其他开发类系统,个人建议搜索一下运维方面的网站,毕竟他们专业 https://www.osyunwei.com/
IT学习
是一个极客网站,把it知识通过通熟易懂的漫画来展示。
http://turnoff.us/
idea
开发代码注释:
TODO,FIXME
https://blog.csdn.net/qq_38878455/article/details/82933174
IDEA自定义注释模板(主要解决params和return的问题):
主要是在创建时不要插入设置”/“ 而应该设置为”“,如果是”/*“系统会默认调用系统的。
https://blog.csdn.net/Aeve_imp/article/details/85785411
配置Apache Maven 3.6.1
在配置maven3.6.2后,在idea中无法正常导入依赖,故不推荐使用最新版的Apache Maven 3.6.2
https://blog.csdn.net/ashleyjun/article/details/101106810
debug的一些常用用法
链接入口
如果访问不了了,请查看我copy后的成果,其实,个人觉得这个debug网上有好多,不一定说需要你去鉴别哪个好,只要你去好好的看一两个,然后去实践一下就好了,没有最好,只有最适合自己的。(copy的链接(https://www.cnblogs.com/Anxc/p/12159538.html)密码:debug)
IntelliJ IDEA中插件EasyCode 的安装及使用过程
https://gitee.com/makejava/EasyCode/wikis/pages
idea破解真正可行的方案(2020.9.19)
https://zhile.io/2018/08/17/jetbrains-license-server-crack.html
JSP
EL表达式获取日期时间类型后格式化的问题
https://blog.csdn.net/u014680720/article/details/47148279
EL表达式关于<c:if test="${ baseinfo =='1' }">/c:if不能正常执行业务逻辑的问题
https://blog.csdn.net/sinat_34979884/article/details/80910203
Mybatis
resultMap的用法以及关联结果集映射
https://blog.csdn.net/qq_42780864/article/details/81429114
mybatis中出现CDATA的作用
https://my.oschina.net/960823/blog/808294
mybatis映射异常:nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter
https://blog.csdn.net/zh_1721342390/article/details/78499315
JSONObject.fromObject--JSON与对象的转换
https://www.jianshu.com/p/cd68150385bf
Mybatis 中 collection 的应用,1对多的查询
https://blog.csdn.net/lzxomg/article/details/89739651
Mybatis中的choose (when, otherwise)标签
https://www.cnblogs.com/caoyc/p/5574948.html
权限菜单设计参考
一种参考方案
https://www.imooc.com/article/40553
开发功能:
文件的上传和下载(下载的时候有txt换行丢失问题)
https://www.cnblogs.com/huangjinyong/p/9040255.html
在框架中引入前端框架或者其他静态资源(如bootstrap)
https://blog.csdn.net/qq_36901488/article/details/81226513
然后,如果有springMVC拦截请求时,在spring-mvc的配置文件中需要设置不拦截的前端请求:
<!--过滤静态资源-->
<mvc:resources location="/static/" mapping="/static/**"/>
<mvc:resources location="/images/" mapping="/images/**"/>
<mvc:resources location="/js/" mapping="/js/**"/>
我的页面配置:
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<link href="/static/bootstrap-3.3.7-dist/css/bootstrap.css" rel="stylesheet">
<script src="/static/bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>
bootstrap-table的引入
https://www.jianshu.com/p/8c4ff8eca14f
bootStrap-table的使用
https://blog.csdn.net/weixin_42575028/article/details/87380789
https://www.cnblogs.com/likui-bookHouse/p/11207127.html
网络安全
10分钟了解JSON Web令牌(JWT)
https://baijiahao.baidu.com/s?id=1608021814182894637&wfr=spider&for=pc
软件使用:
JetBrains 全家桶pojie
https://www.52pojie.cn/thread-1067129-1-1.html
https://www.cnblogs.com/horvey/p/12247079.html
springboot:
springboot设置启动类和代码不在相同目录下
https://www.cnblogs.com/hellowhy/p/10045783.html
springboot学习
https://blog.csdn.net/Winter_chen001/article/details/80537829
springboot使用连接池HikariCP
https://blog.csdn.net/lizhiqiang1217/article/details/90573759
springboot2.x的静态资源配置
(我用的springboot的thymeleaf)
https://www.jianshu.com/p/c638b3166963
还要在springboot的配置文件上写:
spring:
mvc:
static-path-pattern: /static/**
在调用时:
<script type="text/javascript" src="/static/js/jquery-3.4.1.min.js"></script>
springboot配置shiro系统
https://www.jianshu.com/p/7f724bec3dc3
Spring Cloud入门操作手册(Hoxton)
https://blog.csdn.net/weixin_38305440/article/details/102775484
项目布局
html静态页面引入公共html页面
https://blog.csdn.net/u010957390/article/details/50515394
html中引入调用另一个公用html模板文件的方法
https://www.w3h5.com/post/53.html
Linux系统下载
centos7 阿里云镜像下载网站
https://developer.aliyun.com/mirror/
centos7.8 下载网站:https://mirrors.aliyun.com/centos/7.8.2003/isos/x86_64/
下载时请阅读:https://developer.aliyun.com/article/703043
manjaro系统下载及安装步骤
http://www.mamicode.com/info-detail-2926137.html
https://www.pianshen.com/article/740635897/
代码开发平台
Jeecg-Boot 企业级快速开发平台
http://boot.jeecg.org/dashboard/analysis
技术
Jekins在docker搭建步骤
[Docker 安装 Jenkins (超详细) | Segon]
使用 Jenkins 构建、部署 Spring Boot 应用 | Segon