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>
link|improve this question

73% accept rate
feedback

1 Answer

up vote 0 down vote accepted

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.

link|improve this answer
I want to get rid of ejb-jar.xml. Which way should i follow? – Kayser Feb 14 at 8:26
As I said - you can define this only in ejb-jar.xml not with annotations, so you cannot get rid of ejb-jar.xml. – Mikko Maunu Feb 16 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.