摘要:
如果使用vue-router在当前页面刷新,则会中断此操作,没有反应,错误信息是: Error: Avoided redundant navigation to current location: "/". at createRouterError (vue-router.esm.js?8c4f:2 阅读全文
摘要:
环境 前端 vue + axios 后端 springboot 问题与方案 这里可以看文献的==《跨域资源共享》==;请求分为简单请求和复杂请求,简单请求直接进行正式请求,而复杂请求则会在正式请求之前发送请求方式为OPTIONS的预检请求。 跨域解决方案(针对复杂请求) 第一种 原因: 缺少跨域的H 阅读全文
摘要:
import java.util.ArrayList; import java.util.List; import java.util.function.Consumer; import java.util.function.Supplier; public class Builder<T> { p 阅读全文
摘要:
@EnableMongoRepositories @ComponentScan(basePackages = "cn.example") @Configuration public class AppConfig extends AbstractMongoClientConfiguration { 阅读全文
摘要:
如果是通过 RedisRepository 定义的实体,可能存在想要忽略的属性,那么,就可以 使用 org.springframework.data.annotation.Transient 注解,就可以在保存时忽略属性了 阅读全文
摘要:
由于我SpringBoot项目,集成了SpringSecurity,而Security框架使用Redis存储Session,所以,这里列出几个关键的类 org.springframework.session.data.redis.RedisIndexedSessionRepository:解析请求携 阅读全文
摘要:
SpringBoot项目集成ArtemisMQ,那么想动态的更换消息类型,怎么办呢? 通过设置org.springframework.jms.support.destination.JmsDestinationAccessor#setDestinationResolver 方法进行设置目的地解析器 阅读全文
摘要:
完整异常内容:org.springframework.jms.UncategorizedJmsException: Uncategorized exception occurred during JMS processing; nested exception is javax.jms.JMSExc 阅读全文
摘要:
对应的配置属性文件:org.springframework.boot.autoconfigure.web.servlet.MultipartProperties 由于我是yml文件,所以直接这样定义就行,无需定义bean了 可以自行分析org.springframework.boot.autocon 阅读全文
摘要:
官方文档:https://docs.spring.io/spring-data/redis/docs/2.3.4.RELEASE/reference/html/#redis.repositories.partial-updates SpringDataRedis文档13.9部分介绍了使用持续部分更新 阅读全文