Manuel Blechschmidt

Results 32 comments of Manuel Blechschmidt

## $ sudo pip show boto Name: boto Version: 2.38.0 Location: /usr/local/lib/python2.7/dist-packages Requires: This bug is mentioned here as well: https://bugs.launchpad.net/duplicity/+bug/1407966

Hi, I have the same problem as well. A little bit more specific because I am using JAXB annotations (@XmlID an @XmlIDREF). I will try to check what the problem...

The default BeanSerializer can use a _objectIdSerializer in ``` java public final void serialize(Object bean, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonGenerationException { if (_objectIdWriter != null) { _serializeWithObjectId(bean, jgen,...

I already found the possibility to prevent loading uninitiated objects and just output the identifier: ``` java ObjectMapper objectMapper = new ObjectMapper(); Hibernate4Module hibernate4Module = new Hibernate4Module(); hibernate4Module.enable(Feature.SERIALIZE_IDENTIFIER_FOR_LAZY_NOT_LOADED_OBJECTS); objectMapper.registerModule(hibernate4Module); ```

I just realized that it is quite complex to implement this bug and I currently do not have the time. I tried to change HibernateProxySerializer to extend BeanSerializerBase instead of...

Just figured out that the lazy setting won't solve my problem. The following HibernateProxy should reproduce the problem: ``` java @Entity public class SomeJPAEntity { @Id private String id; //...

Hi, I realized that I will need a solution for that. I already have an ugly way of using BeanSerializer and some other quite complex classes. When it works I...

Hi Tatu, I am the original author of some of the test cases. They shouldn't need any xml configs. Unfortunately like I already said I currently don't have the time...

@Ardesco I reviewed the mentioned parts and added synchronized blocks. https://github.com/ManuelB/driver-binary-downloader-maven-plugin/commit/833c0ee571a6b115c02256888714fef582c3fc7c We are already running the plugin for multiple month with mvn -T1C and it works without problems. Is there...

@Ardesco thanks a lot for your description. I think I won't get the time from my employer to do the necessary work. For now I will just ignore the warning.