Easycode自動化springboot的curd
隻需要輸入密碼 測試即可:
顯示成功 個人連接時遇到問題有
顯示時區問題
數據顯示不全 所有數據表都會展示到idea
中
中間 path 選擇代碼生成的位置 店傢choose
進行選擇 選擇java
包下的路徑
代碼生成後 需要做的調整
pom.xml
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.2.1</version> </dependency> <!-- 測試依賴--> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13</version> <scope>test</scope> </dependency> <!-- springboot 分頁插件 --> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.13</version> </dependency> <!-- mysql 驅動 --> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.25</version> </dependency> <!-- c3p0 數據源 --> <dependency> <groupId>com.mchange</groupId> <artifactId>c3p0</artifactId> <version>0.9.5.5</version> </dependency> <!--StringUtils--> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <!--當前這個項目被繼承之後,這個不向下傳遞--> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-commons</artifactId> <version>2.2.3.RELEASE</version> </dependency> </dependencies>
Application.yml
## 數據源配置 spring: ## 熱部署配置 devtools: restart: enabled: true # 設置重啟的目錄,添加目錄的文件需要restart additional-paths: src/main/java # 解決項目自動重新編譯後接口報404的問題 poll-interval: 3000 quiet-period: 1000 datasource: type: com.mchange.v2.c3p0.ComboPooledDataSource driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/springboot_mybatis?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=GMT%2B8 username: root password: 123456 ##視圖的配置 freemarker: template-loader-path: classpath*:/views/ charset: UTF-8 content-type: text/html cache: false suffix: .ftl ## mybatis 配置 mybatis: #映射文件的存放路徑 mapper-locations: classpath*:/mapper/*.xml type-aliases-package: com.liuyang.bean,com.liuyang.vo,com.liuyang.query configuration: ## 下劃線轉駝峰配置 map-underscore-to-camel-case: true ## pageHelper pagehelper: helper-dialect: mysql ## 顯示dao 執行sql語句 logging: level: com: xxxx: mapper: debug 在dao層加上@mapper註解
在啟動類上加上 @MapperScan(“com.liuyang.dao”)
啟動測試
添加操作
查詢
還可以修改生成的模板
默認是 mybatis
到此這篇關於Easycode自動化springboot的curd的文章就介紹到這瞭,更多相關Easycode自動化springboot的curd內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Spring Boot 整合 TKMybatis 二次簡化持久層代碼的實現
- SpringBoot環境配置知識總結
- 解決SpringBoot整合MybatisPlus分模塊管理遇到的bug
- springboot-curd基於mybatis項目搭建
- Springboot項目中內嵌sqlite數據庫的配置流程