- 博客(686)
- 资源 (2)
- 收藏
- 关注
原创 Mysql 时间汇总
原符号 < <= > >= & ' "替换符号 < <= > >= & ' " select now(); set global time_zone = '+8:00'; ##修改mysql全局时区为北京时间,即我们所在的东8区 s...
2020-06-01 11:02:17
447
原创 Invalid bound statement (not found)
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.misserver.dao.TcwlDao.queryList问题以上,主要的原因是mapper.channel 的路径错误。...
2020-01-10 20:41:34
530
2
原创 MySQL 之 1215 cannot add foreign key constraint
解决1 字段与外键关联字段 ,类型一致,长度一致2 字段与外键关联字段 字符集一致
2019-12-17 14:43:08
279
原创 Mysql 之com.mysql.jdbc.PacketTooBigException
com.mysql.jdbc.PacketTooBigException: Packet for query is too large (6340240 > 4194304). You can change this value on the server by setting the max_allowed_packet' variable.; Packet for query is ...
2019-11-29 12:03:49
241
原创 tomcat 启动报错之 Cannot assign requested address (Bind failed)
java.net.BindException: Cannot assign requested address (Bind failed) at java.net.PlainSocketImpl.socketBind(Native Method) at java.net.AbstractPlainSocketImpl.bind(AbstractPlainSocketImpl.jav...
2019-11-11 17:50:56
1087
原创 UncategorizedSQLException
org.springframework.jdbc.UncategorizedSQLException: Error attempting to get column 'user_id' from result set. Cause: java.sql.SQLException: Error; uncategorized SQLException; SQL state [null]; erro...
2019-10-25 11:42:38
16003
原创 springboot 中ibatis.binding.BindingException
bug错误提示:org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.channel.misserver.module.sys.dao.SysUserDao.queryByUserNam解决方式:# Mybatis配置mybatis: mapperLoca...
2019-10-25 11:15:11
518
原创 error日志和info日志 分开存储
logback-spring.xml 日志文件配置:<?xml version="1.0" encoding="UTF-8"?><configuration debug="false"> <conversionRule conversionWord="clr" converterClass="org.springframework.boot.l...
2019-10-24 11:34:00
1933
原创 @Slf4j 的日志输出格式
异常打印格式: log.error(c.toString() + "_" + e.getMessage(),e);整体输出如下图: 简洁清晰明了
2019-10-24 11:01:04
4111
原创 springboot 项目配置bootstrap.yml 必引入包 spring-cloud-context
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-context</artifactId> <version>2.1.2.RELEASE</version><...
2019-10-23 16:13:23
4120
原创 springboot +mybatis 之No transaction aspect-managed TransactionStatus in scope
事物回滚成功输出 如下图:很明显调用CglibAopProxy.java类事物回滚失败 输出如下图:没有调用CglibAopProxy.java类,没有事务管理具体原因:解决方式:网上找到的解决方式:https://blog.youkuaiyun.com/finalcola/article/details/81197584或独立写一个service...
2019-10-10 18:37:26
7109
1
原创 Query was empty
by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Query was empty at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) at sun.reflect.NativeConstructorAccessor...
2019-10-10 09:55:51
2319
原创 shell编程(5)---shell 运算符
shell 变量的缺点? 弱类型 默认类型是字符串1 declare 命令declare 声明变量类型declare [+/-] [选项] 变量名+ 取消变量的设定类型属性- 给变量设定类型属性 -a 将变量声明为数组类型-i 将变量声明为整型+a 取消数值类...
2019-10-10 09:55:18
145
原创 MySQL 之 InvalidConnectionAttributeException,SQLNonTransientConnectionException
java.sql.SQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.com.mysql.cj.exceptions.InvalidConnectionAttributeException:...
2019-09-20 10:58:42
1062
原创 java 之 Non-static field
Non-static field 'sendmsg_uri' cannot be referenced from a static context翻译:不能从静态上下文引用非静态字段'sendmsg_uri'只是一个简单的常见问题,记下希望下次可以记住从而避免。...
2019-09-18 11:03:48
3889
原创 MySQL 之 ORDER BY clause is not in GROUP BY clause
055 - Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'basedb.tcd.sale_day' which is not functionally dependent on columns in GROUP BY clause; this is inco...
2019-09-02 17:50:02
3013
原创 MySQL 之 sql injection violation, multi-statement not allow
java.sql.SQLException: sql injection violation, multi-statement not allow : update news_article set status=3 where status=2 and now() between effective_time and invalid_time; ...
2019-07-25 16:21:17
2254
原创 key.txt cannot be resolved to absolute file path because it does not reside in the file system
springboot项目读取resource目录下的 txt 文件 ,在本机可以,发布后读取不到。报错的代码如下:public static List<String> getRank() throws IOException { ClassPathResource classPathResource = new ClassPathResource("key.txt"...
2019-07-10 16:16:06
20538
4
原创 shell(7)----- 脚本demo
-------------------------case 用法------------------------------[root@aliyun247test]#catcash.sh#!/bin/bashecho"hellohellocnamg"read-p"pleaseinputanumber1or2or3or4"n...
2019-07-03 09:36:24
593
原创 shell编程(6)---条件判断与流程控制语句
1 条件判断式语句判断语句 两种方式: [-e/etc/passwd] test-e/etc/passwd[root@aliyun247~]#test-e/etc/passwd[root@aliyun247~]#ec...
2019-07-03 09:35:23
206
原创 shell编程(5)---正则表达式
1 正则表达式1.1 正则表达式 是什么? 它主要用于 字符串的模式分割,匹配, 查找及替换操作。1.2 正则表达式与通配符的区别正则表达式:用来匹配文件中的字符串的,专门用来匹配数据的,正则是包含匹配。grep,awk,sed 等命令可以支持正则表达式。搜索字符串的命令支持正则通配符: 用来匹配文件名称的,通配符是完全匹配。...
2019-07-03 09:34:16
341
原创 shell编程(3)---shell 运算符
shell 变量的缺点? 弱类型 默认类型是字符串1 declare 命令declare 声明变量类型declare [+/-] [选项] 变量名+ 取消变量的设定类型属性- 给变量设定类型属性 -a 将变量声明为数组类型-i 将变量声明为整型+a 取消数值类...
2019-07-03 09:33:20
239
原创 shell编程(4)---Bash变量
shell 和 bash 是一个意思。1 bash 变量的概述 shell 是脚本语言 ,不需要提前编译,在执行的过程中编译,所见即所得。 php ,java主要用来实现功能,语言函数等多且复杂 shell 是用来简化系统管理操作 ,例如 添加一万个用户,如果采用useradd 手工添加太........,可以采用...
2019-07-02 19:32:26
256
原创 shell编程(2)---环境变量的配置
1 概述1.1环境变量类型 用户自定义变量(本地变量) 环境变量 预定义变量 位置参数变量1.2source 命令用法 source 配置文件 . 配置文件#修改配置文件之后 必须注销重新登录才能生效,使用source 命令可以不用重新登录1...
2019-07-02 19:29:35
146
原创 shell编程(1)---shell 基本指令
shell 指令head test/1.txt 查看最前面 10 行head -n 15 test/1.txt 查看 前15 行tail test/1.txt 查看 最后 10行记录tail -n 15 test/1.txt 查看最后15行记录tail -f test/1.txt 查看实时记录ta...
2019-07-02 19:28:05
309
原创 linux 设计思想
small 小即是美 1thing 让每一个程序只做好一件事proto 尽快建立原型port 舍高效而取可移植性flat 使用纯文本文件来使用数据resue 充分利用软件的杆杠效应script 使用shell脚本来提高杆杠效应和可移植性nocui 避免那些强制的用户界面filter 让每一个程序都成为过滤器custom...
2019-07-02 19:06:50
1535
原创 linux(4) 查看,关闭,运动后台任务
netstat -nptl : 查看服务器运行 , 打开的端口fg、bg、jobs、&、nohup、ctrl + z命令一、&加在一个命令的最后,可以把这个命令放到后台执行,如gftp &,二、ctrl + z可以将一个正在前台执行的命令放到后台,并且处于暂停状态,不可执行三、jobs查看当前有多少在后台运行的命令...
2019-07-02 19:02:11
1124
原创 linux(3) 操作系统基本信息的获取
1 linux 操作系统基本信息的获取:包括 用户名,系统版本,系统内核版本,ip,man uname: 查看 uname 指令uname --helpUsage: uname [OPTION]...Print certain system information. With no OPTION, same as -...
2019-07-02 19:01:04
1119
原创 linux(2) 分析系统运行状态
1 分析操作系统内存free -m 提取操作系统内存从文件中提取内存: 计算 系统内存 和 应用程序所使用的内存awk '/MemTotal/{total=$2}/MemFree/{free=$2}END{print total,free}' /proc/meminfo[root@aliyun247proc]#awk...
2019-07-02 19:00:03
287
原创 linux(1) 之 查看操作系统基本信息
linux上 shell 的指令操作 ,指令。指令:uname -o: 查看操作系统类型 uname -n: 查看用户名uname -m:查看cpu 的指令集uname -a: 查看操作系统内核信息Usage: uname [OPTION]...Print certain system information. With...
2019-07-02 18:59:12
709
原创 shell 常用命令 V5
1、ls:类似于dos下的dir命令ls最常用的参数有三个:-a -l -F。ls –aLinux上的文件以.开头的文件被系统视为隐藏文件,仅用ls命令是看不到他们的,而用ls -a 除了显示一般文件名外,连隐藏文件也会显示出来。ls –l该参数显示更详细的文件信息。ls –F使用这个参数表示在文件的后面多添加表示文件类型的符号,例如*表示可执行,/表示目录...
2019-07-02 18:57:36
479
原创 MySQL 之 sql查询参数丢失,因为参数类型与表字段类型不一致
<select id="getNewsCount" parameterType="com.dxm.dto.NewsPageDto" resultType="Integer"> select count(*) from news <where> <if test="status!=null and status!='' "&g...
2019-07-02 17:29:11
939
原创 java.io.IOException: Broken pipe
org.apache.catalina.connector.ClientAbortException: java.io.IOException: Broken pipe at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:299) at org.apache.catalina.connect...
2019-06-10 10:01:33
2324
原创 MySQL 之 lpad,rpad 函数用法
lpad:函数语法:lpad(str1,length,str2)。其中str1是第一个字符串,length是结果字符串的长度,str2是一个填充字符串。如果str1的长度没有length那么长,则使用str2填充;如果str1的长度大于length,则截断。--截断--填充rpad:同理...
2019-05-30 11:35:48
8015
原创 MySQL 之 删除语句失败
<delete id="delPromotionActivity" parameterType="Integer"> delete from promotion_activity where where id=#{id}</delete>解答:parameterType="Integer" 标注数字类型,而实际传值是Strin...
2019-05-29 15:57:01
2013
原创 MySQL 之 1215 error code
问题:字段类型一致,字段长度一致的情况下,表新建外键报错,提示如图解答: 符集不一致,造成的,把字符统一即可 ...
2019-05-28 11:07:37
772
原创 MySQL 之 优化数据库对象
1 优化表数据类型 procedure analyse() 函数分析表字段2 通过拆分表,提高表的访问率,横向拆分,纵向拆分 纵向拆分:拆分是只按照应用访问的频度, 将表中经常访问的字段和不经常访问的字段拆分成两个表,经常访问的字段尽量是定长的,这样可以有效的提高表的查询和更新的效率 横向拆分:...
2019-05-24 20:18:07
203
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人