摘要:
如果 d:\upload\file\ 文件夹不存在,会报错 String strPath = "d:\\upload\\file\\2.mp3"; File file = new File(strPath); if(!file.exists())){ file.createNewFile(); } 阅读全文
摘要:
public void test() { List<User> list = new ArrayList<>(); //User 实体 测试用 String id,name; //当前测试以id来分组,具体请按开发场景修改 list.add(new User("1", "1")); list.add 阅读全文
摘要:
tomcat启动总是出现Cannot assign requested address: JVM_Bind异常 解决方法: 将计算机的C:\Windows\System32\drivers\etc\hosts文件中发现如下部分内容: # localhost name resolution is ha 阅读全文
摘要:
原样传递给 RegisterModel 时,应该为 阅读全文
摘要:
出现此问题,有可能是spring cloud 与spring boot 版本不匹配引发的问题,此次用的版本是:Finchley.RC1 经过一番关键字查找,发现spring cloud 与spring boot有着比较严格的版本匹配。不能再像开发单体应用时,随时变更spring boot的版本。 现 阅读全文
摘要:
linux安装环境 Ubuntu18.04 阅读全文
摘要:
window->preference->java->code styple->code template->Comments 设置完后点Apply 阅读全文
摘要:
1,安装rabbitmq前要准备的基础环境 2,需下载的安装文件如下 注意事项: erlang的版本会影响到rabbitmq的安装,两者有个版本对照 查看对照的地址:http://www.rabbitmq.com/which-erlang.html 3,下载文件后进行安装,依次执行以下命令 4,需要 阅读全文