上一页 1 2 3 4 5 6 ··· 118 下一页
摘要: SpringBoot3+SpringSecurity整合 Security导包: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId 阅读全文
posted @ 2024-05-31 21:34 与f 阅读(56) 评论(0) 推荐(0) 编辑
摘要: SpringBoot3 整合SpringSecurity Maven <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3 阅读全文
posted @ 2024-05-31 21:29 与f 阅读(122) 评论(0) 推荐(0) 编辑
摘要: springboot3项目的搭建四(security登录认证配置) <!--security安全配置--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-securit 阅读全文
posted @ 2024-05-31 21:24 与f 阅读(447) 评论(0) 推荐(0) 编辑
摘要: springboot3项目的搭建三(统一返回异常等) 一、统一返回 (其实两部分,一个是返回错误码可枚举可类,另一个是返回的实体其中data是泛型) 1.返回码: package com.qiqi.common.constants; public enum ReturnCode { SUCCESS( 阅读全文
posted @ 2024-05-30 09:30 与f 阅读(34) 评论(0) 推荐(0) 编辑
摘要: springboot3项目的搭建二(可连数据库的子模块) 1.先引入pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://ww 阅读全文
posted @ 2024-05-29 22:23 与f 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 在项目A中引入项目B的依赖,通过依赖传递,会把项目B中的jar都引进来,如果在项目A中不想使用项目B中的某些jar包,可以使用exclusions标签进行排除,具体该标签的用法: <!-- mybatis-spring依赖--> <dependency> <groupId>org.mybatis</ 阅读全文
posted @ 2024-05-29 10:15 与f 阅读(413) 评论(0) 推荐(0) 编辑
摘要: 转: https://blog.csdn.net/qq_40734758/article/details/132910708 https://blog.csdn.net/qq_22803841/article/details/126289285 https://blog.csdn.net/m0_47 阅读全文
posted @ 2024-05-25 14:42 与f 阅读(61) 评论(0) 推荐(0) 编辑
摘要: NuGet镜像上线试运行 为解决国内访问NuGet服务器速度不稳定的问题 ,这里推荐使用NuGet微软官方中国国内镜像 地址:https://nuget.cdn.azure.cn/v3/index.json 添加NuGet源的方式 菜单: 工具 -> NuGet包管理器 -> 程序包管理器设置 安装 阅读全文
posted @ 2024-05-23 11:03 与f 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 前言文章基于 windows环境 使用nvm安装多版本nodejs。mac可能不适用。最近公司有的项目比较老需要降低node版本才能运行,由于来回进行卸载不同版本的node比较麻烦;所以需要使用node工程多版本管理,后面自己就简单捯饬了一下nvm来管理node,顺便记录一下自己的使用过程以便于后续 阅读全文
posted @ 2024-05-17 16:27 与f 阅读(10699) 评论(0) 推荐(0) 编辑
摘要: 我们在开发node.js的时候,经常会遇到某些包无法下载, 或者下载太慢, 还有需要加载我们自己是有源中的包的问题, 今天推荐给大家的这款 nrm 镜像源管理工具就是解决这类问题的. 安装 方法也很简单, 执行 npm install nrm -g 就可以安装 # 安装nrm npm install 阅读全文
posted @ 2024-05-17 15:57 与f 阅读(172) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 118 下一页