The new Technology Radar is here!

Jacek Milewski

The new Technology Radar is realeased: http://www.thoughtworks.com/radar/techniques. My impressions are: Languages an Frameworks - 'Adopt' Java 8, - AngularJS in its 'trial', encouraging you to use it - Spring Boot after a year of official release in the 'assess' phase - its maturity still waiting to be confirmed - on the contrary - JSF in a hold phase … Continue reading The new Technology Radar is here!

HTML 5 Offline Web Application with Spring Boot

Think of users using your web application from mobile phones when their internet connection breaks down. Native mobile app would still work and cache all user actions, synchronizing them afterwards. HTML5 web apps can also work offline. Basically it is done by listing the resource files (html, js, images) that browser should cache immadietly and use the … Continue reading HTML 5 Offline Web Application with Spring Boot

Spring Boot: SSL/HTTPS for embedded Tomcat

If your Spring Boot app is running on embedded Tomcat, you need to use the TomcatConnectionCustomizer class to set up the HTTPS in Tomcat. Get the source code Source Code for this tutorial is available on my github under the SpringBootHttps tag: https://github.com/yacekmm/looksok/tree/SpringBootHttps 1. Prepare keystore and certificate First you need to have your certificate. If you … Continue reading Spring Boot: SSL/HTTPS for embedded Tomcat