Tagged Questions
The jsr299 tag has no wiki summary.
14
votes
3answers
2k views
Why use @PostConstruct?
In a managed bean, @PostConstruct is called after the regular Java object constructor.
Why would I use @PostConstruct to initialize by bean, instead of the regular constructor itself?
7
votes
6answers
790 views
How to inject String constants easily with Weld?
We have a situation where we provide an external configuration in form of a Map to our running programs. I have found that JSR-330 Dependency Injection gives a much cleaner way to use that ...
4
votes
2answers
890 views
Can Spring understand @Inject replacing Weld as a JSR-299 implementation?
I have noticed from several web pages that apparently Spring 3.0 supports @Inject from JSR-330. As we would really like to use JSR-299 syntax for dependency injection in our libraries for both web ...
4
votes
2answers
478 views
Whats the relationship between Spring and javax.enterprise.inject?
I was reading a Wikipedia article about Java EE application servers here:
http://en.wikipedia.org/wiki/Java_Platform,_Enterprise_Edition#Java_EE_5_certified
It says that 2 APIs that Java App ...
4
votes
1answer
195 views
How to inject beans from external libs with CDI?
How can I use JSR-299 CDI to inject (not annotated) beans from external libraries?
Examples:
Interface X and its implementations come from a third party lib. How can I decide which implementation to ...
3
votes
1answer
325 views
Where should I declare my CDI resources?
JSR-299 (CDI) introduces the (unfortunately named) concept of a resource: http://docs.jboss.org/weld/reference/1.0.0/en-US/html/resources.html#d0e4373
You can think of a resource in this nomenclature ...
2
votes
2answers
451 views
how to instantiate more then one CDI/Weld bean for one class?
In Spring it was possible to instantiate any class by defining the corresponding bean in xml conf. It was also possible to instantiate more then one bean for the same class with different ...
2
votes
2answers
331 views
Resolution of external (3rd party) beans in weld
I know it is still not quite popular, since the spec was released just a few months ago.
I haven't "installed" weld yet, I'm just reading, and by this question I want to make sure I've understood ...
1
vote
2answers
576 views
Why is the WebBeans (JSR-299) Conversation Context tied to JSF?
I am reading through the Public Review Draft of the Web Beans specification (JSR-299) and I am wondering why it is so 'tightly coupled' to JSF?
Especially the Conversation Context seems only be ...
0
votes
2answers
161 views
Fire event with subclass runtime type
I want to fire an event in CDI whose type I can only determine on runtime. For instance, let's say there's some interface A with implementing classes AA and AB. I have two observers:
public void ...
0
votes
1answer
354 views
Useful environment for CDI / weld web-applications
I am new to weld and consider what environment is useful for a web-application using CDI (Weld). I want to use JSF or Wicket for presentation and JPA/Hibernate for my persistence layer (including ...