- 博客(9)
- 收藏
- 关注
原创 Vue+elementUI container全页面布局
1.在App.vue中修改 <template> <div id="app"> <router-view/> </div> </template> <script> export default { name: 'App' } </script> <style> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif;
2021-02-20 16:54:59
2348
原创 Springboot+JWT+shiro+redis可用于无状态服务 前后端分离
参照 jeecgboot 源码 由于涉及本人毕设,代码和问题可私信我 前后端分离跨域问题 package com.pms.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.cors.UrlBasedCorsConfigurationSource; imp
2021-02-14 16:06:45
9073
2
原创 ElasticSearch 7.6.1下载、使用及闪退问题
ElasticSearch概述 ElasticSearch下载、安装、闪退 ElasticSearch7.6.1 链接:https://pan.baidu.com/s/1QEKgvSr-7INjwBnO9XbQyg 提取码:kkds 要求:JDK1.8以上 Java开发,ElasticSearch的版本要和Java的核心jar包版本对应 elasticsearch-7.6.1文件下的内容 闪退问题 1.由于启东时默认运行内存为1g,内存不足导致启动失败,修改jvm.options,将1g改为256m
2021-02-01 22:47:09
1230
原创 分布式 Dubbo+Zookeeper+SpringBoot
分布式系统理论 RPC PRC两个核心模块:通讯、序列化 Dubbo 1.下载dubbo-admin (dubbo-admin是一个监控管理后台 zookeeper是注册中心) https://github.com/apache/dubbo-admin/tree/master 2.在项目目录下打包dubbo-admin mvn clean package -Dmaven.test.skip=true 3.先启动zookeeper服务端再执行jar包 4.进入dubbo管理界面localhost
2021-01-25 20:24:35
129
原创 Redis五大基本类型、三种特殊类型、Jedis以及整合SpringBoot的使用
Redis-key redis官网命令 127.0.0.1:6379> keys * (empty array) 127.0.0.1:6379> set name zzp OK 127.0.0.1:6379> EXISTS name #判断当前的key是否存在 (integer) 1 127.0.0.1:6379> exists age (integer) 0 127.0.0.1:6379> move name 0 (error) ERR source and destinat
2020-12-09 19:48:56
281
原创 Springboot、mybatis、excel工具、shiro、swagger、Page分页等详细用法
Spring5常用注解大全 @Autowired 自动装配 通过类型 ByType 若Autowired不能唯一自动装配上属性,则需要通过@Qualifier(Value=“XXX”) @Resource 自动装配 通过名字、类型 ByName ByType @Nullable 字段标记了该注解,说明这个字段可以为null @Component 组件,放在类上,说明这个类被spring管理了(就是bean) @Repository 用在dao层,作用:被spring管理 @Service 用在service
2020-11-04 00:27:09
2119
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅