문제

I try migrate an EJB2.1 projetk into EJB3.1. I did not find any annotation for . How can i reflect this tag.

The ejb-jar.xml part looks like:

<security-role-ref>
            <role-name>admin</role-name>
            <role-link>adm_role</role-link>
</security-role-ref>
도움이 되었습니까?

해결책

There is no separate annotation, linking security role reference to security role can be done only in deployment descriptor (as in your ejb.jar.xml fragment). This is explained in details at chapter 17.3.3 in EJB 3.1 specification and there is no word about doing it via annotations.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top