Skip to content

Enable feature interceptors for oneRow mappings #18

Description

@slany

Mapper with definition:

   abstract List<String> toValue(List<Long> rows);
   protected void myInterceptor(Long in, String value) {}

not generate method for mapping Long -> String, because this is resolvable inline in code as

   for (Long in: inList) {
     outList.add(in==null?null:in+"");
   }

Because this is generated as inline code, myInterceptor is never used.

Metadata

Metadata

Assignees

Labels

bugSomething isn't workingenhancementNew feature or request

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions