What is _Dummy_ when Generating a Persistence Mapping by Database Schema

Answered

Hi,

 

Running the generate persistence mapping for one entity in the database, which is Mysql (Mariadb) always generate all the method with a _Dummy_ return type and return this;
Could you pleaes clarify how to create the persistence mapping by db schema?
I am using Intellij IDEA 2016.3.2

public _Dummy_ setInvrungrpId(long invrungrpId) {
        this.invrungrpId = invrungrpId;
        return this;
    }

 

Thnaks

0
1 comment

Please check Generating Persistence Mappings related help topic.

Dummy type is generated in cases when IDE does not know precise database type to map the corresponding Java type for it. 

Please invoke Synchronize action for the data source to make sure IDE introspected all database types and that the introspection has completed successfully.

0

Please sign in to leave a comment.