- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想从登录用户获取单例中的调用者主体。用户正在使用用户名/密码对其余服务进行身份验证
安全域在war中的jboss-web.xml中
<security-domain>application-security</security-domain>
war 的终点是:
@Path("/message/{message}")
public class MyRessource
{
@EJB
MySingleton singletonBean;
@GET
public Response resource(@PathParam("message") String message)
{
singletonBean.printText(message);
System.out.println("called from: " + ctx.getUserPrincipal().getName());
}
单例位于自己的项目中,并在 war 中作为依赖项提供。
@Stateless
public class MySingletonBean implements MySingleton
{
@Resource
EJBContext context;
@Resource
SessionContext ctx;
public void printText(String text) {
System.out.println(text + ":: EJBContext: " + context.getCallerPrincipal().getName() + " SessionContext: " + ctx.getCallerPrincipal().getName());
}
}
我的 web.xml:
<web-app>
<security-role>
<role-name>Admin</role-name>
</security-role>
<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
<http-method-omission>OPTIONS</http-method-omission>
</web-resource-collection>
<auth-constraint>
<role-name>Admin</role-name>
</auth-constraint>
</security-constraint>
<login-config>
<auth-method>BASIC</auth-method>
</login-config>
</web-app>
独立-full-ha.xml
<subsystem xmlns="urn:wildfly:elytron:5.0" ...>
[...]
<security-domain name="application-security" default-realm="application-properties" permission-mapper="default-permission-mapper">
<realm name="application-properties"/>
</security-domain>
[...]
</subsystem>
[...]
<http-authentication-factory name="application-security-http" security-domain="application-security" http-server-mechanism-factory="global">
<mechanism-configuration>
<mechanism mechanism-name="BASIC"/>
</mechanism-configuration>
</http-authentication-factory>
[...]
<security-domains>
<security-domain name="application-security" default-realm="application-properties" permission-mapper="default-permission-mapper">
<realm name="application-properties"/>
</security-domain>
[...]
</security-domains>
[...]
<subsystem xmlns="urn:jboss:domain:security:2.0">
<security-domains>
<security-domain name="application-security">
<authentication>
<login-module code="UsersRoles" flag="required">
<module-option name="usersProperties" value="file://${jboss.server.config.dir}/context-users.properties"/>
<module-option name="rolesProperties" value="file://${jboss.server.config.dir}/context-roles.properties"/>
</login-module>
</authentication>
</security-domain>
[...]
</subsystem>
[...]
<subsystem xmlns="urn:boss:domain:undertow"...>
<application-security-domains>
<application-security-domain name="application-security" http-authentication-factory="application-security-http"/>
</application-security-domains>
[...]
</subsystem>
但作为校长我总是匿名。
我做错了什么?
最佳答案
您在这里至少遇到三个问题:
<subsystem xmlns="urn:jboss:domain:security:2.0">
是一个旧配置元素,不与 elytron 连接;
您完全缺少 ejb3 安全配置;
您的 EJB 方法不受 @RolesAllowed(...)
的保护.
我有一个类似的例子:
创建一个elytron属性领域:
/subsystem=elytron/properties-realm=DemoPropsRealm:add(groups-attribute=groups,\
groups-properties={\
path=demo-roles.properties,relative-to=jboss.server.config.dir},\
users-properties={\
path=demo-users.properties,relative-to=jboss.server.config.dir,plain-text=true})
创建elytron安全域:
/subsystem=elytron/security-domain=DemoDomain:add(\
realms=[{realm=DemoPropsRealm,role-decoder=groups-to-roles}],\
default-realm=DemoPropsRealm,permission-mapper=default-permission-mapper)
创建映射到我们的 DemoDomain 的 elytron http 身份验证工厂:
/subsystem=elytron/http-authentication-factory=demo-http-auth:add(\
http-server-mechanism-factory=global,\
security-domain=DemoDomain,\
mechanism-configurations=[{\
mechanism-name=BASIC,\
mechanism-realm-configurations=[{\
realm-name=DemoApplicationDomain\
}]\
}])
将 ejb3 子系统应用程序安全域映射到我们的 DemoDomain
/subsystem=ejb3/application-security-domain=\
DemoApplicationDomain:add(security-domain=DemoDomain)
将 undertow 子系统应用程序安全域链接到我们的 http-authentication-factory:
/subsystem=undertow/application-security-domain=\
DemoApplicationDomain:add(http-authentication-factory=demo-http-auth)
“DemoApplicationDomain”将是 login-config
中的领域名称web.xml 的元素和 security-domain
在 jboss-web.xml 文件中。
声明 EJB 方法上允许的角色:
@RolesAllowed("Admin")
public void printText(String text) {
System.out.println(text + ":: EJBContext: " + context.getCallerPrincipal().getName()
+ " SessionContext: " + ctx.getCallerPrincipal().getName());
}
示例源代码位于 GitHub jax-rs-basic-auth .
关于java - Wildfly 15 从 jax rs 登录用户获取 Singleton 中的 EJBContext,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54219391/
来自 JSR-339: For simplicity, JAX-RS implementations are NOT REQUIRED to support processing groups oth
JAX-RS 提供了 StreamingOutput 接口(interface),我们可以实现它来对我们的响应主体进行原始流处理。 public interface StreamingOutput {
有没有办法获得java.lang.reflect.Method为给定的 @Path 调用的方法(用 HttpServletRequest 注释) ? 这是我的用例:我在 Java EE 中 Filte
我接到了一家公司的任务,该任务向我发送了一台已完成所有设置的虚拟机。任务是我必须创建一个 API 来从数据库中检索人员详细信息并显示它。 问题是,当我运行应用程序时,服务器返回一个包含 hello w
我有一个 POST 方法调用,它接受很少的表单参数。我希望 JAX-RS 能够处理不存在特定表单参数的情况。 示例: @POST @Produces (MediaType.APPLICATION_JS
我有 JAX-RS 网络应用程序,我想记录从获取请求到响应的时间量。在带有 servlet 过滤器的 Spring Boot 中很容易。但是我的应用程序中的过滤器无法正常工作: @Provider p
使用以下网址。 http://doma.in/context/resource/some/.../undefined 我想获取 ../resource 之后的路径名,即 /some/.../undef
Closed. This question is off-topic。它当前不接受答案。
我花了几个小时在嵌入式 Jetty 9.1.0.v20131115 和 RESTEasy 3.0.5.Final 中安装自定义登录服务。我的登录服务将在数据库中查找用户并为他们分配角色。它看起来像这样
RESOURCE_STALLS.RS的说明Intel Broadwell 的硬件性能事件如下: This event counts stall cycles caused by absence of
我想从 java 服务器 (Restful Jax-rs) 发送图像。我的客户是安卓。 @GET public Response getUserImage() { byte[] image =new
(特别是 RESTeasy) 具有如下方法签名会很好(对于单个文件): public void upload(@FormParam("name") ..., @FormParam("file") fi
RESTEasy (JAX-RS) 允许通过子资源进行动态调度。例如: POST /customers/create {"name":"Smith","country":"jp"} 我们可以有一个根资
假设有一个 ResultSet rs 和 n 对象。 这段代码: while(rs.next()) { // do something on rs } 在算法上等于此代码(即两者给出相同的结果)
我正在使用 Visual Studio 2005 和 mysql 4.0,我有一个表,其中包含一个字段(十进制 16,4),用于存储发票金额和另一个表,其中包含对该发票的付款(这些字段也是十进制的)
我正在使用 JAX-RS、Microprofile 和 Payara 5 构建 REST 服务。我的方法返回类型为 Response 的对象。响应本身包含一个 MyClass 列表。实现看起来像这样:
我已经使用 Mock MVC 成功地为 Spring MVC REST 服务构建了无需部署的集成测试框架。我正在努力对 JAX-RS 服务做同样的事情。 REST Assured 看起来很有希望,但它
我有一个使用JAX-RS 2.0的Jersey实现的Java应用程序,并且我想在客户端启用gzip压缩。服务器已启用它,并且通过在Chrome中的开发人员工具中的“大小/内容”中查找客户端正在使用的特
我正在尝试与 Tomcat7 一起使用 RESTful Web 服务 (JAX-RS)。我尝试了 3 种不同的实现(Jersey、RESTeasy 和 ReSTLet),但都没有成功。这应该很容易,但
swagger-api有什么区别和 JAX-RS ? 是swagger-api仅用于文档? (例如 @ApiOperation ) 最佳答案 根据 API 文档,JAX-RS是用于 RESTful W
我是一名优秀的程序员,十分优秀!