[webbeans-issues] [JBoss JIRA] Updated: (WBRI-338) Java based DSL configuration of BeanDeploymentArchive
Takeshi Kondo (JIRA)
jira-events at lists.jboss.org
Sun Aug 16 12:18:26 EDT 2009
[ https://jira.jboss.org/jira/browse/WBRI-338?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Takeshi Kondo updated WBRI-338:
-------------------------------
Attachment: dsl-configuration-impl.patch
Hi Pete
I've developed implementation of DSL configuration API.
---
This development feature :
* Add context
* SimpleBean Configuration
* Constant value binding
* beans.xml API configuration
* Test helper API
---
Lacking feature from guice:
* Provider(producer?) configuration
* Bind interceptor(decorator)
* Bind event
* Binding Overrides
-------
If you want lacking feature, could you tell me it?
Please review it.
I like Test helper API.
Regards
> Java based DSL configuration of BeanDeploymentArchive
> -----------------------------------------------------
>
> Key: WBRI-338
> URL: https://jira.jboss.org/jira/browse/WBRI-338
> Project: Web Beans
> Issue Type: Patch
> Components: Bootstrap
> Reporter: Takeshi Kondo
> Assignee: Takeshi Kondo
> Priority: Minor
> Attachments: dsl-configuration-impl-testcase.patch, dsl-configuration-impl.patch, dsl-configuration-interface.patch, dsl-configuration-test-case.patch, dsl-test.patch, dsl.patch
>
>
> In test environment ,I frequently change configuration.
> ClssLoader scan is convenience , but it is laggardly and not flexible.
> Alternatively , I'd created new BeanDeploymentArchive which loads Java based DSL configuration.
> sample is as follows.
> -------
> > Java based DSL Configuration
> class TestBeanModule extends BeanModuleBase
> {
> @Override
> protected void configure()
> {
> bean(TestBean.class);
> }
> }
> -------
> > TestCase
> @Test(groups = "bootstrap")
> public void testBeanModule()
> {
> new ModuleTest(new TestBeanModule())
> {
> @Override
> protected void test()
> {
> BeanManagerImpl manager = CurrentManager.rootManager();
> assert manager.getInstanceByType(TestBean.class) != null;
> }
> };
> }
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the weld-issues
mailing list