上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 50 下一页
摘要: 百度飞桨(PaddlePaddle)-数字识别 在Pycharm中使用Matplotlib中的pyplot时,运行代码报错: MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive 阅读全文
posted @ 2023-05-05 08:58 VipSoft 阅读(774) 评论(0) 推荐(0) 编辑
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 无太多理论,直接盘 一般用于Web管理系统 可以先看 SpringBoot SpringSecurity 基于内存的使用介绍 a56爆大奖在线娱乐介绍如何整合 SpringSecurity + MySQL + JWT 数据结构 数 阅读全文
posted @ 2023-05-04 13:03 VipSoft 阅读(1202) 评论(0) 推荐(7) 编辑
摘要: SpringBoot 集成 Security 时,报 Encoded password does not look like BCrypt 原因:SecurityConfig 必须 Bean 的形式实例化 /** * 配置用户身份的configure()方法 * * @param auth * @t 阅读全文
posted @ 2023-05-03 20:46 VipSoft 阅读(512) 评论(0) 推荐(0) 编辑
摘要: java list 中的字符是否包括在另一个 list 中 ,::方法使用 阅读全文
posted @ 2023-05-02 23:15 VipSoft 阅读(113) 评论(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 阅读(1130) 评论(0) 推荐(0) 编辑
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 附源码,废话不多直接盘 SpringBoot已经为用户采用默认配置,只需要引入pom依赖就能快速启动Spring Security。 目的:验证请求用户的身份,提供安全访问 优势:基于Spring,配置方便,减少大 阅读全文
posted @ 2023-04-28 09:35 VipSoft 阅读(581) 评论(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 阅读(806) 评论(0) 推荐(0) 编辑
摘要: 使用 Kubeadm 部署 Kubernetes(K8S) 安装--附K8S架构图 Kubernetes(K8S) kubesphere 安装 官网地址:https://kubesphere.com.cn/ KubeSphere 是个全栈的Kubernetes容器云PaaS解决方案 KubeSphe 阅读全文
posted @ 2023-04-26 21:07 VipSoft 阅读(1598) 评论(0) 推荐(2) 编辑
摘要: Consider defining a bean of type 'org.springframework.security.authentication.AuthenticationManager' in your configuration. 阅读全文
posted @ 2023-04-25 14:49 VipSoft 阅读(1349) 评论(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 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 人工智能、机器学习和深度学习覆盖的技术范畴是逐层递减的,三者的关系:人工智能 > 机器学习 > 深度学习。 人工智能(ArtificialIntelligence,AI)是最宽泛的概念,是研发用于模拟、延伸和扩展人的智能的理论、方法、技术及应用系统的一门新的技术科学 机器学习(MachineLear 阅读全文
posted @ 2023-04-24 11:42 VipSoft 阅读(888) 评论(0) 推荐(2) 编辑
摘要: Java 的 SPI 机制 Java SpringBoot 加载 yml 配置文件中字典项 Spring的Factories就是Spring版本的Java Spi。 Spring Factories的最重要的功能就是:可以通过配置文件指定Spring容器加载一些特定的组件。 Spring Facto 阅读全文
posted @ 2023-04-21 08:48 VipSoft 阅读(305) 评论(0) 推荐(1) 编辑
摘要: 什么是SPI机制? SPI机制( Service Provider Interface)是Java的a56爆大奖在线娱乐服务发现机制,为了方便应用扩展。那什么是服务发现机制?简单来说,就是你定义了一个接口,但是不提供实现,接口实现由其他系统应用实现。你只需要提供a56爆大奖在线娱乐可以找到其他系统提供的接口实现类的能力或者说机制. 阅读全文
posted @ 2023-04-20 12:03 VipSoft 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 实际项目中,如果将该类信息放配置文件中的话,一般会结合Nocas一起使用 将字典数据,配置在 yml 文件中,通过加载yml将数据加载到 Map中 Spring Boot 中 yml 配置、引用其它 yml 中的配置。# 在配置文件目录(如:resources)下新建application-xxx 阅读全文
posted @ 2023-04-19 12:20 VipSoft 阅读(903) 评论(2) 推荐(2) 编辑
摘要: 阅读全文
posted @ 2023-04-19 09:11 VipSoft 阅读(59) 评论(0) 推荐(0) 编辑
摘要: Quartz 简单使用 Java SpringBoot 中,动态执行 bean 对象中的方法 源代码地址 => https://gitee.com/VipSoft/VipBoot/tree/develop/vipsoft-quartz 工作原理解读 只要配置好 DataSource Quartz 会 阅读全文
posted @ 2023-04-18 10:59 VipSoft 阅读(456) 评论(0) 推荐(2) 编辑
摘要: Java SpringBoot 7z 压缩、解压 阅读全文
posted @ 2023-04-17 13:33 VipSoft 阅读(1069) 评论(0) 推荐(1) 编辑
摘要: 根据不同的条件,调用不同的 bean 对象,执行对象中的方法 阅读全文
posted @ 2023-04-14 13:08 VipSoft 阅读(1109) 评论(0) 推荐(0) 编辑
摘要: Java SpringBoot 通过javax.validation.constraints下的注解,实现入参数据自动验证 如果碰到 `@NotEmpty` 否则不生效,注意看下 `@RequestBody` 前面是否加上了`@Valid` 阅读全文
posted @ 2023-04-13 14:22 VipSoft 阅读(593) 评论(0) 推荐(1) 编辑
摘要: Scheduler 每次执行,都会根据JobDetail创建一个新的Job实例,这样就可以规避并发访问的问题(jobDetail的实例也是新的) Quzrtz 定时任务默认都是并发执行,不会等待上一次任务执行完毕,只要间隔时间到就会执行,如果定时任务执行太长,会长时间占用资源,导致其它任务堵塞 @D 阅读全文
posted @ 2023-04-12 11:49 VipSoft 阅读(375) 评论(0) 推荐(2) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 50 下一页