Dockerized Spring boot应用程序连接到mongoDB docker镜像不起作用
我试图找出为什么 dockerized Spring boot 应用程序和 mongoDB 之间的通信不起作用。首先要做的事情是: 整个微服务在本地完美运行。 我使用配置文件…
Spring Cloud Kafka Stream:使用 Avro 发布到 DLQ 失败
在使用 ErrorHandlingDeserializer 与 Avro 组合处理错误时,我无法发布到 Dlq 主题。以下是发布时的错误。 主题 TOPIC_DLT 在 60000 毫秒后不存在于…
Coinbase Sandbox API 未经授权的 API 密钥
我已经为 coinbase 沙箱生成了许多 API 密钥,并尝试使用它们来获取用户帐户列表。但是我不断收到相同的错误 401 未经授权的 API 密钥。 我已经阅读了…
UserRepo.findAll()”因为“this.userRepo” Spring Boot 中为 null
我正在尝试开发 Spring Boot JWT 身份验证 API。当 Spring Boot 登录页面加载并输入密码时,我收到此错误: UserRepo.findAll()" because "this.userR…
Spring/Gradle:向 application.yml 添加自定义日志记录模式可删除日志突出显示
我正在使用 Gradle 开发 Spring Boot 应用程序。我可能会在这里提供很多不必要的背景信息,但我不确定我的问题出在哪里。 我有一个 SLF4j 记录器,它…
org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer. 处出现 NullPointerException
关于测试 WebSecurityConfigurerAdapter 的 configure 方法的小问题。 我正在使用 Spring Boot 2.6.3,因此 spring-boot-starter-security 2.6.3 (适…
Spring启动,日志失败健康检查
我们在 kubernetes 中使用 spring-boot(2.5.6) 我们使用的许多依赖项包括健康检查,例如 RedisHealthIndicator、CouchbaseHealthIndicator 等。 当这…
Spring Boot 中的 DTO 验证不起作用
我有一个带有 POST 方法的控制器: @RestController @RequestMapping(value = "/creditDetails", produces = MediaType.APPLICATION_JSON_VALUE) @Req…
Spring Boot - 一个 bean 引用自身来在同一个类中触发 AOP @Async,但不起作用
我想在我自己的 Bean 内部调用一个方法,该方法有自己的 @Async 和 @Transactional 代理,但它不起作用。 public class MyClass { private MyClass _s…
在SpringBoot java项目中获取firebase注册令牌
我的 serser 使用 Java 和 SpringBoot,我的客户端是一个使用 typescript 的 expo React 本机应用程序。我真的被这个功能挡住了:我想感知推送通知。…
如何在@SpringBootTest中加载ServerHttpSecurity?
我想创建一个使用我的完整配置结构的 @SpringBootTest 。 问题:我正在创建一个需要 ServerHttpSecurity 的 @Bean SecurityWebFilterChain,但在测试…
如何访问标头中的令牌以将其传递给 thymeleaf 以便能够进行 ajax 调用
我使用 Spring Boot 和 Spring Cloud Gateway 我有另一个带有 spring boot 和 thymeleaf 的应用程序 Spring gateway 将令牌返回到我的 thymeleaf 应用…
网站在 https 上调用 REST API 时出现 CORS 问题
我有一个在 https 上运行的网站。 我希望该网站与 AWS EC2 服务器上运行的 REST Api 服务进行通信。 该服务使用 Spring Boot 实现,Controller 类包含…
SpringBoot事务信息
所以我试图创建嵌套事务,但它根本不起作用。 @Transactional method1(){ method3(); method4(); } method4(){ try{ method2(); }catch(Exception e){…