yjanb11

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2019年11月22日

摘要: public String GetAllPermissions() { var permissions = PermissionManager.GetAllPermissions();Newtonsoft.Json.JsonConvert.SerializeObject(permissions.ToList()); ... 阅读全文
posted @ 2019-11-22 13:49 yjanb11 阅读(95) 评论(0) 推荐(0) 编辑

2019年11月12日

摘要: 用abp可能会对它的架构各层的作用有一些迷茫,比如我们平时开发中的分层中可能会专门有一个模型层(可能命名为xxx.Model),用来存储开发中和数据库表相对于的模型映射类,可能会有一个持久层/仓储层(可能命名为xxx.Repository)来专门处理数据的持久化(即增删查改等)。所以在初使用abp时 阅读全文
posted @ 2019-11-12 14:52 yjanb11 阅读(167) 评论(0) 推荐(0) 编辑

摘要: Git相关软件 1.Git-2.15.0-64-bit.exe 打包下载地址: https://share.weiyun.com/851ab18164c2c42f8a6bda71ba33cf77 Git相关软件 1.Git-2.15.0-64-bit.exe 打包下载地址: https://shar 阅读全文
posted @ 2019-11-12 14:35 yjanb11 阅读(36) 评论(0) 推荐(0) 编辑

摘要: npm install --registry=https://registry.npm.taobao.org 阅读全文
posted @ 2019-11-12 14:15 yjanb11 阅读(88) 评论(0) 推荐(0) 编辑

摘要: 根据自己系统的需要去选择安装Node.js(官网地址:https://nodejs.org/en/download/)验证是否安装成功,在windos命令窗口输入:node -v 通过npm安装VUE脚手架(vue-cli):npm install -g vue-cli //-g是全局安装,验证是否 阅读全文
posted @ 2019-11-12 14:00 yjanb11 阅读(74) 评论(0) 推荐(0) 编辑

摘要: windows中'ts-node' 不是内部或外部命令,也不是可运行的程序,cross-env简介npm install -g cross-env 阅读全文
posted @ 2019-11-12 13:59 yjanb11 阅读(1510) 评论(0) 推荐(0) 编辑

2019年10月31日

摘要: <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-netflix-core</artifactId> <version>1.3.5.RELEASE</version> </depend 阅读全文
posted @ 2019-10-31 09:18 yjanb11 阅读(62) 评论(0) 推荐(0) 编辑

2019年10月30日

摘要: 环境: IDEA maven3.0 springboot2.2.0 特别注意springboot的版本,1.0和2.0有很大区别 解决办法: pom添加: 阅读全文
posted @ 2019-10-30 17:15 yjanb11 阅读(3452) 评论(0) 推荐(0) 编辑

摘要: https://blog.csdn.net/Handsome_long/article/details/80494147 最近在学习SpringBoot做了一些简单的总结:1.独立运行Spring项目:SpringBoot集成了Tomcat可以直接打成jar包在Linux服务器上直接运行,运行一个S 阅读全文
posted @ 2019-10-30 15:57 yjanb11 阅读(59) 评论(0) 推荐(0) 编辑

摘要: https://blog.csdn.net/qq_38462278/article/details/81976483 Spring Cloud中使用Eureka来做服务注册和发现,来统一管理微服务实例。 1.使用IDEA创建一个空的Maven项目做父模块 (也可以不用父项目,所有模块都用平行结构) 阅读全文
posted @ 2019-10-30 13:58 yjanb11 阅读(84) 评论(0) 推荐(0) 编辑