上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 47 下一页
摘要: java URLEncode = Delhpi httpencode(utf8encode())反之java URLDecode = Delhpi utf8decode(httpdecode()) 阅读全文
posted @ 2020-07-30 10:25 huiy_小溪 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 直接访问IP和端口是没有问题,用了nginx之后产生了问题。经查找,需要在nginx中设置(红色部分)。 server { listen 80; server_name jsjnks.test.com; charset utf-8; location / { proxy_pass http://js 阅读全文
posted @ 2020-07-26 22:53 huiy_小溪 阅读(1938) 评论(0) 推荐(0) 编辑
摘要: 一开始以为是外国网站访问不了,后来就换成了https://start.aliyun.com/ ,但还是报这个错误。后来想想这个问题之前解决,应该是JDK版本的问题。JAVA_HOME配置的JDK11,后来给改成了JDK8,然后就出现了这个问题。 还原之后问题消失了。 阅读全文
posted @ 2020-07-26 09:39 huiy_小溪 阅读(1898) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/qq_34495557/article/details/84563280今天在maven 编译打包一个工程时,报了上面的错误,以前一直都是好的,不知道哪里动了。后来去除了server runtime的引用,只加入下面依赖,maven打包就没有问题了。 javax.servlet javax.servlet-api 3.1.0 ... 阅读全文
posted @ 2020-07-25 23:14 huiy_小溪 阅读(894) 评论(0) 推荐(0) 编辑
摘要: 解决办法:import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;... 阅读全文
posted @ 2020-07-25 22:18 huiy_小溪 阅读(968) 评论(0) 推荐(0) 编辑
摘要: 1.实现自定义mybatis拦截器@Component@Intercepts({ @Signature(type = Executor.class, method = "update", args = { MappedStatement.class, Object.class }) })public class MybatisInterceptor implements Interceptor {... 阅读全文
posted @ 2020-07-21 13:34 huiy_小溪 阅读(1599) 评论(2) 推荐(0) 编辑
摘要: 用mina做了一个UDP接收的程序,绑定的时候没有指定IP,只是指定了端口。然后还是在本机连接127.0.0.1和UDP端口号,死活收不到数据。用TCP/UDP工具发送数据,提示如下: The virtual circuit was reset by the remote side executin 阅读全文
posted @ 2020-07-18 18:24 huiy_小溪 阅读(2850) 评论(0) 推荐(0) 编辑
摘要: upstream test { server 127.0.0.1:9080 weight=1; #server 192.168.4.68:80 weight=1; #ip_hash; } server { listen 80; server_name jsjnks.test.com; charset 阅读全文
posted @ 2020-07-18 11:06 huiy_小溪 阅读(1519) 评论(0) 推荐(1) 编辑
摘要: 原文:https://www.cnblogs.com/codecat/p/12076186.html首先,使用cmd命令打开CMD命令窗口使用下面的命令来查看某端口被占用的情况,以8035为例:netstat -ano|findstr "8065"结果如下图:最后一列的6532为PID号,根据这个PID号继续找相对应的进程,使用下面的命令:tasklist|findstr "6532"结果如下图:... 阅读全文
posted @ 2020-07-17 23:39 huiy_小溪 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 原来IDE是idea,在pom中做了文件复制的配置,后来又改回了eclipse,把idea的文件复制配置给去了,就出现了上述情况。解决办法:maven--->force update 阅读全文
posted @ 2020-07-17 20:33 huiy_小溪 阅读(275) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 47 下一页