SimpleFlatMapper
SimpleFlatMapper copied to clipboard
Fast and Easy mapping from database and csv to POJO. A java micro ORM, lightweight alternative to iBatis and Hibernate. Fast Csv Parser and Csv Mapper
I have a project which works fine with kotlin/jooq/sfm with java15, but when upgrading to java16 it fails in InjectConstructorBiInstantiator as it attempts to set null values, although the source...
``` java val record = dsl.newRecord(table, pojo); // record is id=123 and other 8 fileds val fields = table.fields(); val values = record.intoArray() // but values is Object[1]{123} // only...
Snyk has created this PR to fix one or more vulnerable packages in the `maven` dependencies of this project. #### Changes included in this PR - Changes to the following...
Bumps commons-io from 2.5 to 2.7. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
Bumps [guava](https://github.com/google/guava) from 27.1-android to 29.0-android. Release notes Sourced from guava's releases. 29.0 Maven <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>29.0-jre</version> <!-- or, for Android: --> <version>29.0-android</version> </dependency> Javadoc 29.0-jre 29.0-android JDiff 29.0-jre...
Hi, first things first: Thank you for creating such a wonderful piece of software :) I am having trouble when mapping columns that are nullable to a Map. Let's take...
I am using Sql2o 1.6.0 with sql2o-postgres:1.6.0 with sfm-sql2o-jre9:8.2.3. I have two POJOs, they are: ``` public class Post { @Key private String id; // This is generated from application...
Hi can someone help me out? I am facing an issue in the map property matching nested case. ##### Mapper object (in Kotlin) ``` class Project { var name: String?...
Hi, I'm using SFM v8.2.3 with Spring JDBC and JDK 11, and I've started to see these "Illegal reflective access" warnings. Any recommendations? I believe this SFM version is the...
I'm using SFM v8.2.3 with Spring JDBC and Java 15 (hasn't tested with other JDK), for the first query I get this error message (even though everything works fine include...