crumbpicker

Results 9 issues of crumbpicker

The serialization of case classes includes only fields declared in the primary constructor However it is sometimes interesting to add some extra fields (that could be used by the JsonCreator...

The scala builtin @transient annotation seems to be ignored. @JsonIgnore does the job but the standard @transient annotation should produce a similar result isn't it ?

Jackson allows to use custom naming strategies. It implements the CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES strategy as a builtin (http://jackson.codehaus.org/1.9.9/javadoc/org/codehaus/jackson/map/PropertyNamingStrategy.LowerCaseWithUnderscoresStrategy.html). Is it possible to apply such custom strategies with pickling ?

enhancement

As reported here (http://taka7646.hatenablog.com/entry/2013/02/17/005658) case classes need an explicit constructor in order to remove the exception "Can't find plain constructor or companion object". Is this really needed f? Maybe for...

0.6.x

The list of provided repositories is obsolete. This new one worked fine for me. guiceyfruit.repository Google GuiceFruit Repository http://guiceyfruit.googlecode.com/svn/repo/releases/ akka.repository Akka Maven Repository http://repo.akka.io/releases/ jboss-public-repository-group JBoss Public Maven Repository Group...

It seems impossible with the current API to make a select query without creating transaction. It is a real issue with a db driver like SQLite which locks the database...

JDBC provides a feature which allows to make several INSERTs once using the addBatch/executeBatch mechanism. However the current implementation of the executeBatch method seems to only perform the preparedStatement feature....

I can't make the HSQLDBSQLFormatter working on my transaction. I have setup a DatabaseConfig with this SQLFormatter but it doesn't work for me. It seems the default formatter is always...

The SQLFormatterImplicits doesn't provide a support for values encapsulated in an Option. Here is the workaround I'm currently using : ``` scala import net.noerd.prequel.Nullable import net.noerd.prequel.IntFormattable import net.noerd.prequel.DoubleFormattable import net.noerd.prequel.SQLFormatter...