summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Kai Moritz [Thu, 7 Jul 2016 14:54:56 +0000 (16:54 +0200)]
Projekt-Seite erstellt: "Mark Invalid"-Bug korrigiert
Das maven-resource-plugin benötigt eine spezielle Version des
maven-filtering-plugin, um stets korrekt zu funktionieren. Sonst kommt es
zu undeterministischen Ausfällen, bei denen das Kommandoe "mvn site" mit
"Mark Invalid" scheitert.
Kai Moritz [Tue, 5 Jul 2016 14:33:38 +0000 (16:33 +0200)]
Projekt-Seite erstellt: Velocity-Template - Erster Anlauf (unvollständig)
Kai Moritz [Thu, 23 Jun 2016 08:14:44 +0000 (10:14 +0200)]
Implemented (& tested) Spring-Boot-Autoconfiguration for SimpleMapperServcie
Kai Moritz [Thu, 23 Jun 2016 08:14:01 +0000 (10:14 +0200)]
Refined logging-statements of SimpleMapperTest
Kai Moritz [Thu, 23 Jun 2016 07:04:55 +0000 (09:04 +0200)]
Added Spring-Autowireing-Annotations to SimpleMapperService
Kai Moritz [Wed, 22 Jun 2016 18:16:26 +0000 (20:16 +0200)]
Implemented tests for the handling of an object
Kai Moritz [Wed, 22 Jun 2016 13:53:07 +0000 (15:53 +0200)]
Implemented tests for the handling of an array
Kai Moritz [Wed, 22 Jun 2016 09:46:19 +0000 (11:46 +0200)]
Implemented tests for the handling of empty objects
Kai Moritz [Wed, 22 Jun 2016 09:35:57 +0000 (11:35 +0200)]
Implemented tests for the handling of empty arrays
Kai Moritz [Wed, 22 Jun 2016 08:54:13 +0000 (10:54 +0200)]
Unified handling of empty input: return always null
Kai Moritz [Wed, 22 Jun 2016 08:40:40 +0000 (10:40 +0200)]
Cleared some "Possible Null-Pointer Dereferencing"-warnings
Kai Moritz [Wed, 22 Jun 2016 08:40:15 +0000 (10:40 +0200)]
Shortend some annonymous-class-expressions by using lambda-expressions
Kai Moritz [Wed, 22 Jun 2016 08:34:46 +0000 (10:34 +0200)]
Moved all non-static methods in a separate class SimpleMapperService
The methods in SimpleMapper can be used static as they are, if the input is
presented in form of an instance of JsonParser.
An instance of SimpleMapperService can be configured, to use convenient
methods that take the input in several forms. The SimpleMapperService has
to be configured with an instance of JsonFactory, that is used internally,
to construct the JsonParser from the given input.
Kai Moritz [Wed, 22 Jun 2016 08:34:11 +0000 (10:34 +0200)]
Implement test-cases to test the handling of empty input
Kai Moritz [Mon, 13 Jun 2016 12:52:51 +0000 (14:52 +0200)]
Initial implementation of SimpleMapper