Tatu Saloranta
Tatu Saloranta
Although namespace declarations will be automatically written as needed, sometimes it'd be nice to be able to explicitly specify root element namespace binding for the "default" namespace (one with no...
With rewrite of XML module for 3.0, something is wrong with coercion if null values -- so after #354 resolved this for 2.x, there is now one unit test that...
Normally XML document like: ``` 3 ``` would be exposed as equivalent to JSON ``` { "value" : "3" } ``` since that is typically the straight-forward and suitable representation...
(for background, see #485 and #374 ) Currently XML backend does not support addition of extra "wrapping", indicated by `SerializationFeature.WRAP_ROOT_VALUE`: it does however support "unwrapping" (see `DeserializationFeature.UNWRAP_ROOT_VALUE`). It would make...
Since Woodstox supports validation via Stax2 extension (as could other Stax2 implementations), it should be theoretically possible to enable automatic validation. But how to trigger that via API is a...
(as reported by Paweł Kowol on Jackson users list) --- If a List (or other Collection) is value of a non-Collection property, like so: ```java public class Bean { public...
(from Jackson user forum by Rich M) Hi all. I am using jackson 1.7.1 and xml-databind 0.5.3, and ran into a minor issue. I have an attribute of type Object,...
Currently only some of As.xxx modes work (AS_PROPERTY); rest should also made to work.
Currently there exists global setting of 'HibernateModule.Feature.FORCE_LAZY_LOADING' which can be used to ensure that data marked to be lazily loaded is actually forced to be loaded when serializing. But there...
(related to #58) In addition to allowing module to be constructed with specific `SessionFactory`, it may be useful to allow passing of per-call factory instead. If so, this is easiest...