摘要:
```ini
# custom IntelliJ IDEA properties #http proxy
-DproxySet=true
-Dhttp.proxyHost=127.0.0.1
-Dhttp.proxyPort=1087
``` 阅读全文
摘要:
first,install zsh install oh my zsh 官网:https://ohmyz.sh 阅读全文
摘要:
jps命令无效 jps、jstack等都是通过 来确定正在运行的java进程pid等信息. 如果启动java进程时使用 后, jps等可能会由于找不到对应的数据而有问题 阅读全文
摘要:
Spring boot + Mybatis : Invalid bound statement (not found) 如果只在启动类上配置@MapperScan注解,默认只扫描和mapper接口同名的xml文件 如有mapper接口名字和xml名字不一样的情况,需扫描任意名字的xml需要配置如下 阅读全文
摘要:
Mysql远程无法连接 客户端远程连接mysql失败.(mysql server在Ubuntu上) ip能ping通,telnet ip:3306端口不通 Ubuntu下防火墙已经关闭 Ubuntu ping windwos不通,关闭Windows防火墙后能ping通了 还是连接不上 忘记了 MyS 阅读全文
摘要:
```
#mapper sql日志 替换成你的mapper接口所在的包名
logging.level.com.example.dao=debug
``` 阅读全文
摘要:
mybatis.xml 配置文件设置 spring boot 设置 阅读全文
摘要:
mybatis 结果映射下划线转驼峰 Spring Boot 配置: mybatis XML 配置 当resultTpye=map时,以上的配置无效 通过实现 接口,可以判断当object 是 Map 类型时,返回 true,然后在下面的 getWrapperFor 中返回一个可以处理 key 为驼 阅读全文
摘要:
springboot打包war部署到外部tomcat的时候指定profile启动 windows 在%tomcat%/bin下创建setenv.bat文件 linux 在%tomcat%/bin下创建setenv.sh文件 使用JVM参数: windows inux 或者使用CATALINA_OP 阅读全文
摘要:
安装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 阅读全文