bdf3 est un cadre de développement progressif au niveau de l'entreprise basé sur la composantisation Spring Boot. Fournit une série de fonctions de modules communes au niveau de l'entreprise. En utilisant le framework bdf3 dans les projets commerciaux, nous pouvons nous concentrer directement sur le développement de modules de fonctions métier.
Bienvenue à tous pour nous contacter : échanges techniques, coopération commerciale, construction conjointe d'open source, etc.
Mode non multi-tenant :
Mode multi-locataire :
Parmi eux, l'identifiant de l'entreprise est master et le nom d'utilisateur/mot de passe est admin/123456.
Veuillez utiliser votre téléphone portable pour scanner le code QR du groupe QQ (609822297) à la fin de cet article et rejoindre le groupe pour obtenir les documents de développement.
bdf3 est implémenté sur la base du mécanisme de configuration automatique de Spring Boot. Il permet une configuration nulle, peut être utilisé immédiatement et n'entraîne aucun coût d'apprentissage supplémentaire. bdf3 fournit également une série de modules Starter de type pom, similaires aux modules Starter. fourni par Spring Boot. Le module Starter simplifie la gestion des dépendances du module bdf3 et rend les dépendances du projet plus simples et plus faciles à maintenir.
Créez un projet Maven standard avec le nom bdf3 -sample, le type d'empaquetage du projet est jar et le projet parent du projet pointe vers bdf3 -starter-parent. Le fichier pom généré final est le suivant :
< project xmlns = " http://maven.apache.org/POM/4.0.0 " xmlns : xsi = " http://www.w3.org/2001/XMLSchema-instance " xsi : schemaLocation = " http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd " >
< modelVersion >4.0.0</ modelVersion >
<!-- 继承的 bdf3 提供的依赖管理的父项目 -->
< parent >
< groupId >com.bstek. bdf3 </ groupId >
< artifactId > bdf3 -starter-parent</ artifactId >
< version >1.1.0-SNAPSHOT</ version >
</ parent >
< artifactId > bdf3 -sample</ artifactId >
< dependencies >
<!-- 添加 bdf3 提供的预定义依赖 Starter, bdf3 还提供了其他的 Starter -->
< dependency >
< groupId >com.bstek. bdf3 </ groupId >
< artifactId > bdf3 -starter</ artifactId >
</ dependency >
<!-- 开发测试工具 -->
< dependency >
< groupId >org.springframework.boot</ groupId >
< artifactId >spring-boot-devtools</ artifactId >
< scope >provided</ scope >
</ dependency >
<!-- 数据库驱动,正式场景改为 mysql、oracle 等等数据库驱动 -->
< dependency >
< groupId >com.h2database</ groupId >
< artifactId >h2</ artifactId >
</ dependency >
</ dependencies >
<!-- bdf3 提供的模块存放的 maven 私服仓库 -->
< repositories >
< repository >
< id >bsdn-maven-repository</ id >
< url >http://nexus.bsdn.org/content/groups/public/</ url >
</ repository >
</ repositories >
</ project >
package com . bstek . bdf3 . sample ;
import org . springframework . boot . SpringApplication ;
import org . springframework . boot . autoconfigure . SpringBootApplication ;
import org . springframework . cache . annotation . EnableCaching ;
/**
* @author Kevin Yang (mailto:[email protected])
* @since 2016年12月10日
*/
@ SpringBootApplication // Spring Boot 启动类注解
@ EnableCaching // 开启缓存功能注解
public class SampleApplication {
public static void main ( String [] args ) throws Exception {
SpringApplication . run ( SampleApplication . class , args );
}
}
Grâce aux deux étapes ci-dessus, un projet de framework bdf3 de base est construit. Exécutez directement l'exemple de téléchargement de la classe de démarrage du projet (exécutez la méthode statique principale).
Dans la configuration de Spring, configurez comme suit :
# 文件 application.properties
# 服务器端口设置
server.port = 8080
# 项目上下文路由
server.context-path=/bdf
# 是否打印sql语句
spring.jpa.showSql=true
#hibernate 反向创建表设置,update启动时更新表结构,create 启动时重新创建表结构,none 启动时不检查
spring.jpa.hibernate.ddl-auto=update
# Spring Boot 热部署设置,添加以下文件匹配规则,改动不重启。
spring.devtools.restart.additional-exclude=com/**
#数据库脚本的编码设置为 UTF-8
spring.datasource.sql-script-encoding=UTF-8
# 数据源配置,pom 中需要引入对应的数据库 jdbc 依赖,以下使用 mysql 数据库为例
spring.datasource.continue-on-error=true
spring.datasource.url=jdbc:mysql://localhost:3306/ bdf3
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
# 如果数据库为非嵌入式数据库,这个属性第一次启动的时候一定要设置为ALWAYS,用于初始化数据,初始化好后,可以关闭,也可以不关闭,有自己决定
spring.datasource.initialization-mode=ALWAYS
Tutoriel de documentation Spring Boot