I use querydsl-maven-pluginto export Q paths from an Oracle 11g database. The problem I am facing is that the Oracle fields are NUMBERdisplayed instead of NumberPath<java.math.BigDecimal>insteadNumberPath<Long>
Is there a way that I can give the command querydsl-maven-pluginto translate BigDecimalin Longduring code generation?
The approach I'm using right now is to use the plugin to generate the code, and then translate the types manually.
Any clues would be appreciated.
source
share