终极解决方案: 从错误日志中看到 负责解析http请求的是 ,它对请求对URL中对字符做了限制,具体代码如下: IS_NOT_REQUEST_TARGET[]中定义了一堆not request target 转换过来就是以下字符(对应10进制ASCII),也就是URL中不能包含的特殊字符: 我碰到这 ...
分类:
其他好文 时间:
2020-01-30 19:32:02
阅读次数:
111
com.mysql.jdbc.Driver 是 mysql connector java 5中的, com.mysql.cj.jdbc.Driver 是 mysql connector java 6中的 1、JDBC连接Mysql5 com.mysql.jdbc.Driver: 2、JDBC连接My ...
分类:
数据库 时间:
2020-01-30 19:06:03
阅读次数:
81
Java Character类 转义序列 Character方法 Character类用于对单个字符进行操作。 Character类在对象中包装一个基本类型char的值。 char ch='a'; char uniChar='\u039A';//Unicode字符表达形式 char[] charAr ...
分类:
编程语言 时间:
2020-01-30 12:40:06
阅读次数:
72
Given a palindromic string palindrome, replace exactly one character by any lowercase English letter so that the string becomes the lexicographically ...
分类:
其他好文 时间:
2020-01-30 09:47:14
阅读次数:
94
Given a string s consisting only of letters 'a' and 'b'. In a single step you can remove one palindromic subsequence from s. Return the minimum number ...
分类:
其他好文 时间:
2020-01-29 12:53:49
阅读次数:
94
链接: https://codeforces.com/problemset/problem/915/E 题意: This year Alex has finished school, and now he is a first year student of Berland State Univer ...
分类:
其他好文 时间:
2020-01-28 15:47:37
阅读次数:
78
原因及解决办法: "https://docs.spring.io/spring boot/docs/2.0.3.RELEASE/reference/htmlsingle/ howto use tomcat legacycookieprocessor" @Configuration public cl ...
分类:
编程语言 时间:
2020-01-28 09:15:11
阅读次数:
80
Web 综合开发 Web 开发 Spring Boot Web 开发非常的简单,其中包括常用的 json 输出filters、property、log 等 json 接口开发 在以前的spring 开发的时候需要我们提供json接口的时候需要做那些配置呢: 1.添加 jackjson 等相关jar包 ...
分类:
编程语言 时间:
2020-01-27 23:32:33
阅读次数:
109
题目如下: Given a palindromic string palindrome, replace exactly one character by any lowercase English letter so that the string becomes the lexicographi ...
分类:
其他好文 时间:
2020-01-27 19:23:10
阅读次数:
72
MYSQL常用命令 1.导出整个数据库 mysqldump -u 用户名 -p –default-character-set=latin1 数据库名 > 导出的文件名(数据库默认编码是latin1) mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql 2.导 ...
分类:
数据库 时间:
2020-01-26 13:00:18
阅读次数:
93