- 浏览: 308103 次
最新评论
-
M_drm:
学习了,赞
JDBC 分布式事务 基础知识 JTA基本原理 -
jackyin5918:
...
[转]PowerMock 简介 使用 PowerMock 以及 Mockito 实现单元测试 -
happyle:
同感啊.....
因为眼花而引发的悲剧 -- Spring 整合Shiro框架中注入RolePermissionResolver到AuthorizingRealm -
jackyin5918:
hemingyuan 写道博主,你的压缩文件貌似打不开啊,能不 ...
Spring3 集成 Hibernate4,使用Atomikos3.8实现分布式事务控制 -
hemingyuan:
博主,你的压缩文件貌似打不开啊,能不能上传一个完整的例子,别分 ...
Spring3 集成 Hibernate4,使用Atomikos3.8实现分布式事务控制
文章列表
博客搬家, 更好阅读体验,猛戳 http://www.jack-yin.com/english/translation/activemq-in-action/1545.html
7.1 Embedding ActiveMQ using Java
7.1 Java应用程序中嵌入ActiveMQ
Although most developers today use some kind of framework for composing their
applications, it’s always good to start with plain old Java. In ...
博客搬家, 更好阅读体验, 猛戳 http://www.jack-yin.com/english/translation/activemq-in-action/1540.html
7 Creating Java applications with ActiveMQ
7 使用ActiveMQ创建Java程序
This chapter covers
Embedding ActiveMQ in Java applications
Embedding ActiveMQ using Spring
Creating request/reply applications ...
博客搬家,更好阅读体验,猛戳 http://www.jack-yin.com/english/translation/activemq-in-action/1536.html
6.5 Summary
6.5 小结
In this chapter, the ActiveMQ broker was secured from non-authenticated and nonauthorized
access. For the most simple purposes, you can use the ActiveMQ simple
authentication plug-i ...
博客搬家, 更好阅读体验,猛戳:http://www.jack-yin.com/english/translation/activemq-in-action/1525.html
6.4 Certificate-based security
6.4 基于证书的安全授权机制
Earlier in this chapter, we described ActiveMQ plug-ins used to secure the broker by
authenticating the c ...
博客已搬家, 更好的阅读体验,请移步: http://www.jack-yin.com/english/translation/activemq-in-action/1089.html
6.3 Building a custom security plug-in
6.3 创建自定义安全插件
So far this chapter has focused on the built-in security features in ActiveMQ. Though
these ...
6.2 Authorization
6.2 授权
To build upon authentication, consider a use case requiring more fine-grained control
over clients to authorize certain tasks. In most stock trading applications, only specific
applications can write to a given destination. After all, you wouldn’t want any old
applic ...
6.1 Authentication
6.1 安全认证
All security concepts in ActiveMQ are implemented as plug-ins. This allows for easy
configuration and customization via the <plugin> element of the ActiveMQ XML configuration
file. Two plug-ins are available in ActiveMQ to authenticate users:
Simple authen ...
JAAS 概述
JAAS 全称 Java Authentication and Authorization Service 即,Java认证和授权服务.实际上是一组API,
但JDK中包含一些默认实现.
主要类 LoginContext,另外需要一些辅助类,如普通类 Subject,Principal,Credential(凭证),
验证 LoginContext,LoginModule,CallBackHandler,Callback,
授权 Policy,AuthPermission,PrivateCredentialPermission
详情,参考:
h ...
myeclipse资源文件编辑插件
- 博客分类:
- 工具
myeclipse资源文件编辑插件_0.77配6.5另一个配高版本.zip
6 Securing ActiveMQ
6 ActiveMQ消息安全管理
This chapter covers
How to use authentication in ActiveMQ
How to use authorization in ActiveMQ
How to create a custom security plug-in for ActiveMQ
Using certificate-based security with ActiveMQ
本章内容包括
如何使用ActiveMQ认证
如何使用ActiveMQ授权
如何构件ActiveMQ用户安全插件 ...
5.7 Summary
5.7 小结
This chapter began by discussing how messages are stored differently for queues and
topics. Then the various message store implementations were explained and discussed,
including their configuration and when to use each. You should have a good
understanding about the two t ...
5.6 Caching messages in the broker for consumers
5.6 为消息消费者缓存消息
Although one of the most important aspects of message persistence is that the messages
will survive in long-term storage, there are a number of cases where messages are
required to be available for consumers ...
出现这个问题时,要注意三个方面,网上都是简单的说了一下,现总结如下:
1、你所用的代码的jdk与目前的编译环境的jdk不一样,在当前工程上点右键选择"属性",进去后在Java build path进去修改即可。
2、进到当前工程的属性后,选择"Java Compiler"进去后将"Compiler Compliance level"改成当前jdk的版本
3、windows->preferences->MyEclipse Enterprise Workbench->Servers->Tomcat-&g ...
5.5 The memory message store
5.5 内存消息存储
The memory message store holds all persistent messages in memory. No active caching
is involved, so you have to be careful that both the JVM and the memory limits you
set for the broker are large enough to accommodate all the messages that may exist in
...