摘要: 1、在common模块添加依赖 由于redis缓存是公共应用,所以我们把依赖与配置添加到了common模块下面,在common模块pom.xml下添加以下依赖 <!-- redis --> <dependency> <groupId>org.springframework.boot</groupId 阅读全文
posted @ 2021-02-20 15:34 键盘_书生 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 一、创建视频点播微服务 1、创建微服务模块 Artifact:service-vod 2、pom (1)service-vod中引入依赖 <dependencies> <dependency> <groupId>com.aliyun</groupId> <artifactId>aliyun-java 阅读全文
posted @ 2021-02-20 14:29 键盘_书生 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 1 如下代码直接复制到pom.xml文件下。 <!-- 项目打包时会将java目录中的*.xml文件也进行打包 --> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>** 阅读全文
posted @ 2021-02-20 13:23 键盘_书生 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 一 参考 https://panjiachen.gitee.io/vue-element-admin/#/components/tinymce https://panjiachen.gitee.io/vue-element-admin/#/example/create 二、组件初始化 Tinymce 阅读全文
posted @ 2021-02-20 13:09 键盘_书生 阅读(217) 评论(0) 推荐(1) 编辑
摘要: 一、新建云存储微服务 1、在service模块下创建子模块service-oss 强行微服务... 2、配置pom.xml service-oss上级模块service已经引入service的公共依赖,所以service-oss模块只需引入阿里云oss相关依赖即可 <dependencies> <! 阅读全文
posted @ 2021-02-20 13:01 键盘_书生 阅读(183) 评论(0) 推荐(0) 编辑