Skip to content
Advertisement

Tag: spring-data-jpa

More sort column in JHipster

I try to configure sort column using the rout.ts file of my entity. In the “data” tag I put defaultSort: [‘firstCol,desc’,’secondCol,asc’], but I gave an error. Then I put all in a single String defaultSort: ‘firstCol,desc,secondCol,asc’, but the secondCol is not considered the the query sent to microservice Then I put all in a single String using a char separator

Advertisement