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){…
动态从 Drool 引擎读取 .xlsx 文件,无需重新启动 spring 项目
我正在尝试使用 drool 读取我的 excel 文件 我能够成功地从 s3 读取该文件,但是当我对该文件进行更改并用新文件替换现有文件时出现问题 我的规则引擎…
自定义登录不会覆盖Spring Boot默认登录
我正在使用 spring boot 和 thymeleaf 开发一个应用程序 ,我想用自定义登录覆盖默认登录 ,但它会将我重定向到默认登录页面 TemplateController @Con…
使用 StreamingResponseBody 时 Spring MockMvc 第二次测试失败
我有一个简单的 Spring Boot 服务,它使用 StreamingResponseBody 来编写响应。 当使用 MockMvc 进行测试时,第一个测试给出了正确的响应,但第二个测…
Spring 执行器邮件 HealthIndicators 不工作
我已经在 Spring Boot 中启用了 Spring 执行器并使用了以下配置, management.health.mail.enabled=true management.endpoint.health.show-details=al…