日常收藏

日常收藏集锦

  • 常用网站:

    1. 掘金酱    https://e.xitu.io/

    2. StackOverFlow 技术问答    https://stackoverflow.com/

    3. https://github.com/

    4. https://www.oschina.net/

    5. 游戏源码分享   https://www.yxkfw.com/

    6. http://www.v2ex.com/

    7. 关于安装一些linux或者其他开发类系统,个人建议搜索一下运维方面的网站,毕竟他们专业   https://www.osyunwei.com/

    8. turnoff.us是一个极客网站,把it知识通过通熟易懂的漫画来展示。
  • idea:

    1. 开发代码注释:

      TODO,FIXME

      https://blog.csdn.net/qq_38878455/article/details/82933174

    2. IDEA自定义注释模板(主要解决params和return的问题):

      主要是在创建时不要插入设置”/*“ 而应该设置为”*“,如果是”/*“系统会默认调用系统的。

      https://blog.csdn.net/Aeve_imp/article/details/85785411

    3. 配置Apache Maven 3.6.1

      在配置maven3.6.2后,在idea中无法正常导入依赖,故不推荐使用最新版的Apache Maven 3.6.2

      https://blog.csdn.net/ashleyjun/article/details/101106810

    4. debug的一些常用用法

      链接

      如果访问不了了,请查看我copy后的成果,其实,个人觉得这个debug网上有好多,不一定说需要你去鉴别哪个号,只要你去好好的看一两个,然后去实践一下就好了,没有最好,只有最适合自己的。(copy的链接(https://www.cnblogs.com/Anxc/p/12159538.html)未发布)

    5. IntelliJ IDEA中插件EasyCode 的安装及使用过程 

      https://gitee.com/makejava/EasyCode/wikis/pages

  • jsp

    1. EL表达式获取日期时间类型后格式化的问题

      https://blog.csdn.net/u014680720/article/details/47148279

    2. EL表达式关于<c:if test="${ baseinfo =='1' }"></c:if>不能正常执行业务逻辑的问题

      https://blog.csdn.net/sinat_34979884/article/details/80910203

  • Mybatis

    1. resultMap的用法以及关联结果集映射

      https://blog.csdn.net/qq_42780864/article/details/81429114

    2. mybatis中出现CDATA的作用

      https://my.oschina.net/960823/blog/808294

    3. mybatis映射异常:nested exception is org.apache.ibatis.reflection.ReflectionException: There is no getter

      https://blog.csdn.net/zh_1721342390/article/details/78499315

    4. JSONObject.fromObject--JSON与对象的转换

      https://www.jianshu.com/p/cd68150385bf

    5. Mybatis中<collection>的应用,1对多的查询

      https://blog.csdn.net/lzxomg/article/details/89739651

    6. Mybatis中的choose (when, otherwise)标签

      https://www.cnblogs.com/caoyc/p/5574948.html

  • 权限菜单设计参考

    1. 一种参考方案

      https://www.imooc.com/article/40553

  • 开发功能:

    1. 文件的上传和下载(下载的时候有txt换行丢失问题)

      https://www.cnblogs.com/huangjinyong/p/9040255.html

    2. 在框架中引入前端框架或者其他静态资源(如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>

    3. bootstrap-table的引入

      https://www.jianshu.com/p/8c4ff8eca14f

    4. bootStrap-table的使用

      https://blog.csdn.net/qq_37936542/article/details/79163125?depth_1-utm_source=distribute.pc_relevant.none-task&utm_source=distribute.pc_relevant.none-task

      https://blog.csdn.net/weixin_42575028/article/details/87380789

      https://www.cnblogs.com/likui-bookHouse/p/11207127.html

  • 网络安全:

    1. 10分钟了解JSON Web令牌(JWT)

      https://baijiahao.baidu.com/s?id=1608021814182894637&wfr=spider&for=pc

  • 软件使用:

    1. JetBrains 全家桶pojie

      https://www.52pojie.cn/thread-1067129-1-1.html

      https://www.cnblogs.com/horvey/p/12247079.html

  • springboot:

    1. springboot设置启动类和代码不在相同目录下

      https://www.cnblogs.com/hellowhy/p/10045783.html

    2. springboot学习

      https://blog.csdn.net/Winter_chen001/article/details/80537829

    3. springboot使用连接池HikariCP

      https://blog.csdn.net/lizhiqiang1217/article/details/90573759

    4. 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>

    5. springboot配置shiro系统

      https://www.jianshu.com/p/7f724bec3dc3

  • Spring Cloud入门操作手册(Hoxton)

      https://blog.csdn.net/weixin_38305440/article/details/102775484

  • 项目布局

    1. html静态页面引入公共html页面

      https://blog.csdn.net/u010957390/article/details/50515394

    2.  html中引入调用另一个公用html模板文件的方法

      https://www.w3h5.com/post/53.html

原文地址:https://www.cnblogs.com/Anxc/p/12097495.html