Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
59 views

I have the following errors using Java 17 with Spring Boot 4.0.0: Cannot resolve symbol 'DataJpaTest' Cannot resolve symbol 'AutoConfigureTestDatabase' The problem happens in a JUnit test class ...
Aliuk's user avatar
  • 1,417
2 votes
0 answers
174 views

Has anyone found an easy way to detect maven dependencies inside your Spring Boot project pom.xml files that are not or no longer needed and can be removed from the pom.xml file ? My intention is to ...
Chris's user avatar
  • 4,708
-1 votes
1 answer
1k views

I am trying to implement gzip compression in my spring boot project(v2.7.12). I have added below in application.properties file. server: compression: enabled: true min-response-...
coredev's user avatar
1 vote
0 answers
69 views

I wish to perform the testing of the models against a real database. I am able to run the test cases against the default in-memory database. Problem I have not been able to configure the project ...
CarlosAmds's user avatar
0 votes
1 answer
102 views

I am trying to use this library https://github.com/MarcGiffing/wicket-spring-boot I included the maven library. I copied @SpringBootApplication class, HomePage class and HomePage html. As far as I ...
Tihamer's user avatar
  • 73
1 vote
1 answer
278 views

I'm writing a custom Spring Boot starter and need to check for certain requirements in the client application's context. I do this at @Conditional evaluation time using custom Condition classes. One ...
fabio trabattoni's user avatar
1 vote
1 answer
603 views

I'm creating a Spring Boot starter and I'm using ApplicationContextRunner in my tests, but passing in logging.level.root=warn as a property value isn't working for me. With a test like the following I ...
ETLJ's user avatar
  • 323
1 vote
0 answers
97 views

I'm creating a custom spring boot starter which configures a bean from a different spring boot starter. // my custom starter's build.gradle dependencies { implementation 'org.springframework.boot:...
ETLJ's user avatar
  • 323
0 votes
2 answers
595 views

Find error img here APPLICATION FAILED TO START Description: Your project setup is incompatible with our requirements due to following reasons: Spring Boot [3.1.6] is not compatible with this ...
Vega Hassan's user avatar
-2 votes
1 answer
780 views

@Bean public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { return http.csrf().disable() .authorizeHttpRequests() .requestMatchers("/home/normal&...
Ananda kumar pradhan's user avatar
0 votes
2 answers
52 views

I'm working on a multimodule gradle (kts) project. Each module is a spring boot kotlin app, that provides Elasticsearch requests and responses, for example: project - module core - module a - module b ...
darth jemico's user avatar
1 vote
1 answer
352 views

I tried 2.8x to 2.9x but my import for kafka is not working these imports they are unable to find after kafka plugin org.springframework.kafka spring-kafka 2.8.0 just tell me the version to go with ? ...
alfosa's user avatar
  • 21
0 votes
1 answer
484 views

I am trying to run simple JPA application using Spring Boot. It keeps throwing same error whenever I run application. I keep getting this error: org.springframework.beans.factory.BeanCreationException:...
Shubham Mishra's user avatar
0 votes
0 answers
2k views

When upgrading springboot to 3.2.0, the error SpelEvaluationException: EL1005E: Type cannot be found happens. This has happened from previous springboot version but it has been fixed. But lately when ...
francissoria's user avatar
0 votes
1 answer
224 views

I have a spring boot 2 application which I am running on embedded tomcat in production. I want to add another war file to the same tomcat. I followed spring boot 2 solution provided in link Spring ...
Seeker's user avatar
  • 211
0 votes
2 answers
12k views

java.lang.IllegalArgumentException: Invalid value type for attribute 'factoryBeanObjectType': java.lang.String at org.springframework.beans.factory.support.FactoryBeanRegistrySupport....
mmmyyy's user avatar
  • 19
0 votes
1 answer
705 views

I have a SpringBoot project which persists data to a Postgres JsonB Column. So I am using the @TypeDef annotation in entity class, but after upgrading to SpringBoot Version 3.1.5 this annotation is no ...
vishal kumar's user avatar
0 votes
0 answers
91 views

I'm running my app in SpringBootTest. Using IN memory db. I'm getting error in my spring app when i try to get record from db. I'm using: <dependency> <groupId>org....
Luke's user avatar
  • 75
0 votes
1 answer
62 views

I start learning Bootstrap but when i tried to use it, it doesn't work. here is my code. (html)==> <!DOCTYPE html> <html lang="en"> <head> <meta charset=&...
Ahmed's user avatar
  • 3
1 vote
2 answers
1k views

this is my code and in order to avoid WebSecurityConfigurerAdapter I used SecuirtyFilterChain and UserDetailsService. Now I'm getting an error for the User.Builder() that can not be defined "The ...
Anonymous's user avatar
0 votes
1 answer
337 views

I'm working with spring-boot-starter-data-elasticsearch version 2.7.3, ElasticSearch version 8.7.1. I have a field, B, annotated as @Field(type = FieldType.Nested) in class A. I create an index on ...
sdeep-de's user avatar
0 votes
1 answer
3k views

I have a project which uses spring boot which uses spring-boot-starter-data-redis to manage distributed session, which was running fine. I tried to migrate to spring boot 3, i was getting the below ...
Subin Chalil's user avatar
  • 3,708
0 votes
0 answers
32 views

[My Package](https://i.sstatic.net/fxSRS.png) [In 'EmployeeController' class](https://i.sstatic.net/lSfRB.png) [In package "advice", ](https://i.sstatic.net/ZyRUc.png) [Postman response](...
oohoana's user avatar
0 votes
1 answer
82 views

I've a microservice architecture, and need some common logic. When it's necessary to create a custom spring boot starter rather than create a new microservice?
J.J. Beam's user avatar
  • 3,171
3 votes
1 answer
13k views

APPLICATION FAILED TO START Parameter 0 of constructor in com.example.persistence.batch.BatchConfiguration required a bean of type 'org.springframework.batch.core.configuration.annotation....
Pranay Jadhav's user avatar

1
2 3 4 5