摘要: 使用步骤: 1.建立Filter类。实现Filter接口 @WebFilter(filterName = "test", urlPatterns = "/success/ ") public class UrlFilter implements Filter { @Override public v 阅读全文
posted @ 2019-08-01 10:35 Utb 阅读(131) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/a549137619/article/details/80295197 阅读全文
posted @ 2018-12-13 16:15 Utb 阅读(100) 评论(0) 推荐(0) 编辑
摘要: <!--连接mysql --><dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.11</version></dependency><!--mybatis 使 阅读全文
posted @ 2018-09-16 15:01 Utb 阅读(168) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/gengyazhou123/article/details/52170721 阅读全文
posted @ 2018-07-09 22:20 Utb 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 由于dubbox并未上传至maven ,而我们项目中利用maven管理项目jar,所以需要将dubbox编译至本地maven中。 https://blog.csdn.net/jfqqqqq/article/details/79559036 --》不成功 看下思路 阅读全文
posted @ 2018-07-09 21:40 Utb 阅读(74) 评论(0) 推荐(0) 编辑
摘要: https://github.com/houtianze/bypy 阅读全文
posted @ 2018-03-18 13:04 Utb 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 哈哈,废了老半天劲,试了不少错误方法,终于成功了。 参考 http://blog.csdn.net/onlyellow/article/details/52021429简单说,利用shadowsocks需要客户端和服务器端,其中客户端是不能访问外网的你,服务器端是能访问外网的他,你跟他是好朋友。你把 阅读全文
posted @ 2018-03-13 22:06 Utb 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 以html以post方法到servlet再到到html为例: html中的“我们”,以UTF 8编码成542523(瞎写的),保存在请求体中,送达Servlet,再任何对请求取出参数的行为之前都必须设置request.setCharacterEncoding("UTF 8"),否则服务器将以默认的解 阅读全文
posted @ 2018-01-27 21:33 Utb 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 运行时与自己预想的不一致: 输入参数是否符合代码规定的要求 阅读全文
posted @ 2018-01-27 20:13 Utb 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 环境变量就是当计算机要执行操作时,在环境变量所制定的范围内查找该操作。 比如linux的ls命令,计算机就需要在$PATH规定的目录中寻找该ls的可执行文件。 java的classpath,在该规定的目录中寻找class文件。 JAVA_HOME,在该目录中寻找java命令。 在Intellij i 阅读全文
posted @ 2018-01-27 00:29 Utb 阅读(320) 评论(1) 推荐(0) 编辑