0

How to do plain jdbc row mapping in Micronaut ? (kick out ORM-Hibernate)

  • a way to do parameterized, prepared statement.
  • a custom mapping mechanism.

I want to avoid Hibernate/ORM.

Espresso
  • 5,378
  • 4
  • 35
  • 66

1 Answers1

1

Since you tagged the question with micronaut-data I assume that is what you are using. Micronaut Data doesn't have to have anything to do with Hibernate. You can use straight JDBC repositories. See https://micronaut-projects.github.io/micronaut-data/1.0.1/guide/#sql.

Jeff Scott Brown
  • 26,804
  • 2
  • 30
  • 47