摘要:
配置号MAVEN_HOME环境变量。 进入到pom.xml所在目录 跳过test,指定maven仓库mvn clean package -Dmaven.test.skip=true -Dmaven.javadoc.skip=true -Dmaven.repo.local=D:\YTZZ\maven\ 阅读全文
摘要:
去官方网站查看版本对应关系 https://spring.io/projects/spring-cloud 使用cloud Hoxton + boot 2.2.0 + eureka 2.1.1启动失败,后来把改用 eureka 2.2.0,成功启动。jar冲突真麻烦 <?xml version="1 阅读全文
摘要:
@Select("SELECT * FROM (SELECT *,ROWNUM AS N FROM (${sql}) R WHERE ROWNUM <=${pageNum}*${pageSize} ) RES WHERE RES.N_>(CASE WHEN ${pageNum}<=1 THEN 0 阅读全文
摘要:
java -jar demo-0.0.1-SNAPSHOT.jar 常驻进程 nohup java -jar demo-0.0.1-SNAPSHOT.jar & nohup的意思不挂服务,常驻的意思,除非云服务器重启,那就没法了;最后一个&表示执行命令后要生成日志文件nohup.out 这样就不担心 阅读全文
摘要:
授权所有,youpassword为登录密码GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION; 指定IPGRANT ALL PRIVILEGES ON *.* TO 'root 阅读全文
摘要:
https://blog.csdn.net/w405722907/article/details/78561995 order by 字段需注意,null排第一位 select * from ( select t.*, row_number() over(partition by t.ywh ORD 阅读全文
摘要:
因为要根据不同的数据源查询数据,mapper中的方法除了数据源不一样,其他基本一致,而且未来要拓展新的数据源,因此想到使用反射。代码如下:public Map commonGetCountyCount(Mapper mapper,String sql,String methodName, Strin 阅读全文
摘要:
SELECT @@sql_mode;ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION SET sql_mode=' 阅读全文
摘要:
IDEA启动报错Plugin Error的解决办法: Problems found loading plugins: Plugin "Persistence Frameworks Support" was not loaded: required plugin "Database Tools and 阅读全文