[ 
https://issues.apache.org/jira/browse/ISIS-597?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13830787#comment-13830787
 ] 

ASF subversion and git services commented on ISIS-597:
------------------------------------------------------

Commit cd586fef69722ac9143302a91683f84a1d7b8069 in branch refs/heads/master 
from [~danhaywood]
[ https://git-wip-us.apache.org/repos/asf?p=isis.git;h=cd586fe ]

ISIS-597: session now open during service initialization.

Also changes to example app isis.properties to ensure that RegisterEntities
is called first as a service (make sure that JDO metamodel is initialized)


> Services still not injected when entering @PostConstruct methods on a Service
> -----------------------------------------------------------------------------
>
>                 Key: ISIS-597
>                 URL: https://issues.apache.org/jira/browse/ISIS-597
>             Project: Isis
>          Issue Type: Improvement
>          Components: Core, Objectstore: JDO
>    Affects Versions: objectstore-jdo-1.3.0, core-1.3.0
>            Reporter: Oscar Bou
>            Assignee: Dan Haywood
>             Fix For: objectstore-jdo-1.4.0, core-1.4.0
>
>
> Methods annotated with @PostConstruct are invoked before their objects being 
> injected.
> Steps to reproduce:
> As per [1], create a method on a service annotated with @PostConstruct, like 
> this one:
> @PostConstruct
>    public void init(final Map<?, ?> props) {
>       server.setGlobal("eventOccurrences", this.eventOccurrences);
>       
>    }
>    ....
>    // {{ injected: EventOccurrences
>    private EventOccurrences eventOccurrences;
>    public final void injectEventOccurrences(final EventOccurrences 
> eventOccurrences) {
>        this.eventOccurrences = eventOccurrences;
>    }
>    // }}
> The problem is that when the execution arrives to:
>     server.setGlobal("eventOccurrences", this.eventOccurrences);
> this.eventOccurrences is still null... So it has not yet been injected (or 
> instantiated).
> [1] http://isis.apache.org/core/services/initializing-services.html



--
This message was sent by Atlassian JIRA
(v6.1#6144)

Reply via email to