摘要:
参考:https://www.bnxb.com/linuxserver/27457.html https://blog.csdn.net/yelllowcong/article/details/75906701 阅读全文
摘要:
使用源码安装git后使用git --version命令出现的问题 $ git --version-bash: /usr/bin/git: No such file or directory 参考:https://www.cnblogs.com/imyalost/p/8715688.html 一开始我 阅读全文
摘要:
java6的做法 HashMap<String,List<User>> map = new HashMap<String,List<User>>(); for (User user : list) { //如果map中已经存在这个分组则直接放入 if(map.containsKey(User.get 阅读全文
摘要:
测试的时候,前端在自己本地跑前端项目然后访问后台本地跑的项目,出现跨域问题.解决方法如下:springboot项目里增加一个配置类 import org.springframework.context.annotation.Bean; import org.springframework.conte 阅读全文
摘要:
RabbitMQ介绍 RabbitMQ是实现AMQP(高级消息队列协议)的消息中间件的一种,最初起源于金融系统,用于在分布式系统中存储转发消息,在易用性、扩展性、高可用性等方面表现不俗。RabbitMQ主要是为了实现系统之间的双向解耦而实现的。当生产者大量产生数据时,消费者无法快速消费,那么需要一个 阅读全文
摘要:
第一步:下载谷歌访问助手 http://www.ggfwzs.com/按照网站下面的教程一般能成功安装此插件 如果开发者模式也不能成功安装,出现:"无法从此站点安装插件"之类的提示请看下面: 1.将谷歌访问助手.crx文件的后缀 crx改成 rar或者zip.然后用解压软件解压2.打开chrome的 阅读全文
摘要:
我们在使用oracle数据库时,需要ojdbc驱动程序。 我们需要通过maven手工地安装到本地仓库。 以下以11.2.0.3版本为例进行操作说明。 下载ojdbc.jar包 这个当然是最好去官网下载了。我看了一哈http://mvnrepository.com这个仓库上有,具体页面地址为: htt 阅读全文
摘要:
pom build节点下面添加resource配置: <resources> <resource> <directory>src/main/resources/</directory> <filtering>true</filtering> <includes> <include>**/*.prop 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8" standalone="no"?><templates><template autoinsert="false" context="constructorcomment_context" deleted="false" des 阅读全文
摘要:
//统计每个等级的人数 //<pid,topLevel> Map<String,Integer> map=new HashMap<>(); map.put("1001",3); map.put("1002",4); map.put("1003",3); Map<Integer,Integer> re 阅读全文