Autowiring is a DI container feature where the dependencies are automatically looked for according to some criteria.

learn more… | top users | synonyms (2)

3
votes
3answers
33 views

Autowiring Spring superclass

Why does Spring automatically choose the superclass types during autowiring? For instance, if I have @Component public class Foo {} @Component public class Bar extends Foo {} and someone ...
0
votes
2answers
30 views

@Autowired is not working with jersey and spring

When I am running test at that time @Autowired is working but when I run the web app and try to fetch data at that time its throwing null pointer exception. this is my controller In this BuyerRepo ...
2
votes
3answers
56 views

Spring wiring conditional to an environment

With Spring wiring, if I have multiple implementations of an interface, I can use @Qualifier to specify which one I want. E.g., assuming that I have a @Component @Qualifier("Toyota") public class ...
0
votes
0answers
22 views

Auto-wiring dependencies with dynamic parameters

I have multiple implementations of an employee interface - each one representing a particular employee type based on salary classification(HourlyEmployee,MonthlyEmployee etc.) Each Employee type ...
2
votes
1answer
49 views

@Autowired is not working with beans defined in application context file

I defined a bean in spring context file 'applicationContext.xml' like below : <bean id="daoBean" class="org.mockito.Mockito" factory-method="mock"> <constructor-arg ...
0
votes
2answers
31 views

Can I autowire named loggers?

I'm using non static loggers named according to class name: protected Logger logger = LoggerFactory.getLogger(getClass()); Can I configure spring in a way, that will set proper logger using ...
0
votes
3answers
58 views

Injecting into @Autowired variable during testing

I have a component setup that is essentially a launcher for an application. It is configured like so: @Component public class MyLauncher { @Autowired MyService myService; //other methods ...
0
votes
2answers
51 views

spring+hibernate : Injection of autowired dependencies failed

i did some search but i was unable to find out what's the problem. I'm aware the problem come from a ClassNotFoundException but i can't solve it. error : ...
0
votes
1answer
44 views

How does spring mvc annotation driven link a repository object

I am using Spring MVC annotation driven configuration. I have a repository class named ProductRepository annotated with @Repository. In my ProductController class I have a private field ...
0
votes
0answers
45 views

What is the advantage of autowiring in spring

What exactly is the advantages of autowiring is Spring? An example of autowiring in spring would be like public class TestClass { testMethod() { // ..... }; } public class MainClass ...
1
vote
0answers
31 views

Spring Autowired Exception when a remote ejb is down

Hi, I have a simple question that I am not able to solve. I'm using Spring 3 to lookup Remote ejbs and I added lazy-init=true into bean definition because my application must starting also if some ...
1
vote
2answers
38 views

Inject bean into enum

I have the DataPrepareService that prepare data for reports and I have an Enum with report types, and I need to inject ReportService into Enum or have access to ReportService from enum. my service: ...
1
vote
2answers
123 views

Spring data JPA Repository @autowired gives null

I've been trying out spring-data-jpa. With the help of Reference Documentation and my prior spring knowledge, I've set up spring-data-jpa configuration but the Repository that I @Autowired is always ...
0
votes
1answer
113 views

Autowiring not working in Spring JAX-WS on JBOSS AS 7

I have deployed a test Spring JAX-WS Web Service to JBOSS AS 7, but I would like to have dependency injection in the endpoint classes. To achieve this I am extending SpringBeanAutoWiringSupport, but ...
0
votes
0answers
56 views

Autowire/inject scoped bean into controller method

Spring 3.2. Everything works when I do: @Controller public class MyController { @Inject Provider<MyBean> provider; @RequestMapping("/chart") public void ...
0
votes
1answer
61 views

can not inject interface in a managed bean

I am writing a web application using Spring and PrimeFaces. I am trying to inject interface in my managedBean, but when I try to use it, it is null and I get an Exception. Here is the ...
0
votes
3answers
97 views

Spring component-scan without autowiring?

Does it makes sense to use component-scan WITHOUT using autowiring on spring? I like the idea of having component scan on an MVC environment for controllers, hell I even like to avoid declaring all ...
1
vote
2answers
62 views

Spring autowiring keeps JMockit mocks around for other tests

I'm trying to unit test a class (let's say, "ClassUnderTest") and its use of a particular library class (let's call it "Helper"). So I'm injecting a mocked Helper into the ClassUnderTest and using ...
0
votes
1answer
29 views

Is there a way I can get my spring beans wired together without having them be initialized?

Ideally, I'd like to have Spring instantiate all the beans from my context config, wire them together as specified, but never call init() on any of them. Is this possible? Something else that might ...
1
vote
2answers
138 views

Spring Dependency injection using interface with more than one implementation

My question has already been asked here in the following link. Spring: Why do we autowire the interface and not the implemented class? What I want to know if we use @Qualifier to inject a bean than ...
0
votes
1answer
26 views

Best way to pass reference of injected dependency in spring controller

I have a Spring portlet controller class. In this class, there is a dependency like this: @Autowired protected ServiceClass someService; @Autowired protected ApplicationContext context; From the ...
1
vote
1answer
37 views

Injection into generic parametrized property in Spring

What is the best workaround for injection into generic parametrized property? Simple example from record in Spring Jira: @Component public abstract class AbstractFoo<V extends Bar> { ...
1
vote
2answers
58 views

Give property names/values with @Component

Please deal with this basic question. I used to use @Autowired annotation where properties (class variables) can be given a value using key/value format for that class. <bean id="class" ...
0
votes
1answer
122 views

Best practice: Spring Autowired, concrete class, and Builder

We have an interface: public interface NotifyService { public void send(); And a class that implements it public class EmailNotifyService implements NotifyService { private EmailBuilder ...
0
votes
2answers
57 views

Spring Autowiring Issues in a Servlet

I am having some issues with Autowiring First off i create an Embedded server Main.java Server server = new Server(8080); CXFNonSpringServlet cxf = new CXFNonSpringJaxrsServlet(); ...
0
votes
1answer
69 views

Spring autowiring failed but application starts up

Recently i faced a situation where a spring based application was throwing "NullPointerApplication" while accessing an autowired field in a Class ( A ). The bean being autowired is used in other ...
0
votes
1answer
160 views

Spring Autowire Annotation on Abstract class: No unique bean is defined

I've got an abstract class: @Component public abstract class BaseReport { public void export() { ... } And a bunch of classes that extend it, and override the export() method (or not). ...
2
votes
2answers
91 views

Abstract classes, interfaces and Autowired

I have the following main class: public class Startup implements UncaughtExceptionHandler { @Autowired private MessageListener messageListener; private static Startup startup; public static void ...
2
votes
1answer
186 views

Spring JPA Repository Autowire Issue

I followed a youtube video tutorial for setting up a Spring JPA project but im still having issues with my Spring JPA project and was hoping someone could help. ...
0
votes
1answer
31 views

Autowiring in case of Constructor with parameters for socket

My main code public static void main(String[] args) { System.out.println("Hello World!"); ApplicationContext applicationContext = new ClassPathXmlApplicationContext( ...
0
votes
2answers
46 views

Autowiring or setter injection

So far, in our project, we have got our beans having the references set through setter injections; recently, couple of people have started to use @Autowired annotation to set the references on their ...
2
votes
1answer
91 views

Autowire tag does not work

I am learning Spring.Net. I did a little example to understand the tag autowire but it does not work. Below my classes: using System; using System.Collections.Generic; using System.Linq; using ...
0
votes
1answer
76 views

Spring - how to @Autowire a bean WITHOUT calling ClassPathXmlApplicationContext

Is it possible to autowire the beans without calling: ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
0
votes
0answers
36 views

How to iterate over Ninject StandardKernel's configured bindings to debug?

In my Ninject binding module, public class CarModule : NinjectModule { public override void Load() { Kernel.Bind(scanner => scanner.FromThisAssembly().SelectAllClasses() ...
0
votes
3answers
122 views

NullPointerException trying to Autowire Service in Java Application (Spring)

I am writing a Java Application that is going to be using Spring, Hibernate and more its going to be packaged in a Jar and run from the command like. My main class looks like the following right now: ...
0
votes
1answer
59 views

How to @autowire implementation of the class from a jar file?

I have a simple class and would like to use @Autowired to trigger the method from numberHandler object. However the object is null. Any ideas? @Component public class Startup implements ...
0
votes
1answer
57 views

How to ensure a class can only be instantiated by Spring?

I am re-factoring a legacy Java application to use Spring. This involves declaring the application classes as Spring beans and then replacing all occurrences of new with context.getBean OR with DI. ...
0
votes
0answers
49 views

autowiring in executable jar file

my project works fine in eclipse, but when I'm trying to run it from executable jar file it fails with "nosuchbeandefinitionexception no matching bean of type found for dependency: expected at least 1 ...
0
votes
1answer
37 views

Integration test: test the Autowired annotation

I want to test injection dependencies in spring. I have a Class: public SomeClass { @Autowired SomeBean bean ; public SomeBean getBean(){ return this.bean ; } } I want a test ...
0
votes
1answer
54 views

Why my service is autowired to a Proxy?

Hi I've got this class to do test: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations={"/service.xml"}) public class Test { @Autowired private CommonService commonService; ...
0
votes
0answers
84 views

Could not autowire jaxrs client

I have this in my applicationContext.xml (I am using http://cxf.apache.org/jaxrs) <context:annotation-config /> <context:component-scan base-package="br.com.test" /> <bean ...
0
votes
1answer
240 views

Spring Autowire properties object

I have successfully configured Spring autowiring for everything except instances of java.util.Properties. When I autowire everything else with an annotation: @Autowired private SomeObject ...
2
votes
1answer
112 views

@Autowired and bean creation order

Is it possible to avoid @Autowire some beans until other depeandant beans have been created? Let me explain it better with an example: I have a FactoryBean that creates an object of type A that has a ...
3
votes
1answer
120 views

Use of Spring Assert.notnull in production code

I have inherited an application that uses Spring Autowiring and each autowired constructor is littered with Assert.notNull() to check each argument before proceding. I can't see how constructor ...
2
votes
1answer
259 views

Spring @Autowire two beans of the same class which are not defined in ApplicationContext

I am working on Spring MVC app and encountered a problem. I am new to Spring, so please forgive me if my working is a bit clumsy. Basically I have a java class ContractList. In my application I need ...
0
votes
2answers
33 views

contextconfiguration outside of test

After following an example, this works for JUnit testing: @ContextConfiguration(locations = "classpath:/spring/context.xml") @RunWith(SpringJUnit4ClassRunner.class) @Transactional public class ...
0
votes
1answer
71 views

Inject bean dynamically? Or @Autowire bean not created by Spring

Problem: orderRepository = null. As I understand orderRepository not injected because user not the bean created by Spring but just an object created using new and then got its properties set in dao? ...
0
votes
0answers
49 views

BeanNameAutoProxyCreator and auto wiring using annotations

A small question regarding auto wiring and CGLIB proxies created by BeanNameAutoProxyCreator. The BeanNameAutoProxyCreator is wrapping the actual object with a CGLIB proxy. It seems though the ...
0
votes
0answers
160 views

Spring Neo4j with aspectj, transactions configuration

I am working with Neo4j in embedded mode, spring data and aspectj mapping. Relevant POM slices: <dependency> <groupId>org.springframework.data</groupId> ...
1
vote
1answer
48 views

Where should dependent Services be @Autowired (Controller or Service)?

Consider these two following options: Option #1: Autowiring the required Services in Controller @Controller @RequestMapping(value="/foo") public class FooController { @Autowired private ...

1 2 3 4 5 10