获取按集合属性长度排序的 MongoDB 文档列表 - Spring Boot
因此,我在 MongoDB 中有一个存储库,其中包含具有以下结构的电影: title: String description: String likes: Set hates: Set likes & hates 是一个…
执行spring-boot时出现UnsatisfiedDependencyException
任何人都可以帮助我纠正错误吗?它显示执行 spring-boot 时发生 UnsatisfiedDependencyException 以及 beanException 。 AdminRepo.java package com.…
Spring Boot PermitAll 仅适用于 HttpSecurity.authorizeRequests()
我正在使用 spring boot 创建 api ,但收到以下错误 allowedAll 仅适用于 HttpSecurity.authorizeRequests() http .csrf().disable() .authorizeReque…
AWS CodePipeline 将 Spring Boot 应用程序部署到源根级别的 Elastic BeansTalk 没有 .jar 文件
我通过 3 个步骤为 SpringBoot Java 应用程序构建了一个简单的 CodePipeline: Source: get the source from GitHub Build: a jar file Deploy: to an…
HIbernate 不会为 @OneToOne 创建外键
我有两个表: @Entity public class TestEntity { @Id @Column(name = "id") private UUID id; @OneToOne(targetEntity = InfoEntity.class, cascade …
这可以在 Spring Boot (TOMCAT) 中应用分桶吗
我公开了 2 个 api 的 /endpoint/A 和 /endpoint/B 。 @GetMapping("/endpoint/A") public ResponseEntity controllerA() throws InterruptedExceptio…
@PathVariable 在@GetMapping、@DeleteMapping URL 中间带有斜线
我无法解决这个问题 (@PathVariable 在@GetMapping、@DeleteMapping URL 中间有斜杠)请帮助我! URL ex : aaa/test/111/l2323:sdfsd:23423423/bbb -…
无法从 wsl 2 上运行的服务之一连接到 wsl 2 上的容器中运行的 postgres 数据库
我无法从 wsl 2 上运行的一项服务连接到 wsl 2 上的容器中运行的 postgres 数据库。 我可以从 wsl 2 上运行的另一个服务连接到该数据库,也可以从运行…
哪个更好:Java ScheduledExecutorService 或 Spring 框架 @Scheduled
我正在向基于 Spring 框架编写的现有项目添加代码。所以想知道我应该选择哪一个:Java ScheduledExecutorService 还是 Spring 框架 @Scheduled ? 我…
在 Gitlab-ci.yaml Pipeline 中使用 spring-boot:build-image 创建 docker 镜像
我正在尝试使用命令“spring-boot:build-image”而不使用 Dockerfile 在 Gitlab-ci.yaml (管道)中构建 Spring Boot 应用程序的 docker 映像。该命令…
我正在使用 apache kafka、spring cloud sleuth 和 sleuth otel 依赖项,我收到错误
bean 'traceRestTemplateBeanPostProcessor',在类路径资源 [org/springframework/cloud/sleuth/instrument/web/client/TraceWebClientAutoConfigurat…
Spring Cloud Gateway:执行器刷新不会重新加载属性
我实际上正在使用 Spring Cloud Gateway 进行一个项目。 我有一个 Configuration 类,它从自定义 PropretySourceFactory 获取其属性。我想对属性进行…
UserDetailsService 创建循环依赖
我的 WebSecurityCongfig 上形成了循环依赖。我已将其跟踪到 UserDetailsService,一旦将其删除,它就会构建,但因此无法执行 jwt 过滤器。有趣的…
无法登录,Spring Security 中使用良好凭据进行身份验证失败
我有一个正在使用(电子邮件/密码)登录过程的应用程序。 现在我已经实现了 LDAP 身份验证。 用户进入身份验证过程,如果数据库不认识他,则进入 ldap…