Postgresql – Jooq custom delete method throw ERROR: cannot execute DELETE in a read-only transaction
I use Springboot3 and Jooq to create my project and define a custom delete method deleteByUsername follow jooq delete guide @Repository public class UserRepository extends UserDao { @Autowired public UserRepository(Configuration configuration) { super(configuration); } /* --- some query method can…