This page (revision-5) was last changed on 20-Jun-2014 11:40 by Dieter Käppel

This page was created on 14-May-2013 11:19 by Dieter Käppel

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
5 20-Jun-2014 11:40 3 KB Dieter Käppel to previous
4 20-Jun-2014 11:40 3 KB Dieter Käppel to previous | to last
3 25-Jan-2014 14:39 3 KB Dieter Käppel to previous | to last
2 25-Jan-2014 14:17 1 KB Dieter Käppel to previous | to last
1 14-May-2013 11:19 1 KB Dieter Käppel to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 1 changed one line
Die [JSF Spring Integration] enthält zusätzlichen Integration, um [JSF Ext] zusammen mit Spring verwenden zu können.
Die [JSF Spring Integration] enthält zusätzlichen Integration, um [JSF Ext] zusammen mit Spring verwenden zu können. [JSF Spring Integration] kann aus dem [Intersult Maven Repository] bezogen werden.
At line 99 added 18 lines
!!!Managed Bean Injection
Mit der Annotation @AutowiredBean können auch managed Beans von JSF injected werden:
{{{
@Component
@Scope(WebApplicationContext.SCOPE_REQUEST)
public class JsfTest implements Serializable {
private static final long serialVersionUID = 1L;
@AutowiredBean
private JsfBean jsfBean;
public String getText() {
return jsfBean.getText();
}
}
}}}