SpringJDBC-NamedParameterJdbcTemplate
SpringJDBC-NamedParameterJdbcTemplate
- 通常會使用NamedParameterJdbcTemplate來執行SQL指令
- 先在pom檔加入spring-boot-starter-jdbc
- 在application.properties加入連接mysql數據庫的資訊
- 這樣在運行springboot時,spring容器中springjdbc會自動創建NamedParameterJdbcTemplate的Bean
- 之後使用直接加上autowired就好
Insert