SimpleFlatMapper icon indicating copy to clipboard operation
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

Results 129 SimpleFlatMapper issues
Sort by recently updated
recently updated
newest added

Hi, we have a mapper defined like this: `JdbcMapperFactory.newInstance() .useAsm(false) .addKeys(ID, alias(OTHER_ID)) .unorderedJoin() .assumeInjectionModifiesValues(true) .newMapper(Some.class))` Although unorderedJoin is set, it does not work. When I debugged it turns out that...

Hi, Is there a way to tell SimpleFlatMapper to use a TreeSet instead of a HashSet when the mapped field is of type Set ?

If use the ignorePropertyNotFound() method, an exception will occur. ```java final ConnectedCrud crud = JdbcMapperFactory.newInstance() .ignorePropertyNotFound() .crud(Demo.class, Long.class) .table(pg, "demo"); ``` ``` java.lang.IllegalArgumentException: No constructor available for class java.lang.Long at...

Is there a way to force the mapper to use setters to populate a POJO? When my POJO has overloaded constructors the mappers expects an exact constructor matching the arguments...

We are an Enterprise that imports all Maven libraries/dependencies into our internal artifact repository (language/platform agnostic). The importing mechanism is automatic and does plenty of sanity checks before doing so....

I am using version 8.2.3, and I cannot add a discriminator column to JdbcTemplateMapperFactory. Here is my code using JdbcTemplateMapperFactory: ``` return this.jdbcTemplate.query(this.sqlQueryManager.getMediaItemsQuery(), new MapSqlParameterSource("accountId", accountId), JdbcTemplateMapperFactory.newInstance() .addKeys("mediaItemId") .discriminator(MediaItem.class) .onColumn("uploadType",...

Having this table in database: ```sql create table test( created_at timestamp with time zone default now() ); ``` And this JOOQ's generated field for table's column: ```java public final TableField...

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 [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.1. Release notes Sourced from junit's releases. JUnit 4.13.1 Please refer to the release notes for details. JUnit 4.13 Please refer to the release notes...

dependencies