在同一请求上下文中的不同类中使用RequestScoped Bean时会发生什么

时间:2019-02-14 14:54:24

标签: cdi

@Inject Test t2; Test t1 = new Test(); t1.setUsername("username"); t1.setPassword("password"); 现在之间有什么区别 t2 = t1; and
t2.setUsername("usename"); t2.setPasswrod("password");
让我们假设Test是RequestScopedBean,如果我尝试在同一请求的另一个类中注入Test并尝试访问其值,会发生什么情况?两种情况下

0 个答案:

没有答案