Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4271242
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T07:24:56+00:00 2026-05-21T07:24:56+00:00

I have an application which is using annotation annotation based dependency injection for service

  • 0

I have an application which is using annotation annotation based dependency injection for service and dao layers. Now it is required that one some condition some of the dao will operate on in memory data-structures instead of db.
So, I am thinking of writing new implementations of those dao.
Since the service already has annotations with name of dao’s, I am not sure how to inject the in-memory ones to it.

Should I overwrite db ones with in-memory ones after injection or there is another clean way?
Had I used xml, I would have used a different xml for in-memory dao.

Thanks in advance,
Aman

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T07:24:56+00:00Added an answer on May 21, 2026 at 7:24 am

    If your in memory dao class only exists (more exctly: only found while class scan) in the cases where it should be used, than you can at @Primary to it.

    @Primary indicates that the bean should be given preference when multiple candidates are found.

    May you should also have a look at the Spring 3.1 feature: Profiles.

    An other way would be to write an Configuration, that depending on some environment Parameter return the correct bean annotated with at primary:

    /**
     * I never have tried to inject a bean in a @Configuratution and
     * return it as @Bean annotated it with @Primary, so it is an experiment 
     * I would been glad to know if it works.
     */
    @Configuration
    public class Switch {
        @Value("#{systemProperties.inmemmory}") 
        private boolean inMemmory;
    
        @Resource
        @Qualifier("normal")
        private Dao normalDao;
    
        @Resource
        @Qualifier("inMemmory")
        private Dao inMemoryDao;
    
        @Bean
        @Primary
        public Dao dao() {
            if (inMemmory) {
                return inMemory;
            } else {
               return normalDao;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a windows service application which works using remoting. It is used to
I have a RESTful service which injects an EJB(3.0) using the @EJB annotation. This
So, I have an web-based application that is using the Wicket 1.4 framework, and
I have an application which i build using gcc on linux host for ARM
I have a Java application which is using a certain Java Runtime Environment. The
I have an application which performs 30 independent tasks simultaneously using multithreading, each task
I have an application which extracts data from an XML file using XPath. If
I have an application which is built from command line (ANT) using J2ME Polish.
We have an ASP.net 2.0 web application which is using themes set on the
I have a c++ application which logs to some file using log4cxx (RollingFile appender).

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.