You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Ben Hutchison (JIRA)" <ji...@apache.org> on 2009/07/14 09:35:14 UTC

[jira] Updated: (WICKET-2365) Please support "autowire-candidate" attribute of a bean when injecting via @SpringBean

     [ https://issues.apache.org/jira/browse/WICKET-2365?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ben Hutchison updated WICKET-2365:
----------------------------------

    Description: 
Currently, when injecting Spring autowired dependencies via @SpringBean, Wicket's Spring integration does not take account of the optional "autowire-candidate" attribute of a bean. This attribute tells spring not to consider a bean during autowiring.

Here's our use case where we discovered this limitation. Our app uses 2 databases, a default database used by 95% of the code, and a reporting database used by the reports component. As a result we have 2 SessionFactories in our context, and this breaks @SpringBean injection.

It would be nice to cater for the 95% of code that doesn't use the reporting database, and use explicit names only for the other 5%. This seems to require the Wicket-Spring integration to understand the "autowire-candidate=false" attribute.


  was:
Currently, when injecting Spring autowired dependencies via @SpringBean, Wicket's Spring integration does take account of the optional "autowire-candidate" attribute of a bean. This attribute tells spring not to consider a bean during autowiring.

Here's our use case where we discovered this limitation. Our app uses 2 databases, a default database used by 95% of the code, and a reporting database used by the reports component. As a result we have 2 SessionFactories in our context, and this breaks @SpringBean injection.

It would be nice to cater for the 95% of code that doesn't use the reporting database, and use explicit names only for the other 5%. This seems to require the Wicket-Spring integration to understand the "autowire-candidate=false" attribute.



> Please support "autowire-candidate" attribute of a bean when injecting via @SpringBean
> --------------------------------------------------------------------------------------
>
>                 Key: WICKET-2365
>                 URL: https://issues.apache.org/jira/browse/WICKET-2365
>             Project: Wicket
>          Issue Type: Improvement
>          Components: wicket-spring
>            Reporter: Ben Hutchison
>            Priority: Minor
>
> Currently, when injecting Spring autowired dependencies via @SpringBean, Wicket's Spring integration does not take account of the optional "autowire-candidate" attribute of a bean. This attribute tells spring not to consider a bean during autowiring.
> Here's our use case where we discovered this limitation. Our app uses 2 databases, a default database used by 95% of the code, and a reporting database used by the reports component. As a result we have 2 SessionFactories in our context, and this breaks @SpringBean injection.
> It would be nice to cater for the 95% of code that doesn't use the reporting database, and use explicit names only for the other 5%. This seems to require the Wicket-Spring integration to understand the "autowire-candidate=false" attribute.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.