Git Product home page Git Product logo

Comments (3)

BrynCooke avatar BrynCooke commented on July 20, 2024

I can see why the issue happens, but I'm not sure about the solution.

The issue is chicken and egg for creating CdiTest -> ABeanToBeInjected -> ABean-> AProducer-> ABeanToBeMocked -> CdiTest.
Usually Weld either sorts this sort of thing out with proxies or throws a deployment validation exception - so I'm not sure why this doesn't happen here. In your case using a provider will prevent the stack overflow.

@Inject
private Provider<CdiTest.ABeanToBeInjected> aBeanToBeInjected;

Possibly this is a bug in Weld as I can reproduce outside of CDI-Unit:

@ApplicationScoped
public class CdiTest {

    public static void main(String[] args) {

        Weld weld = new Weld();
        WeldContainer container = weld.initialize();

        CdiTest test = container.instance().select(CdiTest.class).get();

        test.test();
    }

    public void test() {

    }

    @Produces
    private ABeanToBeMocked aMockedBean = new ABeanToBeMocked(2);

    @Inject
    private ABeanToBeInjected aBeanToBeInjected;


    public static class AProducer {

        @Inject
        private ABeanToBeMocked aMockedBean;


        @Produces
        public ABean namedBean() {
            return new ABean(2);
        }

    }

    public static class ABeanToBeMocked {
        ABeanToBeMocked(int foo) {

        }
    }

    public static class ABeanToBeInjected {

        @Inject
        ABean namedBean;
    }

    public static class ABean {
        ABean(int foo) {

        }
    }
}

from cdi-unit.

BrynCooke avatar BrynCooke commented on July 20, 2024

I've raised: https://issues.jboss.org/browse/WELD-1513

from cdi-unit.

maciejjaskowski avatar maciejjaskowski commented on July 20, 2024

Perfect! great thanks for the support, I will watch the WELD-1513 issue.

Br,
Maciej

On 22 September 2013 23:56, Bryn Cooke [email protected] wrote:

I've raised: https://issues.jboss.org/browse/WELD-1513


Reply to this email directly or view it on GitHubhttps://github.com//issues/35#issuecomment-24890369
.

from cdi-unit.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.