[weld-issues] [JBoss JIRA] Updated: (WELDX-37) Java based DSL configuration of BeanDeploymentArchive

Pete Muir (JIRA) jira-events at lists.jboss.org
Mon Apr 26 12:11:10 EDT 2010


     [ https://jira.jboss.org/jira/browse/WELDX-37?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Pete Muir updated WELDX-37:
---------------------------

    Fix Version/s:     (was: 1.0.0.Beta1)


> Java based DSL configuration of BeanDeploymentArchive
> -----------------------------------------------------
>
>                 Key: WELDX-37
>                 URL: https://jira.jboss.org/jira/browse/WELDX-37
>             Project: Weld Extensions
>          Issue Type: Feature Request
>            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