内容简介:本次修改内容 1、支持 HTTPS,用法同 tio-core ,例子如下: private static void initSsl(ServerGroupContext serverGroupContext) throws Exception { String keyStoreFile = PropKit.get("ssl.ke...
本次修改内容
1、支持 HTTPS,用法同 tio-core ,例子如下:
private static void initSsl(ServerGroupContext serverGroupContext) throws Exception { String keyStoreFile = PropKit.get("ssl.keystore", null); String trustStoreFile = PropKit.get("ssl.truststore", null); String keyStorePwd = PropKit.get("ssl.pwd", null); if (StringUtils.isNotBlank(keyStoreFile) && StringUtils.isNotBlank(trustStoreFile)) { SslConfig sslConfig = SslConfig.forServer(keyStoreFile, trustStoreFile, keyStorePwd); serverGroupContext.setSslConfig(sslConfig); } } ... HttpServerStarter httpServerStarter = new HttpServerStarter(httpConfig, requestHandler); ServerGroupContext serverGroupContext = httpServerStarter.getServerGroupContext(); initSsl(serverGroupContext); //让HTTP走TLS ...
2、http 增加 ThrowableHandler ,方便业务层统一处理异常
3、httpsession 添加创建时间
4、其它各种 pom 升级
最新 maven 坐标
<dependency> <groupId>org.t-io</groupId> <artifactId>tio-http-server</artifactId> <version>0.0.5-tio-http</version> </dependency>
【声明】文章转载自:开源中国社区 [http://www.oschina.net]
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- cURL 7.70.0 发布,原生支持 JSON、实验性支持 MQTT
- hi-nginx-1.5.2 发布,优化 cpp 支持,添加 groovy 支持
- hi-nginx-1.5.2 发布,优化 cpp 支持,添加 groovy 支持
- Spring Tools 4.3.0 发布,支持 Eclipse Theia 并弃用 Atom 支持
- Spring Tools 4.3.0 发布,支持 Eclipse Theia 并弃用 Atom 支持
- Tiki 20 发布,支持 markdown 语法
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Flash ActionScript 3.0 动画高级教程
Keith Peters / 苏金国、荆涛 / 人民邮电出版社 / 2010-1 / 65.00元
《Flash ActionScript 3.0 动画高级教程》是介绍Flash 10 ActionScript动画高级技术的经典之作,是作者在这一领域中多年实践经验的结晶。书中不仅涵盖了3D、最新绘图API以及Pixel Bender等Flash 10 ActionScript特性,深入介绍了碰撞检测、转向、寻路等Flash游戏开发技术,还通过实例具体讲解了等角投影和数值积分的基本理论和应用。 ......一起来看看 《Flash ActionScript 3.0 动画高级教程》 这本书的介绍吧!