-
Trivadis Developer Blog
This is the publication playground for these guys from OIO Trivadis, the Trivadis Group`s Java experts.
Tag cloud
Agile Methods and development Atlassian Tools Build, config and deploy Did you know? Eclipse Universe Groovy and Grails Java and Quality Java Basics Java EE Java modularization Java Persistence Java Runtimes - VM, Appserver & Cloud Java Web Frameworks MDSD Open Source BI Other languages for the Java VM Politics Security SOA / Webservices Spring Universe Web as a Platform XML Universe
Monthly Archives: May 2016
Liquibase: Best Practices
Liquibase ist ein System, um Datenbankschema-Änderungen festzuhalten und per SCM nachvollziehen zu können. Diese Änderungen können in XML, YAML, JSON oder SQL geschrieben werden und enthalten datenbankunabhängige Anweisungen. Liquibase kümmert sich dann darum, die Konvertierung für die jeweilige Datenbank zu … Continue reading
Posted in Did you know?, Java Persistence
Tagged best practices, Datenbank, liquibase, SQL
1 Comment
Java 8 Lambdas unter der Lupe
Mit Java 8 kam das wohl größte Update für Java SE. Dabei gab es sowohl Neuerungen in der Sprache (Lambdas, Default-Methoden, …), in der Klassen-Bibliothek (Streams), als auch in der JVM. Die Lambda-Ausdrücke sind eine Art Grundlage für viele der … Continue reading
Posted in Java and Quality, Java Basics
Tagged functional interface, java 8, lambda, method reference, stream api
Leave a comment
Android Instant Apps vs. Progressive Web Apps
Two days ago, Google announced so called Android Instant Apps at the Google I/O 2016. Android Instant Apps are Android apps which could replace mobile websites. They open by clicking a URL and do not need to be installed. But … Continue reading
Posted in Web as a Platform
Tagged Android, Google, google io, instant app, progressive web app
Leave a comment
Gradle Script Kotlin
Eine neue Zusammenarbeit ist zwischen den Entwicklern des Build Tools Gradle und der Programmiersprache Kotlin entstanden. Der Gründer von Gradle Inc., Hans Dockter, hat sich mit dem Kotlin-Team von JetBrains zusammengesetzt und versucht herauszufinden, wie Gradle von Kotlin (und umgekehrt) … Continue reading
i18n for GWT SimplePager
Nowadays, internationalization (i18n) is virtually indispensable in most applications. Therefore, GWT also provides a powerful and commonly used i18n mechanism to meet this requirement. Unfortunately, even in the GWT source code itself, there are components which still contain hard-coded text. … Continue reading
Posted in Java and Quality
Tagged GUI, GWT, i18n, Internationalization, pager, pagination, Usability
Leave a comment
Export eines Private Keys aus einem Java Keystore?
Ausgangssituation ist eine .jks-Datei, welche unser Zertifikat und den dazugehörigen Private Key enthält. Daraus sollen .cer und .key-Dateien erstellt werden. Das Zertifikat zu exportieren, ist dabei relativ einfach. (Vorausgesetzt, man kennt noch das Passwort): $ keytool -export -keystore meinKeystore.jks -alias … Continue reading
NewSQL: Was ist neu an der NoSQL Nachfolge?
NoSQL-Datenbanken haben uns gezeigt, wie skalierbare performante Datenbanken aufgebaut werden können. Leider oft auf Kosten von Transaktionssicherheit, relationaler Joins und anderen Features, welche relationale Datenbanken über die Jahre berechtigterweise zu einem in der Welt der Business-Anwendungen nicht mehr wegzudenkenden Grundpfeiler … Continue reading