# smartfast4j **Repository Path**: gacl/smartfast4j ## Basic Information - **Project Name**: smartfast4j - **Description**: smartfast4j - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-11-28 - **Last Updated**: 2022-05-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # smartfast4j 基于SpringBoot+MyBatis的Java快速开发框架 SpringMVC + mybatis 无法读取JAR包中的XML配置文件问题 http://blog.csdn.net/tianlong1569/article/details/52769081 # SpringBoot+Shiro学习 http://www.jianshu.com/p/22f78f8677f3 # 整合swagger2生成Restful Api接口文档 http://www.imooc.com/article/20521 truncate语句,是清空表中的内容,包括自增主键的信息。truncate表后,表的主键就会重新从1开始。 TRUNCATE TABLE sys_user Mybatis中的拦截器 http://blog.csdn.net/moshenglv/article/details/52699976 ## Thymeleaf 3 迁移指南 http://www.coderli.com/thymeleaf-3-migration-guide-by-onecoder/?utm_source=tuicool&utm_medium=referral ## boostrap教程 http://how2j.cn/k/boostrap/boostrap-tutorial/538.html 超级管理员:gacl/xdp # superui API文档 https://www.kancloud.cn/superui/doc/157087 # Intellij IDEA 使用Spring-boot-devTools无效解决办法 http://blog.csdn.net/wjc475869/article/details/52442484 ## Thymeleaf 之 使用devtools热启动、热部署 http://blog.csdn.net/zsl129/article/details/52916890 ## HTML基础篇 http://www.cnblogs.com/suoning/p/5614372.html ## CSS 基础篇、绝对有你想要 http://www.cnblogs.com/suoning/p/5625582.html ## 史上最全、JavaScript基础篇 http://www.cnblogs.com/suoning/p/5656403.html ## 十分钟玩转 jQuery、实例大全 http://www.cnblogs.com/suoning/p/5683047.html #Long类型比较不能直接用等于 http://blog.csdn.net/sourny/article/details/50549908 -- mysql中从子类ID查询所有父类(@r := 5标示查询id为5的所有父类) SELECT T2.* FROM ( SELECT @r AS _id, ( SELECT @r := parent_id FROM cn_area WHERE id = _id ) AS parent_id, @l := @l + 1 AS lvl FROM (SELECT @r := 5, @l := 0) vars, cn_area h WHERE @r <> 0 ) T1 JOIN cn_area T2 ON T1._id = T2.id ORDER BY T1.lvl DESC #前端开发学习 http://www.cnblogs.com/best/p/6204116.html #个人所得税计算 http://www.gerensuodeshui.cn/index.html # java 项目日志管理设计方案 http://blog.csdn.net/jlh912008548/article/details/72782241 https://www.cnblogs.com/hooray/archive/2012/09/05/2672133.html #树莓派 + Docker - 轻松实现人脸识别应用 https://yq.aliyun.com/articles/346459 #基于spring boot+netty+mqtt 3.1.1协议开发的物联网消息推送框架 https://github.com/1ssqq1lxr/iot_push #SQL Formatter(基于js的SQL语句格式化) https://github.com/zeroturnaround/sql-formatter #mybatis-generator扩展教程系列 https://blog.csdn.net/shadowsick/article/details/53389064 #获取java byte的无符号数值 https://blog.csdn.net/todd911/article/details/9378319 byte a1 = (byte)(127);//int强转成byte,结果是127,因为java中byte是有符号的,byte范围是-128~127 System.out.println(a1);//127 int i1 = a1&0xff;//将byte变回原来的int,i=127 System.out.println(i1); byte a2 = (byte)(128);//int强转成byte,结果是-127,因为java中byte是有符号的,byte范围是-128~127 System.out.println(a2);//128 int i2 = a2&0xff;//将byte变回原来的int,i=128 System.out.println(i2); byte a3 = (byte)(255);//int强转成byte,结果是-1,因为java中byte是有符号的,byte范围是-128~127 System.out.println(a3);//-1 int i3 = a3&0xff;//将byte变回原来的int,i=255 System.out.println(i3); byte a4 = (byte)(256);//int强转成byte,结果是-1,因为java中byte是有符号的,byte范围是-128~127 System.out.println(a4);//a=0 int i4 = a4&0xff;//将byte变回原来的int,变不回来了,a4&0xff=0 System.out.println(i4); # 轻量级分布式 RPC 框架 https://my.oschina.net/huangyong/blog/361751 #Breakpoint-http(Java实现浏览器端大文件分片上传) https://gitee.com/Fourwenwen/breakpoint-http #MongodbGFS结合SpringBoot 实现大文件的简单上传与下载 https://blog.csdn.net/cher1sh_zhaotong/article/category/7430374 #mysql 8.0 Druid连接时调用getServerCharset报空指针异常解决方法 https://www.cnblogs.com/zhjh256/p/9020049.html https://mvnrepository.com/artifact/mysql/mysql-connector-java/8.0.11 #基于vue2.0的实时聊天项目 https://github.com/hua1995116/webchat # 一个Swagger API 文档 转 Word 文档的工具项目 https://github.com/JMCuixy/SwaggerToWord #select多选之formSelects https://hnzzmsf.github.io/layui-formSelects/docs/index.html#/ #EasyWebPage——基于jquery、layui的管理系统模板 https://gitee.com/whvse/EasyWebPage # 利用Netty构建自定义协议的通信 http://www.cnblogs.com/whthomas/p/netty-custom-protocol.html # Netty 拆包粘包和服务启动流程分析 http://www.cnblogs.com/itdragon/p/8365694.html # 基于Netty打造RPC服务器设计经验谈 http://www.cnblogs.com/jietang/p/5983038.html # 一起学netty https://blog.csdn.net/column/details/enjoynetty.html # AdminLTE with iframe https://gitee.com/weituotian/AdminLTE-With-Iframe # mybatis-generator 扩展 https://github.com/wangjohnny/mybatis-generator-ext #dev开发分支 # 使用Git下载指定分支命令 git clone -b 分支名 仓库地址 # clone master分支 git clone -b master https://gitee.com/gacl/smartfast4j.git # Shiro用starter方式优雅整合到SpringBoot中 https://segmentfault.com/a/1190000014479154 # 在前后端分离的SpringBoot项目中集成Shiro权限框架 https://blog.csdn.net/u013615903/article/details/78781166 # idea thymeleaf 修改不生效 https://blog.csdn.net/liushuiziyouliu/article/details/79043380 Springboot项目修改html后不需要重启---springboot项目的热部署 https://blog.csdn.net/Connie1451/article/details/79875835 # SpringBoot整合Redis https://blog.csdn.net/plei_yue/article/details/79362372 # 秒杀架构设计 https://github.com/qiurunze123/miaosha # maven之旅之构建自己的maven项目骨架 https://blog.csdn.net/wfl_137724/article/details/77592309 #配置Spring Boot通过@ConditionalOnProperty来控制Configuration是否生效 https://blog.csdn.net/dalangzhonghangxing/article/details/78420057 #使用@ConditionalOnExpression决定是否生效注释 https://blog.csdn.net/qq_36804701/article/details/83414941 #spring boot + spring cache 实现两级缓存(redis + ehcache) https://blog.csdn.net/byamao1/article/details/82014062 #Logback日志配置(分级别输出到不同文件) http://www.cnblogs.com/huangtao1927/p/8687012.html #FastDFS(fdfs)遇到的坑之一,本地fastdfs-client-java开发上传图片报错:java.net.SocketTimeoutException: connect timed out 解决办法:https://blog.csdn.net/q258523454/article/details/82791334 #WxJava - 微信开发 Java SDK(开发工具包) 支持包括微信支付、开放平台、公众号、企业微信/企业号、小程序等微信功能的后端开发。 https://github.com/Wechat-Group/WxJava #WxJava wiki文档 https://github.com/Wechat-Group/WxJava/wiki #java.lang.ClassCastException 两个一样的类不能强转 https://blog.csdn.net/liuxiaochang_2011/article/details/80663093 # Docker+SpringBoot+Mybatis+thymeleaf的Java博客系统 https://www.cnblogs.com/han-1034683568/p/6840493.html