trungdoviet
trungdoviet
i'm using mapstruct with below dependency: ```xml org.mapstruct mapstruct 1.3.0.Final org.mapstruct mapstruct-processor 1.3.0.Final provided ``` Then i have an interface that contain basic `@Named` method: ```java public interface CommonConverter {...
Hi team i have requirement to write SQL like: ```sql Select * from table_a where col1 IN (1,2,3) OR col2 IN ("x", "y", "z") ``` How to write this one...
Hi all When i run maven to generate Rest Documentation, i got message as mentioned in title. And there is nothing happen in my project, it's no generated documentation. Message...
hi team im using mybatisplus for postgre sql and using plugins like tenantInteceptor, Audit Interceptor,... those plugin use jsql parser to parse SQL syntax. but for my query: ```sql INSERT...