An open API service indexing awesome lists of open source software.

https://github.com/bbossgroups/security

bboss session framework.support session share between application cluster nodes and cross domain application nodes.support good application session monitor and session data statitic module.demo site http://session.bbossgroups.com/
https://github.com/bbossgroups/security

Last synced: 4 days ago
JSON representation

bboss session framework.support session share between application cluster nodes and cross domain application nodes.support good application session monitor and session data statitic module.demo site http://session.bbossgroups.com/

Awesome Lists containing this project

README

          

# bboss group website:
http://www.bbossgroups.com

# 版本构建方法

gradle clean publishToMavenLocal

需要通过gradle构建发布版本,gradle安装配置参考文档:

https://esdoc.bbossgroups.com/#/bboss-build

# bboss group project blog:
http://yin-bp.iteye.com/
# 技术交流

**技术交流群:21220580,166471282**

# 支持我们

如果您正在使用bboss,或是想支持我们继续开发,您可以通过如下方式支持我们:

1.Star并向您的朋友推荐或分享

[bboss elasticsearch client](https://gitee.com/bboss/bboss-elastic)🚀

[数据采集&流批一体化处理](https://gitee.com/bboss/bboss-elastic-tran)🚀

2.通过[爱发电 ](https://afdian.net/a/bbossgroups)直接捐赠,或者扫描下面二维码进行一次性捐款赞助,请作者喝一杯咖啡☕️

非常感谢您对开源精神的支持!❤您的捐赠将用于bboss社区建设、QQ群年费、网站云服务器租赁费用。

# bboss 会话共享源码
github托管地址:

https://github.com/bbossgroups/security

svn下载地址

https://github.com/bbossgroups/security/trunk

# bboss session集成权威指南
https://my.oschina.net/bboss/blog/758871

# session操作使用样列(遵循servlet标准规范):

```
HttpSession session = request.getSession();//request.getSession(true)

session.setMaxInactiveInterval(180);//修改session有效期,单位:秒

TestVO testVO = new TestVO();

testVO.setId("sessionmoitor testvoid");

TestVO1 testVO1 = new TestVO1();

testVO1.setName("hello,sessionmoitor test vo1");

testVO.setTestVO1(testVO1);

session.setAttribute("testVO", testVO);

testVO = (TestVO)session.getAttribute("testVO");

//修改testVO中属性的值

testVO.setId("testvoidaaaaa,sessionmonitor modifiy id");

//需要将修改后的对象重新设置到session中否则无法存储最新的testVO到mongodb中

session.setAttribute("testVO", testVO);

testVO = (TestVO)session.getAttribute("testVO");

```

更多使用方法参考文档:

http://yin-bp.iteye.com/category/327553

## |--bboss-security

bboss会话共享核心工程

## |--bboss-ticket

bboss令牌统一认证核心工程

## |--bboss-security-web和bboss-security-web-inf

bboss会话共享监控服务和令牌服务工程

为了方便应用系统集成bboss会话共享功能,准备了两个会话共享demo工程:
https://github.com/bbossgroups/sessiondemo

## |--session

如果只需要session共享功能,则整合这个工程中的配置文件和jar包到实际项目中即可

## |--sessionmonitor

具体使用参考demo使用文档:
http://yin-bp.iteye.com/blog/2087308

## bboss项目特色特点介绍文档:
http://yin-bp.iteye.com/blog/1080824

## License

The BBoss Framework is released under version 2.0 of the [Apache License][].

[Apache License]: http://www.apache.org/licenses/LICENSE-2.0

# Star History

[![Star History Chart](https://api.star-history.com/svg?repos=bbossgroups/security&type=Date)](https://star-history.com/#bbossgroups/security&Date)