摘要:
Promise.all([ 需要异步一起执行的方法]).then(res=>{ res里面存放的是数组,上面有多少个方法就有多少个index,每个index是上面对应的方法的返回值})实战//获取列表 getDataList(){ Promise.a... 阅读全文
摘要:
程序1package com.cxl.demo;public class T1 { class User{ int id; String name; User(int id,String name){ this.id = id; this.na... 阅读全文
摘要:
Tomcat优化1. 典型的tomcat优化配置set JAVA_OPTS= -Xms4g #起始4G内存 -Xmx4g #最大4G内存 -Xss512k -XX:+AggressiveOpts #进攻性的优化 -XX:+Us... 阅读全文
摘要:
SpringBoot+SpringData快速完成微服务架构CRUD操作SpringBoot+SpringData快速完成微服务架构CRUD操作废话不多说,直接上项目演示按条件查询按名称查询添加图书可进行修改可进行删除后台运行的SQ... 阅读全文
摘要:
先说下项目结构解决thymeleaf报错问题在pom文件中加正文1 引入SpringSecurity2 编写配置类官网描述自己写的3 控制请求访问权限启动运行主页可以访问,子页面都无法访问开启自动配置的登陆功能当请... 阅读全文
摘要:
SpringBoot微服务整合MyBatis完成CRUDSpringBoot微服务整合MyBatis完成员工的CRUD创建springboot项目需要导入以下插件Web cache mybatis mysql 整体项目结构实体类mapper... 阅读全文
摘要:
在linux安装rabbitmq 依赖 依赖 org.springframework.boot spring-boot-starter-amqp 配置 配置 ... 阅读全文
摘要:
public BufferedImage createVerifyCode(MiaoshaUser user, long goodsId) { if(user == null || goodsId getMiaoshaVerifyCod(HttpServletRe... 阅读全文
摘要:
EhCache 是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认的CacheProvider。 我们使用EhCache缓存框架主要是为了判断重复Url,每次爬取一个网页,都把Url存储到缓存中,并且每次爬某个网页之前,都去缓存中搜索下... 阅读全文