springboot整合html,企業SpringBoot 教程(五)springboot整合beatlsql

 2023-11-01 阅读 36 评论 0

摘要:BeetSql是一個全功能DAO工具, 同時具有Hibernate 優點 & Mybatis優點功能,適用于承認以SQL為中心,同時又需求工具能自動能生成大量常用的SQL的應用。完整項目的源碼來源 技術支持一七九一七四三三八零 beatlsql 優點 開發效率 無需注解,自動使

BeetSql是一個全功能DAO工具, 同時具有Hibernate 優點 & Mybatis優點功能,適用于承認以SQL為中心,同時又需求工具能自動能生成大量常用的SQL的應用。完整項目的源碼來源 技術支持一七九一七四三三八零

beatlsql 優點

開發效率

無需注解,自動使用大量內置SQL,輕易完成增刪改查功能,節省50%的開發工作量

數據模型支持Pojo,也支持Map/List這種快速模型,也支持混合模型

springboot整合html?SQL 模板基于Beetl實現,更容易寫和調試,以及擴展

維護性

SQL 以更簡潔的方式,Markdown方式集中管理,同時方便程序開發和數據庫SQL調試。

可以自動將sql文件映射為dao接口類

靈活直觀的支持支持一對一,一對多,多對多關系映射而不引入復雜的OR Mapping概念和技術。

具備Interceptor功能,可以調試,性能診斷SQL,以及擴展其他功能

springboot web項目、其他

內置支持主從數據庫支持的開源工具

支持跨數據庫平臺,開發者所需工作減少到最小,目前跨數據庫支持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>
復制代碼

這幾個依賴都是必須的。

整合階段

springboot整合前端,由于springboot沒有對 beatlsql的快速啟動裝配,所以需要我自己導入相關的bean,包括數據源,包掃描,事物管理器等。

在application加入以下代碼:

@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")@Primarypublic 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:

restart.include.beetl=/beetl-2.3.2.jar
restart.include.beetlsql=/beetlsql-2.3.1.jar
復制代碼

在templates下加一個index.btl文件。

加入jar和配置beatlsql的這些bean,以及resources這些配置之后,springboot就能夠訪問到數據庫類。

舉個restful的例子

Spring boot。初始化數據庫的表

# 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');
bean
public class Account {private int id ;private String name ;private double money;getter...setter...} 
復制代碼

數據訪問dao層

public interface AccountDao extends BaseMapper<Account> {@SqlStatement(params = "name")Account selectAccountByName(String name);
}
復制代碼

接口繼承BaseMapper,就能獲取單表查詢的一些性質,當你需要自定義sql的時候,只需要在resouses/sql/account.md文件下書寫文件:

selectAccountByName
===
*根據name獲accountselect * from account where name= #name#
復制代碼

其中“=== ”上面是唯一標識,對應于接口的方法名,“* ”后面是注釋,在下面就是自定義的sql語句,具體的見官方文檔。

轉載于:https://juejin.im/post/5c7dd96be51d4539171240ab

版权声明:本站所有资料均为网友推荐收集整理而来,仅供学习和研究交流使用。

原文链接:https://hbdhgg.com/2/166032.html

发表评论:

本站为非赢利网站,部分文章来源或改编自互联网及其他公众平台,主要目的在于分享信息,版权归原作者所有,内容仅供读者参考,如有侵权请联系我们删除!

Copyright © 2022 匯編語言學習筆記 Inc. 保留所有权利。

底部版权信息