You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mina.apache.org by "simon trudeau (JIRA)" <ji...@apache.org> on 2008/04/18 21:54:21 UTC

[jira] Created: (DIRMINA-573) Exposing ExecutorFilter private members with getter and setter methods - Spring issue

Exposing ExecutorFilter private members with getter and setter methods - Spring issue
-------------------------------------------------------------------------------------

                 Key: DIRMINA-573
                 URL: https://issues.apache.org/jira/browse/DIRMINA-573
             Project: MINA
          Issue Type: Improvement
          Components: Core
    Affects Versions: 2.0.0-M1
         Environment: Spring framework version 2.5.0 to 2.5.3
            Reporter: simon trudeau


Currently, Spring version 2.5.0 to 2.5.3 have a bug with dependency injection based on constructor argument. Basically when classes have many constructors with the same number of arguments, dependency injection doesn't work. It would really help if the org.apache.mina.filter.executor.ExecutorFilter would expose its private members using getter and setter methods.

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


[jira] Closed: (DIRMINA-573) Exposing ExecutorFilter private members with getter and setter methods - Spring issue

Posted by "Emmanuel Lecharny (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DIRMINA-573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Emmanuel Lecharny closed DIRMINA-573.
-------------------------------------


> Exposing ExecutorFilter private members with getter and setter methods - Spring issue
> -------------------------------------------------------------------------------------
>
>                 Key: DIRMINA-573
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-573
>             Project: MINA
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: 2.0.0-M1
>         Environment: Spring framework version 2.5.0 to 2.5.3
>            Reporter: simon trudeau
>            Assignee: Trustin Lee
>   Original Estimate: 0.08h
>  Remaining Estimate: 0.08h
>
> Currently, Spring version 2.5.0 to 2.5.3 have a bug with dependency injection based on constructor argument. Basically when classes have many constructors with the same number of arguments, dependency injection doesn't work. It would really help if the org.apache.mina.filter.executor.ExecutorFilter would expose its private members using getter and setter methods.

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


[jira] Commented: (DIRMINA-573) Exposing ExecutorFilter private members with getter and setter methods - Spring issue

Posted by "Trustin Lee (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/DIRMINA-573?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12590740#action_12590740 ] 

Trustin Lee commented on DIRMINA-573:
-------------------------------------

The constructors with various parameters are a shortcut for 'new ExecutorFilter(new OrderedExecutor(...))'.  It seems like you are interested in configuring the properties of OrderedExecutor.  Of course you can do that with Spring nested property without modifying MINA.

<bean id="..." class="org.apache.mina.filter.ExecutorFilter" ...>
    <proeprty name="executor.corePoolSize" value="100"/>
</bean>

> Exposing ExecutorFilter private members with getter and setter methods - Spring issue
> -------------------------------------------------------------------------------------
>
>                 Key: DIRMINA-573
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-573
>             Project: MINA
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: 2.0.0-M1
>         Environment: Spring framework version 2.5.0 to 2.5.3
>            Reporter: simon trudeau
>   Original Estimate: 0.08h
>  Remaining Estimate: 0.08h
>
> Currently, Spring version 2.5.0 to 2.5.3 have a bug with dependency injection based on constructor argument. Basically when classes have many constructors with the same number of arguments, dependency injection doesn't work. It would really help if the org.apache.mina.filter.executor.ExecutorFilter would expose its private members using getter and setter methods.

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


[jira] Resolved: (DIRMINA-573) Exposing ExecutorFilter private members with getter and setter methods - Spring issue

Posted by "Trustin Lee (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/DIRMINA-573?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Trustin Lee resolved DIRMINA-573.
---------------------------------

    Resolution: Invalid
      Assignee: Trustin Lee

Seems like my example has resolved your concern.  Please reopen if it doesn't work as you expected.

> Exposing ExecutorFilter private members with getter and setter methods - Spring issue
> -------------------------------------------------------------------------------------
>
>                 Key: DIRMINA-573
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-573
>             Project: MINA
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: 2.0.0-M1
>         Environment: Spring framework version 2.5.0 to 2.5.3
>            Reporter: simon trudeau
>            Assignee: Trustin Lee
>   Original Estimate: 0.08h
>  Remaining Estimate: 0.08h
>
> Currently, Spring version 2.5.0 to 2.5.3 have a bug with dependency injection based on constructor argument. Basically when classes have many constructors with the same number of arguments, dependency injection doesn't work. It would really help if the org.apache.mina.filter.executor.ExecutorFilter would expose its private members using getter and setter methods.

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


[jira] Commented: (DIRMINA-573) Exposing ExecutorFilter private members with getter and setter methods - Spring issue

Posted by "simon trudeau (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/DIRMINA-573?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12590594#action_12590594 ] 

simon trudeau commented on DIRMINA-573:
---------------------------------------

The Spring ticket addressing this issue is: http://jira.springframework.org/browse/SPR-4713

> Exposing ExecutorFilter private members with getter and setter methods - Spring issue
> -------------------------------------------------------------------------------------
>
>                 Key: DIRMINA-573
>                 URL: https://issues.apache.org/jira/browse/DIRMINA-573
>             Project: MINA
>          Issue Type: Improvement
>          Components: Core
>    Affects Versions: 2.0.0-M1
>         Environment: Spring framework version 2.5.0 to 2.5.3
>            Reporter: simon trudeau
>   Original Estimate: 0.08h
>  Remaining Estimate: 0.08h
>
> Currently, Spring version 2.5.0 to 2.5.3 have a bug with dependency injection based on constructor argument. Basically when classes have many constructors with the same number of arguments, dependency injection doesn't work. It would really help if the org.apache.mina.filter.executor.ExecutorFilter would expose its private members using getter and setter methods.

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