Asity 3.0.0 released
flowersinthesand wrote this on
It is my pleasure to announce that Asity 3 is available now. This major release includes Play Framework 2 support. Actually, as you may know, Asity supported Play framework 5 years ago though it was dropped because of a lack of features when releasing the Asity 1.0 GA. In this release we rewrote the bridge from scratch using Akka Java API and successfully implemented the missing features.
If you want to jump right in and get started with Asity with Play Framework 2, start with the following examples.
- Echo server - A simple web fragment to send back data to the client. It uses Play 2.6.
- Cettia starter kit - A basic chat application using a real-time webapp framework built on top of Asity. It uses Play 2.7.
For the Play bridge’s reference documentation, visit https://asity.cettia.io/#play-2.
There’s no breaking changes with Asity 2.0. If you migrate from the last beta to GA, set the raw body parser for HTTP actions as follows. Of course, it applies to code using Play Framework 2 bridge, asity-bridge-play2
, only.
@BodyParser.Of(BodyParser.Raw.class)
public CompletionStage<Result> http(Http.Request request) {
AsityHttpAction action = new AsityHttpAction();
action.onhttp(httpAction);
return action.apply(request);
}
The following bug fixes and improvements are included since the last beta.
- The minimum required version of Play framework is lowered from 2.7 to 2.6. Play 2.5 and below may work though we haven’t tried it.
- It’s confirmed that the Play bridge is compatible with Play Framework 2.8.0-M3.
- Bugs in the Play bridge’s
readAsText(String charset)
are fixed. It requires to use the raw body parser. - A generic wildcard in
onbody(Action<?> action)
andonchunk(Action<?> action)
methods ofServerHttpExchange
interface is replaced with a type parameter. Accordingly, you can write code likehttp.<String>onchunk(http::write);
now.
While integrating Play Framework 2 with Asity, we confirmed that most key features work pretty well following the TDD principles, which means that you should have no problems in running a Cettia application on the Play Framework 2 through Asity. However, we also found the following known issues about “Transfer-encoding: chunked” request handling.
- Play Framework doesn’t support to read request body by chunk asynchronously. Now the bridge waits till the client finishes writing the body and give an action the whole request body when finished. Accordingly the
ServerHttpExchange#onchunk
methods is called only once with the whole request body. - Play Framework doesn’t detect TCP disconnection. For that reason the
ServerHttpExchange#onclose
method is not called, regardless of the connection state.
If you have any questions, feedback, or hints for known issues, don’t hesitate to contact us, Cettia Groups.
All posts
- Asity 3.0.0 released on
- Asity 3.0.0-Beta1 released on
- Cettia JavaScript Client 1.1.0 released on
- Cettia JavaScript Client 1.0.2 released on
- New Cettia Starter Kit on
- Cettia Java Server 1.2.0 released on
- Cettia Java Server 1.2.0-Beta2 released on
- Cettia Java Server 1.1.0 released on
- Cettia Java Server 1.1.0-Beta1 released on
- Asity 2.0.0 released on
- Asity 2.0.0-RC1 released on
- Asity 2.0.0-Alpha2 released on
- Asity 2.0.0-Alpha1 released on
- Cettia JavaScript Client 1.0.1 released on
- Cettia 1.0.0 released on
- Cettia 1.0.0-RC1 released on
- Cettia JavaScript Client 1.0.0-Beta2 released on
- Cettia 1.0.0-Beta1 released on
- Cettia Java Platform is now Asity on
- Cettia 1.0.0-Alpha2 released on
- Cettia 1.0.0-Alpha1 released on