Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

257
Views
Specify default @Bean without using @Primary Spring Boot

have a bean like this:

@Bean
TemplateEngine myTemplateEngine() {...}

But Spring boot also has a bean for TemplateEngine defined in:

org/springframework/boot/autoconfigure/thymeleaf/ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration.class

When I autowire TemplateEngine I get

"Field required a single bean, but 2 were found"

I want the spring boot bean to be the default one and only use my bean if explicity specified, so I couldn't use @Primary annotation because I don't have access to that bean definition.

Also, I would like to avoid using xml configuration as well.

about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Try to define your bean as

@Bean
@ConditionalOnMissingBean(TemplateEngine .class)
TemplateEngine myTemplateEngine() {...}
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!