What is the annotation in spring which tells that the class autowired is not open for testing2019 Community Moderator ElectionSpring @Autowire on Properties vs ConstructorWhat's the difference between @Component, @Repository & @Service annotations in Spring?How to test Spring service beans that themself have autowired dependencies?Spring annotations: @Component works, @Repository doesn'tSpring 3 Annotations with hibernate CRUD operations : @Autowired not working as expectedError creating bean with name 'application': Injection of autowired dependencies failed;Error creating bean.Injection of autowired dependencies failed.Could not autowire fieldSpring security Cant autowire UserDetailsServiceInjection of autowired dependencies failed, Could not autowire fieldSpringBoot JPA test beans not in contextError In AutoWiring the Bean Class with the RestController

How to explain that I do not want to visit a country due to personal safety concern?

Can I use USB data pins as power source

ERC721: How to get the owned tokens of an address

Instead of a Universal Basic Income program, why not implement a "Universal Basic Needs" program?

Do I need to be arrogant to get ahead?

Adventure Game (text based) in C++

Print a physical multiplication table

What is the adequate fee for a reveal operation?

Why did it take so long to abandon sail after steamships were demonstrated?

Why does energy conservation give me the wrong answer in this inelastic collision problem?

Are all passive ability checks floors for active ability checks?

I am confused as to how the inverse of a certain function is found.

Why no Iridium-level flares from other satellites?

Why do newer 737s use two different styles of split winglets?

Math equation in non italic font

Equivalents to the present tense

How difficult is it to simply disable/disengage the MCAS on Boeing 737 Max 8 & 9 Aircraft?

Does this sum go infinity?

Bacteria contamination inside a thermos bottle

Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?

Why does a Star of David appear at a rally with Francisco Franco?

World War I as a war of liberals against authoritarians?

Why Choose Less Effective Armour Types?

How could an airship be repaired midflight?



What is the annotation in spring which tells that the class autowired is not open for testing



2019 Community Moderator ElectionSpring @Autowire on Properties vs ConstructorWhat's the difference between @Component, @Repository & @Service annotations in Spring?How to test Spring service beans that themself have autowired dependencies?Spring annotations: @Component works, @Repository doesn'tSpring 3 Annotations with hibernate CRUD operations : @Autowired not working as expectedError creating bean with name 'application': Injection of autowired dependencies failed;Error creating bean.Injection of autowired dependencies failed.Could not autowire fieldSpring security Cant autowire UserDetailsServiceInjection of autowired dependencies failed, Could not autowire fieldSpringBoot JPA test beans not in contextError In AutoWiring the Bean Class with the RestController










0















I have used @Profile in my class like this.



@Service("myClass")
@Profile(value = "stage", "uat", "prod")
public class MyClass
//some code



I am autowiring MyClass in another class say YourClass.



public class YourClass
// some code

@Autowired
private MyClass myClass;
//some code



Now when I run junit, it is giving unsatisfied dependency error as MyClass profile is set only for uat, stage and prod but not for unit. Is there any way by which I can autowire this myClass but it should be ignored when I am running junit?



Error stack trace



Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'yourClass': Unsatisfied dependency expressed through field 'myClass'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:587)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:578)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:501)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:317)
at org.springframework.beans.factory.support.AbstractBeanFactory$$Lambda$23/1013364696.getObject(Unknown Source)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 51 more
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound(DefaultListableBeanFactory.java:1509)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1104)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 65 more


How do I solve this autowiring problem?










share|improve this question
























  • If you do not need to run the test via spring, just use constructor injection instead of field injection, then simply instantiate YourClass by passing your own instance (maybe a mock) of MyClass, thus the "spring automagic" will no longer occur.

    – Morfic
    Mar 8 at 14:51















0















I have used @Profile in my class like this.



@Service("myClass")
@Profile(value = "stage", "uat", "prod")
public class MyClass
//some code



I am autowiring MyClass in another class say YourClass.



public class YourClass
// some code

@Autowired
private MyClass myClass;
//some code



Now when I run junit, it is giving unsatisfied dependency error as MyClass profile is set only for uat, stage and prod but not for unit. Is there any way by which I can autowire this myClass but it should be ignored when I am running junit?



Error stack trace



Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'yourClass': Unsatisfied dependency expressed through field 'myClass'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:587)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:578)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:501)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:317)
at org.springframework.beans.factory.support.AbstractBeanFactory$$Lambda$23/1013364696.getObject(Unknown Source)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 51 more
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound(DefaultListableBeanFactory.java:1509)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1104)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 65 more


How do I solve this autowiring problem?










share|improve this question
























  • If you do not need to run the test via spring, just use constructor injection instead of field injection, then simply instantiate YourClass by passing your own instance (maybe a mock) of MyClass, thus the "spring automagic" will no longer occur.

    – Morfic
    Mar 8 at 14:51













0












0








0








I have used @Profile in my class like this.



@Service("myClass")
@Profile(value = "stage", "uat", "prod")
public class MyClass
//some code



I am autowiring MyClass in another class say YourClass.



public class YourClass
// some code

@Autowired
private MyClass myClass;
//some code



Now when I run junit, it is giving unsatisfied dependency error as MyClass profile is set only for uat, stage and prod but not for unit. Is there any way by which I can autowire this myClass but it should be ignored when I am running junit?



Error stack trace



Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'yourClass': Unsatisfied dependency expressed through field 'myClass'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:587)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:578)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:501)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:317)
at org.springframework.beans.factory.support.AbstractBeanFactory$$Lambda$23/1013364696.getObject(Unknown Source)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 51 more
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound(DefaultListableBeanFactory.java:1509)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1104)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 65 more


How do I solve this autowiring problem?










share|improve this question
















I have used @Profile in my class like this.



@Service("myClass")
@Profile(value = "stage", "uat", "prod")
public class MyClass
//some code



I am autowiring MyClass in another class say YourClass.



public class YourClass
// some code

@Autowired
private MyClass myClass;
//some code



Now when I run junit, it is giving unsatisfied dependency error as MyClass profile is set only for uat, stage and prod but not for unit. Is there any way by which I can autowire this myClass but it should be ignored when I am running junit?



Error stack trace



Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'yourClass': Unsatisfied dependency expressed through field 'myClass'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:587)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1348)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:578)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:501)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:317)
at org.springframework.beans.factory.support.AbstractBeanFactory$$Lambda$23/1013364696.getObject(Unknown Source)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:315)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:199)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 51 more
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type 'MyClass' available: expected at least 1 bean which qualifies as autowire candidate. Dependency annotations: @org.springframework.beans.factory.annotation.Autowired(required=true)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.raiseNoMatchingBeanFound(DefaultListableBeanFactory.java:1509)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1104)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
... 65 more


How do I solve this autowiring problem?







spring annotations mockito junit4






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 7 at 15:14









Vasilisa

3,00921122




3,00921122










asked Mar 7 at 14:39









Rachana RameshRachana Ramesh

1




1












  • If you do not need to run the test via spring, just use constructor injection instead of field injection, then simply instantiate YourClass by passing your own instance (maybe a mock) of MyClass, thus the "spring automagic" will no longer occur.

    – Morfic
    Mar 8 at 14:51

















  • If you do not need to run the test via spring, just use constructor injection instead of field injection, then simply instantiate YourClass by passing your own instance (maybe a mock) of MyClass, thus the "spring automagic" will no longer occur.

    – Morfic
    Mar 8 at 14:51
















If you do not need to run the test via spring, just use constructor injection instead of field injection, then simply instantiate YourClass by passing your own instance (maybe a mock) of MyClass, thus the "spring automagic" will no longer occur.

– Morfic
Mar 8 at 14:51





If you do not need to run the test via spring, just use constructor injection instead of field injection, then simply instantiate YourClass by passing your own instance (maybe a mock) of MyClass, thus the "spring automagic" will no longer occur.

– Morfic
Mar 8 at 14:51












1 Answer
1






active

oldest

votes


















0














You cannot ignore @Autowired MyClass when running tests. When test case is run and class "YourClass" is instantiated, Spring will try to inject a bean "MyClass" in it and you are not providing it.



What you can do is to create a Mock or Stub object within test case in order to substitute "MyClass" object.



I suggest you look at this: https://www.tutorialspoint.com/mockito/mockito_junit_integration.htm



Test cases should have structure similar to this:



@InjectMocks
YourClass yourClass;

@Before
public void init()
MockitoAnnotations.initMocks(this);


@Test
public void testcase()
YourClass yourClass = Mockito.mock(YourClass.class);

when(yourClass.someMethod()).thenReturn("someResponse);

/** do stuff **/



Good luck!






share|improve this answer

























  • Hey thanks man , but my problem is not just with this junit . Any junit that I run for any other class fails due this autowiring problem, while loading the application context it fails

    – Rachana Ramesh
    Mar 9 at 14:30











  • No problem! Can you create a dummy class with "test" profile so that the Spring injects that instead of the one you have currently written. You need to supply some instance of YourClass to Spring in order for it to run correctly - as seen in the error logs.

    – Amer Šurković
    Mar 10 at 23:12










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55046394%2fwhat-is-the-annotation-in-spring-which-tells-that-the-class-autowired-is-not-ope%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














You cannot ignore @Autowired MyClass when running tests. When test case is run and class "YourClass" is instantiated, Spring will try to inject a bean "MyClass" in it and you are not providing it.



What you can do is to create a Mock or Stub object within test case in order to substitute "MyClass" object.



I suggest you look at this: https://www.tutorialspoint.com/mockito/mockito_junit_integration.htm



Test cases should have structure similar to this:



@InjectMocks
YourClass yourClass;

@Before
public void init()
MockitoAnnotations.initMocks(this);


@Test
public void testcase()
YourClass yourClass = Mockito.mock(YourClass.class);

when(yourClass.someMethod()).thenReturn("someResponse);

/** do stuff **/



Good luck!






share|improve this answer

























  • Hey thanks man , but my problem is not just with this junit . Any junit that I run for any other class fails due this autowiring problem, while loading the application context it fails

    – Rachana Ramesh
    Mar 9 at 14:30











  • No problem! Can you create a dummy class with "test" profile so that the Spring injects that instead of the one you have currently written. You need to supply some instance of YourClass to Spring in order for it to run correctly - as seen in the error logs.

    – Amer Šurković
    Mar 10 at 23:12















0














You cannot ignore @Autowired MyClass when running tests. When test case is run and class "YourClass" is instantiated, Spring will try to inject a bean "MyClass" in it and you are not providing it.



What you can do is to create a Mock or Stub object within test case in order to substitute "MyClass" object.



I suggest you look at this: https://www.tutorialspoint.com/mockito/mockito_junit_integration.htm



Test cases should have structure similar to this:



@InjectMocks
YourClass yourClass;

@Before
public void init()
MockitoAnnotations.initMocks(this);


@Test
public void testcase()
YourClass yourClass = Mockito.mock(YourClass.class);

when(yourClass.someMethod()).thenReturn("someResponse);

/** do stuff **/



Good luck!






share|improve this answer

























  • Hey thanks man , but my problem is not just with this junit . Any junit that I run for any other class fails due this autowiring problem, while loading the application context it fails

    – Rachana Ramesh
    Mar 9 at 14:30











  • No problem! Can you create a dummy class with "test" profile so that the Spring injects that instead of the one you have currently written. You need to supply some instance of YourClass to Spring in order for it to run correctly - as seen in the error logs.

    – Amer Šurković
    Mar 10 at 23:12













0












0








0







You cannot ignore @Autowired MyClass when running tests. When test case is run and class "YourClass" is instantiated, Spring will try to inject a bean "MyClass" in it and you are not providing it.



What you can do is to create a Mock or Stub object within test case in order to substitute "MyClass" object.



I suggest you look at this: https://www.tutorialspoint.com/mockito/mockito_junit_integration.htm



Test cases should have structure similar to this:



@InjectMocks
YourClass yourClass;

@Before
public void init()
MockitoAnnotations.initMocks(this);


@Test
public void testcase()
YourClass yourClass = Mockito.mock(YourClass.class);

when(yourClass.someMethod()).thenReturn("someResponse);

/** do stuff **/



Good luck!






share|improve this answer















You cannot ignore @Autowired MyClass when running tests. When test case is run and class "YourClass" is instantiated, Spring will try to inject a bean "MyClass" in it and you are not providing it.



What you can do is to create a Mock or Stub object within test case in order to substitute "MyClass" object.



I suggest you look at this: https://www.tutorialspoint.com/mockito/mockito_junit_integration.htm



Test cases should have structure similar to this:



@InjectMocks
YourClass yourClass;

@Before
public void init()
MockitoAnnotations.initMocks(this);


@Test
public void testcase()
YourClass yourClass = Mockito.mock(YourClass.class);

when(yourClass.someMethod()).thenReturn("someResponse);

/** do stuff **/



Good luck!







share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 7 at 15:23

























answered Mar 7 at 15:16









Amer ŠurkovićAmer Šurković

13




13












  • Hey thanks man , but my problem is not just with this junit . Any junit that I run for any other class fails due this autowiring problem, while loading the application context it fails

    – Rachana Ramesh
    Mar 9 at 14:30











  • No problem! Can you create a dummy class with "test" profile so that the Spring injects that instead of the one you have currently written. You need to supply some instance of YourClass to Spring in order for it to run correctly - as seen in the error logs.

    – Amer Šurković
    Mar 10 at 23:12

















  • Hey thanks man , but my problem is not just with this junit . Any junit that I run for any other class fails due this autowiring problem, while loading the application context it fails

    – Rachana Ramesh
    Mar 9 at 14:30











  • No problem! Can you create a dummy class with "test" profile so that the Spring injects that instead of the one you have currently written. You need to supply some instance of YourClass to Spring in order for it to run correctly - as seen in the error logs.

    – Amer Šurković
    Mar 10 at 23:12
















Hey thanks man , but my problem is not just with this junit . Any junit that I run for any other class fails due this autowiring problem, while loading the application context it fails

– Rachana Ramesh
Mar 9 at 14:30





Hey thanks man , but my problem is not just with this junit . Any junit that I run for any other class fails due this autowiring problem, while loading the application context it fails

– Rachana Ramesh
Mar 9 at 14:30













No problem! Can you create a dummy class with "test" profile so that the Spring injects that instead of the one you have currently written. You need to supply some instance of YourClass to Spring in order for it to run correctly - as seen in the error logs.

– Amer Šurković
Mar 10 at 23:12





No problem! Can you create a dummy class with "test" profile so that the Spring injects that instead of the one you have currently written. You need to supply some instance of YourClass to Spring in order for it to run correctly - as seen in the error logs.

– Amer Šurković
Mar 10 at 23:12



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55046394%2fwhat-is-the-annotation-in-spring-which-tells-that-the-class-autowired-is-not-ope%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to get text form Clipboard with JavaScript in Firefox 56?How to validate an email address in JavaScript?How do JavaScript closures work?How do I remove a property from a JavaScript object?How do you get a timestamp in JavaScript?How do I copy to the clipboard in JavaScript?How do I include a JavaScript file in another JavaScript file?Get the current URL with JavaScript?How to replace all occurrences of a string in JavaScriptHow to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?

Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

List of MPs elected to the English parliament in 1640 (April) Contents List of constituencies and members See also Notes References Navigation menueNational Archives – The Glynde Place ArchivesCobbett's Parliamentary history of England, from the Norman Conquest in 1066 to the year 1803'Aldermen in Parliament', The Aldermen of the City of London: Temp. Henry III – 1912onepage&q&f&#61, false 229