With this post, I'm abandoning JRoller, after years of frustration. This platform has become old and lacks too many features I need today.
Please check my new blog at:
http://championingjava.wordpress.com/
Old posts will stay here as an archive.
Um das größte Museum für Heimcomputer und Spielkonsolen aufzubauen, sucht die RetroBude (http://retrobu.de/) historische Heimcomputer, Spielkonsolen, Spiele/Software, Literatur, Werbung und weitere Artefakte aus der Vergangenheit. Hilf mit deinem Beitrag (als Spende oder gegen Bezahlung) die Geräte einem interessierten Publikum zugänglich zu machen.
The post In eigener Sache: Die RetroBude ist auf Wachstumskurs appeared first on Java Blog | Javainsel-Blog.
http://gwtbootstrap.github.io, auf jeden Fall einen Blick wert.
The post Neue GWT-Bibliothek appeared first on Java Blog | Javainsel-Blog.
Most of the popular acronyms are wrong:
XMLHttpRequest JavaScript object / browser API. Without XMLHttpRequest would be hard to implement an AJAX application...See you at Java EE Workshops at MUC Airport!
Seit Neustem kann man mit Java auch ausführbare Dateien bzw. Installer bauen. Ließ dazu http://docs.oracle.com/javafx/2/deployment/self-contained-packaging.htm bzw. suche nach weiterer Dokumentation im Netz.
The post Thema der Woche: Paketierung mit <fx:deploy> appeared first on Java Blog | Javainsel-Blog.
You could build, test and deploy the entire Java EE Application and even create a working application server from scratch with a single mvm clean install command. The only problem is: it will take forever and you will have to repeat the whole process over and over again, even if you were only interested in particular build steps.
If mvm clean install would just execute the unit tests, your feedback will be significantly faster. Instead of waiting hours, you get the first results in seconds.
A series of composable jobs, each executing a goal or maven plugin, could be realized with http://jenkins-ci.org, or a simple shell / batch script on the developer's machine.
Instead of executing all plugins at once by hooking them to the lifecycle, you could implement a series of chained together jobs. E.g.
mvm clean installmvn failsafe:integration-test
The faster the feedback, the more valuable it gets. A monolithic mvn clean install leads to too long builds, less feedback and becomes less valuable for Continuous Integration. CI degrades to nightly builds…
Just start with an essential setup essential and not with a super-pom.
[See also an in-depth discussion in the "Real World Java EE Night Hacks--Dissecting the Business Tier" book, page 136 in, chapter "Continuous Integration and QA"]
See you at Java EE Workshops at MUC Airport (Effective JavaEE)!
Do you think that the RESTEasy 3.0 final version will support Comet for resteasy-netty? I read on the JBoss page that it works for servlet containers version, but what about Netty?