摘要: first,install zsh install oh my zsh 官网:https://ohmyz.sh 阅读全文
posted @ 2019-01-09 22:40 这谁顶着住啊 阅读(314) 评论(0) 推荐(0) 编辑
摘要: jps命令无效 jps、jstack等都是通过 来确定正在运行的java进程pid等信息. 如果启动java进程时使用 后, jps等可能会由于找不到对应的数据而有问题 阅读全文
posted @ 2019-01-09 15:43 这谁顶着住啊 阅读(2719) 评论(0) 推荐(0) 编辑
摘要: Spring boot + Mybatis : Invalid bound statement (not found) 如果只在启动类上配置@MapperScan注解,默认只扫描和mapper接口同名的xml文件 如有mapper接口名字和xml名字不一样的情况,需扫描任意名字的xml需要配置如下 阅读全文
posted @ 2019-01-09 15:42 这谁顶着住啊 阅读(210) 评论(0) 推荐(0) 编辑
摘要: Mysql远程无法连接 客户端远程连接mysql失败.(mysql server在Ubuntu上) ip能ping通,telnet ip:3306端口不通 Ubuntu下防火墙已经关闭 Ubuntu ping windwos不通,关闭Windows防火墙后能ping通了 还是连接不上 忘记了 MyS 阅读全文
posted @ 2019-01-09 15:42 这谁顶着住啊 阅读(41954) 评论(2) 推荐(2) 编辑
摘要: ``` #mapper sql日志 替换成你的mapper接口所在的包名 logging.level.com.example.dao=debug ``` 阅读全文
posted @ 2019-01-09 15:41 这谁顶着住啊 阅读(245) 评论(0) 推荐(0) 编辑
摘要: mybatis.xml 配置文件设置 spring boot 设置 阅读全文
posted @ 2019-01-09 15:38 这谁顶着住啊 阅读(941) 评论(0) 推荐(0) 编辑
摘要: mybatis 结果映射下划线转驼峰 Spring Boot 配置: mybatis XML 配置 当resultTpye=map时,以上的配置无效 通过实现 接口,可以判断当object 是 Map 类型时,返回 true,然后在下面的 getWrapperFor 中返回一个可以处理 key 为驼 阅读全文
posted @ 2019-01-09 15:38 这谁顶着住啊 阅读(16211) 评论(0) 推荐(0) 编辑
摘要: springboot打包war部署到外部tomcat的时候指定profile启动 windows 在%tomcat%/bin下创建setenv.bat文件 linux 在%tomcat%/bin下创建setenv.sh文件 使用JVM参数: windows inux 或者使用CATALINA_OP 阅读全文
posted @ 2019-01-09 15:37 这谁顶着住啊 阅读(3810) 评论(0) 推荐(0) 编辑
摘要: 安装mysql 官方文档 [A Quick Guide to Using the MySQL Yum Repository][1] 下载 Yum Repository Go to the Download MySQL Yum Repository page (http://dev.mysql.com 阅读全文
posted @ 2019-01-09 15:37 这谁顶着住啊 阅读(217) 评论(0) 推荐(0) 编辑
摘要: ```java @Aspect @Component @Slf4j public class ControllerAspact { @Pointcut("execution(public * com.example.controller..*.*(..))") public void requestLog() { } @Before("requestLog()"... 阅读全文
posted @ 2019-01-09 15:36 这谁顶着住啊 阅读(733) 评论(0) 推荐(0) 编辑
摘要: ```java public class JoddCache { private static final int CACHE_SIZE = 2; private final static Cache CACHE = new LRUCache(CACHE_SIZE); private JoddCache() { } /** * 缓存一个key... 阅读全文
posted @ 2019-01-09 15:33 这谁顶着住啊 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 实现spring 接口 通过使用 自定义注解来解析json数据(通过fastjson的jsonPath),支持多个参数( ) 自定义注解 参数解析器实现 配置 自定义参数解析器优先级低于spring提供的默认解析器,会被默认解析器处理 使用 阅读全文
posted @ 2019-01-09 15:32 这谁顶着住啊 阅读(1058) 评论(0) 推荐(0) 编辑
摘要: 自定义序列化实现 接口 jsonp注解支持 fastjson已经内置了一个 接口的实现 我们只需要配置这个Bean就行了 阅读全文
posted @ 2019-01-09 15:29 这谁顶着住啊 阅读(846) 评论(0) 推荐(0) 编辑
摘要: 安装 gogs 下载 [gogs download][1] 安装 1. 解压压缩包。 2. 使用命令 cd 进入到刚刚创建的目录。 3. 执行命令 ./gogs web,然后,就没有然后了。 安装mysql 略过,也可以直接用sqlite3 sql 新建库 create database defa 阅读全文
posted @ 2019-01-09 15:28 这谁顶着住啊 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 用 接口只能统一修改,要分开控制的话有多少个job就要有多少个实现。比较麻烦 配置线程池ThreadPoolTaskScheduler 封装实现 pojo java @Table(name = " ") @Data public class EcoScheduleJob implements Ser 阅读全文
posted @ 2019-01-09 09:46 这谁顶着住啊 阅读(6358) 评论(4) 推荐(0) 编辑
摘要: ```nginx ## # You should look at the following URL's in order to grasp a solid understanding # of Nginx configuration files in order to fully unleash the power of Nginx. # http://wiki.nginx.org/Pitfal... 阅读全文
posted @ 2019-01-09 09:41 这谁顶着住啊 阅读(1137) 评论(0) 推荐(0) 编辑