上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页
摘要: java list 中的字符是否包括在另一个 list 中 ,::方法使用 阅读全文
posted @ 2023-05-02 23:15 VipSoft 阅读(132) 评论(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 阅读(2079) 评论(0) 推荐(0)
摘要: SpringBoot 集成 SpringSecurity + MySQL + JWT 附源码,废话不多直接盘 SpringBoot已经为用户采用默认配置,只需要引入pom依赖就能快速启动Spring Security。 目的:验证请求用户的身份,提供安全访问 优势:基于Spring,配置方便,减少大 阅读全文
posted @ 2023-04-28 09:35 VipSoft 阅读(659) 评论(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 阅读(969) 评论(0) 推荐(0)
摘要: 使用 Kubeadm 部署 Kubernetes(K8S) 安装--附K8S架构图 Kubernetes(K8S) kubesphere 安装 官网地址:https://kubesphere.com.cn/ KubeSphere 是个全栈的Kubernetes容器云PaaS解决方案 KubeSphe 阅读全文
posted @ 2023-04-26 21:07 VipSoft 阅读(1807) 评论(0) 推荐(2)
摘要: Consider defining a bean of type 'org.springframework.security.authentication.AuthenticationManager' in your configuration. 阅读全文
posted @ 2023-04-25 14:49 VipSoft 阅读(1925) 评论(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 阅读(186) 评论(0) 推荐(0)
摘要: 《动手学深度学习》 https://zh.d2l.ai/ 人工智能、机器学习和深度学习覆盖的技术范畴是逐层递减的,三者的关系:人工智能 > 机器学习 > 深度学习。 人工智能(ArtificialIntelligence,AI)是最宽泛的概念,是研发用于模拟、延伸和扩展人的智能的理论、方法、技术及应 阅读全文
posted @ 2023-04-24 11:42 VipSoft 阅读(1688) 评论(0) 推荐(3)
摘要: Java 的 SPI 机制 Java SpringBoot 加载 yml 配置文件中字典项 Spring的Factories就是Spring版本的Java Spi。 Spring Factories的最重要的功能就是:可以通过配置文件指定Spring容器加载一些特定的组件。 Spring Facto 阅读全文
posted @ 2023-04-21 08:48 VipSoft 阅读(385) 评论(0) 推荐(1)
摘要: 什么是SPI机制? SPI机制( Service Provider Interface)是Java的一种服务发现机制,为了方便应用扩展。那什么是服务发现机制?简单来说,就是你定义了一个接口,但是不提供实现,接口实现由其他系统应用实现。你只需要提供一种可以找到其他系统提供的接口实现类的能力或者说机制. 阅读全文
posted @ 2023-04-20 12:03 VipSoft 阅读(168) 评论(0) 推荐(0)
摘要: 实际项目中,如果将该类信息放配置文件中的话,一般会结合Nocas一起使用 将字典数据,配置在 yml 文件中,通过加载yml将数据加载到 Map中 Spring Boot 中 yml 配置、引用其它 yml 中的配置。# 在配置文件目录(如:resources)下新建application-xxx 阅读全文
posted @ 2023-04-19 12:20 VipSoft 阅读(1127) 评论(2) 推荐(2)
摘要: 阅读全文
posted @ 2023-04-19 09:11 VipSoft 阅读(69) 评论(0) 推荐(0)
摘要: Quartz 简单使用 Java SpringBoot 中,动态执行 bean 对象中的方法 源代码地址 => https://gitee.com/VipSoft/VipBoot/tree/develop/vipsoft-quartz 工作原理解读 只要配置好 DataSource Quartz 会 阅读全文
posted @ 2023-04-18 10:59 VipSoft 阅读(583) 评论(0) 推荐(2)
摘要: Java SpringBoot 7z 压缩、解压 阅读全文
posted @ 2023-04-17 13:33 VipSoft 阅读(1533) 评论(0) 推荐(1)
摘要: 根据不同的条件,调用不同的 bean 对象,执行对象中的方法 阅读全文
posted @ 2023-04-14 13:08 VipSoft 阅读(1693) 评论(0) 推荐(0)
摘要: Java SpringBoot 通过javax.validation.constraints下的注解,实现入参数据自动验证 如果碰到 `@NotEmpty` 否则不生效,注意看下 `@RequestBody` 前面是否加上了`@Valid` 阅读全文
posted @ 2023-04-13 14:22 VipSoft 阅读(792) 评论(0) 推荐(1)
摘要: Scheduler 每次执行,都会根据JobDetail创建一个新的Job实例,这样就可以规避并发访问的问题(jobDetail的实例也是新的) Quzrtz 定时任务默认都是并发执行,不会等待上一次任务执行完毕,只要间隔时间到就会执行,如果定时任务执行太长,会长时间占用资源,导致其它任务堵塞 @D 阅读全文
posted @ 2023-04-12 11:49 VipSoft 阅读(429) 评论(0) 推荐(2)
摘要: .Net Core 跨域 <system.webServer> <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Headers" value="Content-Type,Accept,X-Requested-With,To 阅读全文
posted @ 2023-04-11 09:31 VipSoft 阅读(71) 评论(0) 推荐(0)
摘要: 说明: 在处理向该请求提供服务所需的配置文件时出错。请检查下面的特定错误详细信息并适当地修改配置文件。 分析器错误消息: 未能找到 CodeDom 提供程序类型“Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider 阅读全文
posted @ 2023-04-10 14:19 VipSoft 阅读(1922) 评论(0) 推荐(0)
摘要: MQTT连接池 主要用到 `InitializingBean、BasePooledObjectFactory、GenericObjectPool、GenericObjectPoolConfig` MQTT是一个轻量级传输协议,它被设计用于轻量级的发布/订阅式消息传输,MQTT协议针对低带宽网络,低计算能力的设备,做了特殊的优化。是一种简单、稳定、开放、轻量级易于实现的消息协议,在物联网的应用下的信息采集,工业控制,智能家居等方面具有广泛的适用性。 阅读全文
posted @ 2023-04-10 08:47 VipSoft 阅读(3763) 评论(0) 推荐(2)
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页