摘要: 解决RMI的Connection refused to host: 127.0.0.1 1、前言# 在学习RMI原理时,遇到Connection refused to host: 127.0.0.1; 这么一个问题,网络上关于该问题的解决有很多种,贴出遇到的两个解决1、由于解析java通过host获 阅读全文
posted @ 2022-06-14 22:17 小胡0602 阅读(872) 评论(0) 推荐(0) 编辑
摘要: 转载 https://blog.51cto.com/haolloyin/332426 仅供学习使用,侵权必删 RMI(即Remote Method Invoke 远程方法调用)。在Java中,只要一个类extends了java.rmi.Remote接口,即可成为存在于服务器端的远程对象,供客户端访问 阅读全文
posted @ 2022-06-14 19:26 小胡0602 阅读(149) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get install gobjc 阅读全文
posted @ 2021-06-10 01:13 小胡0602 阅读(57) 评论(0) 推荐(0) 编辑
摘要: package com.demo02; import java.util.Arrays; /** * 快速排序 */ public class QuickSort { public static void main(String[] args) { int[] arr=new int[]{4,123 阅读全文
posted @ 2021-03-05 09:51 小胡0602 阅读(52) 评论(0) 推荐(0) 编辑
摘要: package com.demo02; import java.util.Arrays; /** * 冒泡排序 */ public class BubbleSort { public static void main(String[] args) { int[] arr=new int[]{4,12 阅读全文
posted @ 2021-03-05 09:47 小胡0602 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 转载自: https://blog.csdn.net/f45056231p/article/details/81545964 Spring容器与SpringMVC容器1.疑问:为什么不用spring去管理所有类?我们配置springMVC 中,为什么controller不直接交给spring 管理而 阅读全文
posted @ 2021-02-20 22:07 小胡0602 阅读(392) 评论(0) 推荐(0) 编辑
摘要: setcontent bug 阅读全文
posted @ 2021-02-19 16:28 小胡0602 阅读(224) 评论(0) 推荐(0) 编辑
摘要: HTTP Status 500 - Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exce 阅读全文
posted @ 2021-02-19 13:40 小胡0602 阅读(431) 评论(0) 推荐(0) 编辑
摘要: layui dtree组件无法加载本地json文件 需要在 render后添加 method:'get' 阅读全文
posted @ 2021-02-15 18:47 小胡0602 阅读(79) 评论(0) 推荐(1) 编辑
摘要: 转载 https://blog.csdn.net/buyaoshuohua1/article/details/99223071<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" /> 第一点: 在mybatis-s 阅读全文
posted @ 2021-02-12 19:50 小胡0602 阅读(138) 评论(0) 推荐(0) 编辑