BeetSql是一個全功能DAO工具, 同時具備Hibernate 優勢 & Mybatis優勢功能,適用於認可以SQL爲中心,同時又需求工具能自動能生成大量經常使用的SQL的應用。html
開發效率 無需註解,自動使用大量內置SQL,輕易完成增刪改查功能,節省50%的開發工做量 數據模型支持Pojo,也支持Map/List這種快速模型,也支持混合模型 SQL 模板基於Beetl實現,更容易寫和調試,以及擴展 維護性 SQL 以更簡潔的方式,Markdown方式集中管理,同時方便程序開發和數據庫SQL調試。 能夠自動將sql文件映射爲dao接口類 靈活直觀的支持支持一對一,一對多,多對多關係映射而不引入複雜的OR Mapping概念和技術。 具有Interceptor功能,能夠調試,性能診斷SQL,以及擴展其餘功能 其餘 內置支持主從數據庫支持的開源工具 支持跨數據庫平臺,開發者所需工做減小到最小,目前跨數據庫支持mysql,postgres,oracle,sqlserver,h2,sqllite,DB2.
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.ibeetl</groupId> <artifactId>beetl</artifactId> <version>2.3.2</version> </dependency> <dependency> <groupId>com.ibeetl</groupId> <artifactId>beetlsql</artifactId> <version>2.3.1</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.0.5</version> </dependency>
這幾個依賴都是必須的。java
因爲springboot沒有對 beatlsql的快速啓動裝配,因此須要我本身導入相關的bean,包括數據源,包掃描,事物管理器等。mysql
在application加入如下代碼:git
@Bean(initMethod = "init", name = "beetlConfig") public BeetlGroupUtilConfiguration getBeetlGroupUtilConfiguration() { BeetlGroupUtilConfiguration beetlGroupUtilConfiguration = new BeetlGroupUtilConfiguration(); ResourcePatternResolver patternResolver = ResourcePatternUtils.getResourcePatternResolver(new DefaultResourceLoader()); try { // WebAppResourceLoader 配置root路徑是關鍵 WebAppResourceLoader webAppResourceLoader = new WebAppResourceLoader(patternResolver.getResource("classpath:/templates").getFile().getPath()); beetlGroupUtilConfiguration.setResourceLoader(webAppResourceLoader); } catch (IOException e) { e.printStackTrace(); } //讀取配置文件信息 return beetlGroupUtilConfiguration; } @Bean(name = "beetlViewResolver") public BeetlSpringViewResolver getBeetlSpringViewResolver(@Qualifier("beetlConfig") BeetlGroupUtilConfiguration beetlGroupUtilConfiguration) { BeetlSpringViewResolver beetlSpringViewResolver = new BeetlSpringViewResolver(); beetlSpringViewResolver.setContentType("text/html;charset=UTF-8"); beetlSpringViewResolver.setOrder(0); beetlSpringViewResolver.setConfig(beetlGroupUtilConfiguration); return beetlSpringViewResolver; } //配置包掃描 @Bean(name = "beetlSqlScannerConfigurer") public BeetlSqlScannerConfigurer getBeetlSqlScannerConfigurer() { BeetlSqlScannerConfigurer conf = new BeetlSqlScannerConfigurer(); conf.setBasePackage("com.forezp.dao"); conf.setDaoSuffix("Dao"); conf.setSqlManagerFactoryBeanName("sqlManagerFactoryBean"); return conf; } @Bean(name = "sqlManagerFactoryBean") @Primary public SqlManagerFactoryBean getSqlManagerFactoryBean(@Qualifier("datasource") DataSource datasource) { SqlManagerFactoryBean factory = new SqlManagerFactoryBean(); BeetlSqlDataSource source = new BeetlSqlDataSource(); source.setMasterSource(datasource); factory.setCs(source); factory.setDbStyle(new MySqlStyle()); factory.setInterceptors(new Interceptor[]{new DebugInterceptor()}); factory.setNc(new UnderlinedNameConversion());//開啓駝峯 factory.setSqlLoader(new ClasspathLoader("/sql"));//sql文件路徑 return factory; } //配置數據庫 @Bean(name = "datasource") public DataSource getDataSource() { return DataSourceBuilder.create().url("jdbc:mysql://127.0.0.1:3306/test").username("root").password("123456").build(); } //開啓事務 @Bean(name = "txManager") public DataSourceTransactionManager getDataSourceTransactionManager(@Qualifier("datasource") DataSource datasource) { DataSourceTransactionManager dsm = new DataSourceTransactionManager(); dsm.setDataSource(datasource); return dsm; }
在resouces包下,加META_INF文件夾,文件夾中加入spring-devtools.properties:github
restart.include.beetl=/beetl-2.3.2.jar restart.include.beetlsql=/beetlsql-2.3.1.jar
在templates下加一個index.btl文件。web
加入jar和配置beatlsql的這些bean,以及resources這些配置以後,springboot就可以訪問到數據庫類。
舉個restful的栗子spring
# DROP TABLE `account` IF EXISTS CREATE TABLE `account` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(20) NOT NULL, `money` double DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; INSERT INTO `account` VALUES ('1', 'aaa', '1000'); INSERT INTO `account` VALUES ('2', 'bbb', '1000'); INSERT INTO `account` VALUES ('3', 'ccc', '1000');
public class Account { private int id ; private String name ; private double money; getter... setter... }
public interface AccountDao extends BaseMapper<Account> { @SqlStatement(params = "name") Account selectAccountByName(String name); }
接口繼承BaseMapper,就能獲取單表查詢的一些性質,當你須要自定義sql的時候,只須要在resouses/sql/account.md文件下書寫文件:sql
selectAccountByName === *根據name獲account select * from account where name= #name#
其中「=== 」上面是惟一標識,對應於接口的方法名,「* 」後面是註釋,在下面就是自定義的sql語句,具體的見官方文檔。數據庫
這裏省略了service層,實際開發補上。springboot
@RestController @RequestMapping("/account") public class AccountController { @Autowired AccountDao accountDao; @RequestMapping(value = "/list",method = RequestMethod.GET) public List<Account> getAccounts(){ return accountDao.all(); } @RequestMapping(value = "/{id}",method = RequestMethod.GET) public Account getAccountById(@PathVariable("id") int id){ return accountDao.unique(id); } @RequestMapping(value = "",method = RequestMethod.GET) public Account getAccountById(@RequestParam("name") String name){ return accountDao.selectAccountByName(name); } @RequestMapping(value = "/{id}",method = RequestMethod.PUT) public String updateAccount(@PathVariable("id")int id , @RequestParam(value = "name",required = true)String name, @RequestParam(value = "money" ,required = true)double money){ Account account=new Account(); account.setMoney(money); account.setName(name); account.setId(id); int t=accountDao.updateById(account); if(t==1){ return account.toString(); }else { return "fail"; } } @RequestMapping(value = "",method = RequestMethod.POST) public String postAccount( @RequestParam(value = "name")String name, @RequestParam(value = "money" )double money) { Account account = new Account(); account.setMoney(money); account.setName(name); KeyHolder t = accountDao.insertReturnKey(account); if (t.getInt() > 0) { return account.toString(); } else { return "fail"; } } }
經過postman 測試,代碼已所有經過。
我的使用感覺,使用bealsql作了一些項目的試驗,可是沒有真正用於真正的生產環境,用起來很是的爽。可是springboot沒有提供自動裝配的直接支持,須要本身註解bean。另外使用這個orm的人不太多,有木有坑不知道,在我使用的過程當中沒有遇到什麼問題。另外它的中文文檔比較友好。
源碼下載:https://github.com/forezp/Spr...