摘要:
全局参数 1.global.js 先定义常量参数 const BASE_URL = 'http://xxxx.xxxx.com/api'; export default { BASE_URL } 2.main.js 在main.js里面创建全局参数 import global from './../ 阅读全文
摘要:
rabbitmq的direct和fanout模式 流程: 1. 请求链接并发送mq 2. 消费者获取mq并处理 请求链接并发送mq controller(IndexController): @Autowired private IndexService indexService; @Response 阅读全文
摘要:
springmvc获取所有链接信息 预期结果: /auth/groups/save_menu 保存组的菜单 /auth/menus/add 添加菜单 /auth/menus 获取菜单列表 /auth/menus/delete 删除菜单 代码: public class AuthorityInitia 阅读全文
摘要:
判断线程结束 1. 使用ExecutorService.isTerminated方式 public void executor() throws InterruptedException{ ExecutorService executorService = Executors.newFixedThr 阅读全文
摘要:
List ConcurrentModificationException 1. 报错原因( "来源" ) 调用list.remove()方法导致modCount和expectedModCount的值不一致。 当方法检测到对象的并发修改,但不允许这种修改时,抛出此异常。 2. 解决办法 public 阅读全文
摘要:
微信公众号支付(JSAPI)遇到的坑 1. 微信浏览器内支付属于微信公众号支付 2. 配置内容: 1. 接口权限:网页授权回调域名(保证文件可访问) 2. 公众号设置 功能设置:JS接口安全域名,业务域名 3. 微信支付 开发配置:支付授权目录,测试授权目录,测试白名单 其中1 2都为域名,而且不需 阅读全文
摘要:
1. 基本的xml配置 the basic structure of XML based configuration metadata: <! collaborators and configuration for this bean go here <! collaborators and con 阅读全文
摘要:
部分资料来源: 1. "深入理解Java:注解(Annotation)自定义注解入门" 2. "Java自定义注解和运行时靠反射获取注解" 3. "Java自定义注解的定义与使用" Java 自定义注解 元注解 Java注解是附加在代码中的一些元信息,用于一些工具在编译、运行时进行解析和使用,起到说 阅读全文
摘要:
HttpRequester 类有构造方法,通过构造方法,加载http请求的参数。 public HttpRequester(int connectionRequestTimeout, int connectionTimeout, int socketTimeout, String defaultCh 阅读全文
摘要:
部分资料来源: 1. "context:component scan使用说明" 2. "SpringMVC源码总结(一)HandlerMapping和HandlerAdapter入门" 3. "springmvc中url url pattern /和/ 的区别" context:component 阅读全文