在Spring Boot中執行DDL語句有多種方式,以下是其中兩種常用的方式:
示例代碼:
@Autowired
private JdbcTemplate jdbcTemplate;
public void executeDDL() {
String ddlSQL = "CREATE TABLE my_table (id INT PRIMARY KEY, name VARCHAR(100))";
jdbcTemplate.execute(ddlSQL);
}
示例代碼:
@Autowired
private SessionFactory sessionFactory;
public void executeDDL() {
SchemaExport schemaExport = new SchemaExport(sessionFactory);
schemaExport.create(true, true);
}
以上兩種方式都可以在Spring Boot中執行DDL語句,你可以根據自己的需求選擇合適的方式。