1
我對我的DI使用了Spring。 有沒有相當於@ManagedProperty?我想將一個視圖scoped bean的值注入下一頁的另一個視圖。@ManagedProperty在Spring中相當於
e.g
@Component
@Scope("view")
public class Page1Bean(){
private String value;
}
@Component
@Scope("view")
public class Page2Bean(){
@ManagedProperty(value = #{page1Bean}") //doesnt work in Spring
private Page1Bean bean;
}
我相信,這將實例化一個新的Page1Bean..I要連同它的所有內容實際Page1Bean通過。 –
我一直在使用@注入..我認爲這是JEE版本。 –
用於將jsf視圖範圍移植到spring:http://cagataycivici.wordpress.com/2010/02/17/port-jsf-2-0s-viewscope-to-spring-3-0/ – digitaljoel