私は単純な (webprofile) EJB 3.1 アプリケーションを持っており、@ApplicationScoped
CDI Bean 内の現在のユーザーを特定しようとしているので、次を使用します。
Principal callerPrincipal = this.sessionContext.getCallerPrincipal()
これは正常に機能します (そのため、現在のユーザーの名前を特定できます)。
しかし、(他の) EJB で例外が発生すると、この呼び出しは機能しなくなります (サーバーを再起動する必要があります)。呼び出し元のプリンシパルを返す代わりに、メソッドはこの例外をスローします。
Caused by: java.lang.NullPointerException
at com.sun.ejb.containers.EJBContextImpl.getCallerPrincipal(EJBContextImpl.java:421)
at de.mytest.service.CurrentUserService.getCurrentUserId(CurrentUserService.java:102)
誰かが私が間違っていることのヒントを教えてくれますか?
実装の詳細:
サーバー Glassfish 3.1.2
現在のユーザー サービス:
@ApplicationScoped
public class CurrentUserService {
@Resource
private SessionContext sessionContext;
public long getCurrentUserId() {
if (this.sessionContext == null) {
throw new RuntimeException("initialization error, sessionContext must not be null!");
}
/*line 102 */ Principal callerPrincipal = this.sessionContext.getCallerPrincipal();
if (callerPrincipal == null) {
throw new RuntimeException("callerPrincipal must not be null, but it is");
}
String name = callerPrincipal.getName();
if (name == null) {
throw new RuntimeException("could not determine the current user id, because no prinicial in session context");
}
return this.getUserIdForLogin(name);
}
Faces Controller と CDI Service の間で抵抗する EJB Facad
@Stateless
@RolesAllowed("myUser")
public class TeilnehmerServiceEjb {
@Inject
private CurrentUserService currentUserService;
public long currentUserId() {
return = currentUserService.getCurrentUserId();
}
}
web.xml
<security-constraint>
<web-resource-collection>
<web-resource-name>All Pages</web-resource-name>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<auth-constraint>
<role-name>myUser</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>mySecurityRealm</realm-name>
</login-config>
glassfish-web.xml
<security-role-mapping>
<role-name>myUser</role-name>
<group-name>APP.MY.USER</group-name>
</security-role-mapping>