You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <de...@tapestry.apache.org> on 2008/09/09 20:15:44 UTC

[jira] Assigned: (TAPESTRY-2647) IOC services bound using a marker behave differently than services with a serviceId thus producing a StackOverflow

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

Howard M. Lewis Ship reassigned TAPESTRY-2647:
----------------------------------------------

    Assignee: Howard M. Lewis Ship

> IOC services bound using a marker behave differently than services with a serviceId thus producing a StackOverflow
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: TAPESTRY-2647
>                 URL: https://issues.apache.org/jira/browse/TAPESTRY-2647
>             Project: Tapestry
>          Issue Type: Bug
>          Components: tapestry-ioc
>    Affects Versions: 5.0.14
>            Reporter: Kristian Marinkovic
>            Assignee: Howard M. Lewis Ship
>         Attachments: test.zip
>
>
> the module class below produces a StackOverflow if i try to call the chain. if i use a serviceId instead of the marker annotation everything work as expected. it seems, that a marker annotation does not have the same behaviour as a serviceId. see also the attached maven project that examplifies the problem.
> public final class StackOverflowModule 
> {
> 	public static void bind(ServiceBinder binder)
> 	{
> 		binder.bind(ChainInterface.class, HelloWorld.class).withMarker(Default.class);
> 	}
> 	
> 	public ChainInterface buildChainInterface(List<ChainInterface> chainItems, ChainBuilder builder)
> 	{
> 		return builder.build(ChainInterface.class, chainItems);
> 	}
> 	
> 	public void contributeChainInterface(OrderedConfiguration<ChainInterface> chainItems,
> 			@Default ChainInterface helloWorld)
> 	{
> 		chainItems.add("Default", helloWorld);
> 	}
> }

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


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tapestry.apache.org
For additional commands, e-mail: dev-help@tapestry.apache.org