springboot项目
项目笔记
qingwenc
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
springboot单元测试
1.添加依赖包 <!-- Spring Boot Test 依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <!-- <scope>test</sco原创 2021-06-23 20:51:03 · 182 阅读 · 0 评论 -
springboot中静态资源过滤
@ControllerAdvice @Configuration public class EnableMvcConfig implements WebMvcConfigurer{ /*** * 静态资源放行 * @param registry */ @Override public void addResourceHandlers(Reso...原创 2020-04-19 21:32:03 · 2295 阅读 · 0 评论 -
Kibana使用
DSL语句使用 #查看所有索引 GET /_cat/indices?v #删除某个索引 DELETE /skuinfo #新增索引 PUT /user #创建映射 PUT /user/userinfo/_mapping { "properties": { "name":{ "type": "text", "analyzer": "ik_smart", ...原创 2020-04-10 14:23:43 · 268 阅读 · 0 评论
分享