1.Tomcat升级问题:
java.lang.IllegalArgumentException: 在请求目标中找到无效字符。有效字符在RFC 7230和RFC 3986中定义。
解决方法:修改server.xml 配置
tomcat --> conf–> server.xml
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="utf-8" relaxedPathChars="|{}[],%"
relaxedQueryChars="|{}[],%" />
2.Mysql升级问题:
MySQL-this is incompatible with sql_mode=only_full_group_by。
解决方法:修改my.ini(win 一般在根目录下),my.cnf(linux /etc下),只在[mysqld]下面添加这段 sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION
暂时问题就这些,边测边加