Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
79 views

I'm encountering a persistent BeanCreationException in my Spring Boot 3.2.2/Vaadin 24.6.6 application, and I've exhausted my troubleshooting options. The error message is: org.springframework.beans....
Aerialdad14's user avatar
0 votes
0 answers
253 views

before upgrading to spring boot, code was working fine and there was no issue at all. I have define an interface called EntitySpecRepository and it has five implementation like below. @Service public ...
user3239289's user avatar
0 votes
0 answers
63 views

I'm creating an example student registration system and I want to input data in the following format through postman. { "schemeName":"Scheme one", "type":"...
kaW's user avatar
  • 23
0 votes
0 answers
521 views

Can someone help to root cause this issue ? I am using corretto 11 for deploying the jar. Let me know if any more information is required. This code is calling the external API and returns the ...
Subhajit's user avatar
  • 904
0 votes
2 answers
958 views

i have got this Exception org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dumpController' defined in file [...\tech\backend\webapplication\com\...
JoHannes's user avatar
-1 votes
1 answer
8k views

Scenario : I have a springboot applcation which perform a batch like functionality (Reading data from s3 processing and writing to sql tables). I also have a seperate Jmix application. So in need to ...
kiranouseph's user avatar
0 votes
1 answer
116 views

we have a controller which gets called by cron job for healthcheck purpose in our spring application Because we are in mid of migration process, we are disabling certain spring beans for spring ...
Edward Sun's user avatar
0 votes
2 answers
315 views

Im trying to make a REST api using springboot. Normally I would use PHPMyAdmin for the database but trying H2 out for the first time. Havnt seen these issues come up in my old projects because I make ...
Brendan Ahern's user avatar
0 votes
0 answers
191 views

I'm making tables in my PostgreSQL database using Hibernate. I have a class user, from which some other classes like student inherit using @inheritance. When I don't use @Entity, all the tables are ...
Lucas Van Der Stuyft's user avatar
0 votes
1 answer
108 views

Please, help with the next issue, thank you. I am in a need to make changes in an old project, but problem is in that I even cann't to start the app. I have the next problem. org.springframework.beans....
user avatar
0 votes
0 answers
227 views

Good day experts, I want to figure out why my case is not working properly. Situation: There is a class called AbstractCheckoutStepValidator and here is it's xml configuration: <bean id="...
Maksim's user avatar
  • 371
0 votes
2 answers
2k views

I am working with Spring Boot and Spring Security, but is my first time using Google cloud firebase Firestore, I am connecting to my database via Firebase Admin SDK. I have a configuration class that ...
igorzelaya_'s user avatar
0 votes
1 answer
52 views

Main Class package com.prac.sdp; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org....
Deepak Kumar's user avatar
0 votes
3 answers
2k views

RoleRepository package com.jawad.api.repository; import javax.management.relation.Role; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; @...
jayzee's user avatar
  • 235
0 votes
1 answer
199 views

I am trying to connect multiple CreditCards to the same User but when compiling the program It gives Error creating bean. User Class package com.bookstore.BookStoreDemo.model; import javax....
Kevin Garcia's user avatar
0 votes
1 answer
2k views

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'scopedTarget.movimentacaoEntradaRadarNotaBuilderImpl': Scope 'request' is not active for the current ...
Airton cruz's user avatar
1 vote
1 answer
104 views

I am getting the below error. Can anyone pls tell me which line in the error stack defines my error ? 2019-02-11 19:26:02.681 [main] ERROR o.s.web.context.ContextLoader - Context initialization ...
arun's user avatar
  • 57
0 votes
1 answer
76 views

I am facing the following error using postman: <!doctype html><html lang="en"><head><title>HTTP Status 500 – Internal Server Error</title><style type="text/css">H1 ...
Frida's user avatar
  • 106
0 votes
1 answer
886 views

I am using Spring 4.x in which I am using @Conditional annotation to control the bean registration. I have classes defined as given below, @Controller class SchoolController{ @Autowired @...
Abhijit's user avatar
  • 185
1 vote
1 answer
4k views

I am implementing Spring Transaction in my application service layer.. I was referring to example on tutorials point for programmatic way of implementing spring transaction... https://www....
rahul shalgar 2's user avatar
0 votes
1 answer
1k views

I am working on a Spring with Hibernate project that also uses Maven. I am trying to make a page that has a form to capture search information as well as displaying the result. I have created the ...
billy_blanks's user avatar
0 votes
1 answer
2k views

Here are my code and the exception I am getting, Earlier this project is working fine but when I added MySQL connection and Bean class in this, I am getting the exception. Jul 03, 2017 12:54:40 AM ...
balvinder singh's user avatar
1 vote
1 answer
2k views

I am getting following error when I execute grails run-app, I am trying to run grails-sso-sample application locally but unable to do so Following is the error from Stacktrace Stacktrace | Error ...
Aamir Ali's user avatar
  • 165
0 votes
0 answers
972 views

I'am facing an error with @Autowired annotation. UserService class contain JdbcTemplate attribute with getter/setter. Every thing works fine if I "wire" that attribute from within context file: <...
devware33's user avatar
1 vote
1 answer
3k views

I'm trying to integrate Hystrix into my current spring-cloud & Netflix OSS microservice project. I have a fresh Spring Boot version 1.4.0.RELEASE project with two dependencies: <...
KWP's user avatar
  • 13