2011-04-13 2 views
0

나는 이클립스 헬리오스, JSF 2, 글래스 피쉬 3.1 서버를 사용하고 있습니다 ..... 무엇의는"클래스를 할당 할 수 없다"는 의미는 무엇입니까?

 
javax.servlet.ServletException: com.sun.faces.mgbean.ManagedBeanCreationException: Unable to create managed bean contactController. The following problems were found: 
    - The property groupRepository for managed bean contactController is defined with a property class of ibm.contact.model.ContactRepository, however, this class is not assignable to the property. 

해당 오류의 의미는 무엇입니까 ... 그런 오류를 발생하는 방법과 그것을 해결하기 위해?

답변

1

나는 단지 추측하려고 할 수 있습니다. 컨테이너 ContactController의 속성 그룹 리포 지 토리는 컨테이너가이 속성에 삽입하려고 시도하는 인스턴스가 다른 유형이 아니므로 asignable이 아닙니다. 어떤 인터페이스로 물통을 주입하고 있습니까? 컨트롤러 인터페이스에 속성 groupRepository의 유형이 있습니까?

+0

faces-config.xml 파일에서 오류가 발생했습니다. groupRepository가 다른 유형으로 삽입되었습니다 .... 감사합니다. – MineIsMine

관련 문제