今天看项目日志,发现报这个异常。 是tomcat容器的问题,因为出现了特殊字符,所以报异常了。Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 398 ...
分类:
编程语言 时间:
2020-06-29 18:33:31
阅读次数:
97
一、Lambda表达式 Lambda表达式的基本语法 举例:(o1, o2) -> Integer.compare(o1, o2); 格式: →:lambda操作符或箭头操作符 →左边:lambda形参列表(接口中的抽象方法的形参列表) →右边:lambda体(重写的抽象方法的方法体) 具体的六种语 ...
分类:
编程语言 时间:
2020-06-29 09:50:23
阅读次数:
62
罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 字符 数值 I 1 V 5 X 10 L 50 C 100 D 500 M 1000 例如, 罗马数字 2 写做 II ,即为两个并列的 1。12 写做 XII ,即为 X + II 。 27 写做 XXVII, 即为 XX + V ...
分类:
其他好文 时间:
2020-06-28 20:46:27
阅读次数:
53
修改vue.config.js: module.exports = { publicPath: '/', } 注意不是"./" ...
分类:
其他好文 时间:
2020-06-28 15:34:30
阅读次数:
95
declare @id int declare @type character(2) declare @pages int declare @dbname sysname declare @dbsize dec(15,0) declare @bytesperpage dec(15,0) declar ...
分类:
数据库 时间:
2020-06-28 11:13:36
阅读次数:
256
Mybatis SqlSessionFactory 一、前言 使用Mybatis 首先是使用配置文件或者代码区生产SqlSessionFactory, 而Mybatis 提供了构造器SqlSessionFactoryBuilder。 它提供了一个类Configuration 作为引导,采用的是Bui ...
分类:
数据库 时间:
2020-06-28 09:15:35
阅读次数:
52
Based on Oracle, processing an English character takes 1 byte, but 3 bytes for a Chinese character. For example: select ename, length(ename), lengthb( ...
分类:
数据库 时间:
2020-06-27 20:30:11
阅读次数:
74
Reverse String (E) 题目 Write a function that reverses a string. The input string is given as an array of characters char[]. Do not allocate extra space ...
分类:
其他好文 时间:
2020-06-27 10:04:20
阅读次数:
50
问题一:AttributeEror:"Nonetype" object has no attribute'encoding" 解决方法将utf-8 改为 utf8 问题二 Warning: (3719, "'utf8' is currently an alias for the character ...
分类:
数据库 时间:
2020-06-27 09:30:12
阅读次数:
114
1 连接指令 #连接MySQL数据库的命令语法格式: [root@mysql50 ~]# mysql [-h服务器IP或域名 -u用户名 -p密码 数据库名称] #注意事项: #操作指令不区分大小写(密码和变量除外) #每条SQL语句都以分号;结束 #默认不支持Tab键补齐 #\c 可以取消书写错误 ...
分类:
数据库 时间:
2020-06-26 22:01:33
阅读次数:
67