上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 61 下一页
摘要: Intellij IDEA、 Pycharm 等开发工具,超过 竖线,Ctrl + L 格式化时,就会换行 , File -> Settings -> Editor -> Code Style -> Hard wrap at 值调整 ( 调到合适的值 ) 阅读全文
posted @ 2023-05-05 09:48 VipSoft 阅读(598) 评论(0) 推荐(1)
摘要: 百度飞桨(PaddlePaddle)-数字识别 在Pycharm中使用Matplotlib中的pyplot时,运行代码报错: MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive 阅读全文
posted @ 2023-05-05 08:58 VipSoft 阅读(1071) 评论(0) 推荐(0)
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 无太多理论,直接盘 一般用于Web管理系统 可以先看 SpringBoot SpringSecurity 基于内存的使用介绍 本文介绍如何整合 SpringSecurity + MySQL + JWT 数据结构 数 阅读全文
posted @ 2023-05-04 13:03 VipSoft 阅读(1644) 评论(0) 推荐(7)
摘要: SpringBoot 集成 Security 时,报 Encoded password does not look like BCrypt 原因:SecurityConfig 必须 Bean 的形式实例化 /** * 配置用户身份的configure()方法 * * @param auth * @t 阅读全文
posted @ 2023-05-03 20:46 VipSoft 阅读(1063) 评论(0) 推荐(0)
摘要: java list 中的字符是否包括在另一个 list 中 ,::方法使用 阅读全文
posted @ 2023-05-02 23:15 VipSoft 阅读(156) 评论(0) 推荐(1)
摘要: MacOS 上您需要安装 unrar 以支持 PaddlePaddle,可以使用命令brew install unrar 执行命令后发现 brew 不存在 jimmy@MacBook-Pro ~ % brew install unrar zsh: command not found: brew ji 阅读全文
posted @ 2023-05-01 09:41 VipSoft 阅读(2264) 评论(0) 推荐(0)
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 附源码,废话不多直接盘 SpringBoot已经为用户采用默认配置,只需要引入pom依赖就能快速启动Spring Security。 目的:验证请求用户的身份,提供安全访问 优势:基于Spring,配置方便,减少大 阅读全文
posted @ 2023-04-28 09:35 VipSoft 阅读(719) 评论(2) 推荐(3)
摘要: 安装KubeSphere最好的方法就是参考官方文档,而且官方文档是中文的。 官网地址:https://kubesphere.com.cn/ https://github.com/kubesphere/kubesphere/blob/master/README_zh.md Kubernetes(K8S 阅读全文
posted @ 2023-04-27 21:06 VipSoft 阅读(1035) 评论(0) 推荐(0)
摘要: 使用 Kubeadm 部署 Kubernetes(K8S) 安装--附K8S架构图 Kubernetes(K8S) kubesphere 安装 官网地址:https://kubesphere.com.cn/ KubeSphere 是个全栈的Kubernetes容器云PaaS解决方案 KubeSphe 阅读全文
posted @ 2023-04-26 21:07 VipSoft 阅读(1870) 评论(0) 推荐(2)
摘要: Consider defining a bean of type 'org.springframework.security.authentication.AuthenticationManager' in your configuration. 阅读全文
posted @ 2023-04-25 14:49 VipSoft 阅读(1974) 评论(0) 推荐(0)
摘要: index.wxml <canvas type="2d" id="canvas" bindtouchmove="move" bindtouchstart="start" binderror="error" style="width:{{width}}px;height:{{height}}px;"> 阅读全文
posted @ 2023-04-25 11:37 VipSoft 阅读(230) 评论(0) 推荐(0)
摘要: 《动手学深度学习》 https://zh.d2l.ai/ 人工智能、机器学习和深度学习覆盖的技术范畴是逐层递减的,三者的关系:人工智能 > 机器学习 > 深度学习。 人工智能(ArtificialIntelligence,AI)是最宽泛的概念,是研发用于模拟、延伸和扩展人的智能的理论、方法、技术及应 阅读全文
posted @ 2023-04-24 11:42 VipSoft 阅读(2102) 评论(0) 推荐(3)
摘要: Java 的 SPI 机制 Java SpringBoot 加载 yml 配置文件中字典项 Spring的Factories就是Spring版本的Java Spi。 Spring Factories的最重要的功能就是:可以通过配置文件指定Spring容器加载一些特定的组件。 Spring Facto 阅读全文
posted @ 2023-04-21 08:48 VipSoft 阅读(432) 评论(0) 推荐(1)
摘要: 什么是SPI机制? SPI机制( Service Provider Interface)是Java的一种服务发现机制,为了方便应用扩展。那什么是服务发现机制?简单来说,就是你定义了一个接口,但是不提供实现,接口实现由其他系统应用实现。你只需要提供一种可以找到其他系统提供的接口实现类的能力或者说机制. 阅读全文
posted @ 2023-04-20 12:03 VipSoft 阅读(195) 评论(0) 推荐(0)
摘要: 实际项目中,如果将该类信息放配置文件中的话,一般会结合Nocas一起使用 将字典数据,配置在 yml 文件中,通过加载yml将数据加载到 Map中 Spring Boot 中 yml 配置、引用其它 yml 中的配置。# 在配置文件目录(如:resources)下新建application-xxx 阅读全文
posted @ 2023-04-19 12:20 VipSoft 阅读(1172) 评论(2) 推荐(2)
摘要: 阅读全文
posted @ 2023-04-19 09:11 VipSoft 阅读(91) 评论(0) 推荐(0)
摘要: Quartz 简单使用 Java SpringBoot 中,动态执行 bean 对象中的方法 源代码地址 => https://gitee.com/VipSoft/VipBoot/tree/develop/vipsoft-quartz 工作原理解读 只要配置好 DataSource Quartz 会 阅读全文
posted @ 2023-04-18 10:59 VipSoft 阅读(641) 评论(0) 推荐(2)
摘要: Java SpringBoot 7z 压缩、解压 阅读全文
posted @ 2023-04-17 13:33 VipSoft 阅读(1605) 评论(0) 推荐(1)
摘要: 根据不同的条件,调用不同的 bean 对象,执行对象中的方法 阅读全文
posted @ 2023-04-14 13:08 VipSoft 阅读(1770) 评论(0) 推荐(0)
摘要: Java SpringBoot 通过javax.validation.constraints下的注解,实现入参数据自动验证 如果碰到 `@NotEmpty` 否则不生效,注意看下 `@RequestBody` 前面是否加上了`@Valid` 阅读全文
posted @ 2023-04-13 14:22 VipSoft 阅读(834) 评论(0) 推荐(1)
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 61 下一页