1. 프레임워크 Maven 배포 및 설치
프레임워크 소스 코드를 다운로드한 후 프로젝트 루트 경로에서 mvn clean install을 실행하여 로컬 Maven 라이브러리에 설치합니다. Nexus 개인 서버를 공유하고 사용해야 하는 경우 루트 경로 pom에 distributionManagement 구성을 추가하세요. 모든 구성 파일 설정에 해당 계정 구성이 있습니다. cn.jboost.springboot:tkmapper-spring-boot-starter(연결 풀 없음)를 도입하세요.
cn.jboost.springboot:druid-spring-boot-starter 직접 도입(druid 연결 풀 지원)
nexus-releases http://ip:port/repository/maven-releases/ nexus-snapshots http://ip:port/repository/maven-snapshots/
3. data source
druid 연결 풀을 사용하는 경우 application.yml 구성 파일에 다음 데이터 소스 구성을 추가하세요(권장)
nexus-snapshots admin xxx nexus-releases admin xxx
#第一种方式#第二种方式 cn.jboost.springboot tkmapper-spring-boot-starter 1.2-SNAPSHOT #第三种方式 cn.jboost.springboot druid-spring-boot-starter 1.2-SNAPSHOT cn.jboost.springboot spring-boot-parent 1.2-SNAPSHOT
4 해당 도메인, 매퍼, 서비스 및 컨트롤러 레이어 개체를 정의합니다
데모를 예로 들어 보겠습니다(데모 데이터베이스 스크립트는 resources/schema.sql 참조). 도메인은 사용자 클래스
spring: datasource: druid: driver-class-name: com.mysql.jdbc.Driver url: jdbc:mysql://localhost:3306/test?autoReconnect=true&useUnicode=true&characterEncoding=utf-8 username: root password: # 自定义配置 initialSize: 2 # 初始化大小 minIdle: 1 # 最小连接 maxActive: 5 # 最大连接 druidServletSettings: allow: 127.0.0.1 deny: loginUsername: admin loginPassword: Passw0rd resetEnable: true druidFilterSettings: exclusions: '*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*' maxWait: 60000 # 配置获取连接等待超时的时间 timeBetweenEvictionRunsMillis: 60000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒 minEvictableIdleTimeMillis: 300000 # 配置一个连接在池中最小生存的时间,单位是毫秒 validationQuery: SELECT 'x' testWhileIdle: true testOnBorrow: false testOnReturn: false poolPreparedStatements: true # 打开PSCache,并且指定每个连接上PSCache的大小 maxPoolPreparedStatementPerConnectionSize: 20 filters: stat #,wall(添加wall代码里不能直接拼接sql,druid有sql注入校验) # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙 connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000 # 通过connectProperties属性来打开mergeSql功能;慢SQL记录 useGlobalDataSourceStat: true # 合并多个DruidDataSource的监控数据
기본적으로 프레임워크는 List와 같은 복합 유형 속성을 매핑합니다. mysql의 json 유형 또는 postgresql 유형의 jsonb에 매핑합니다. 특정 속성에 매핑이 필요하지 않은 경우 열거 유형에 @Transient 주석을 추가할 수 있으며 jdbcType을 지정하려면 @ColumnType을 추가해야 합니다.
dao 레이어는 UserMapper를 정의하고,
spring: datasource: url: jdbc:mysql://localhost:3306/test?autoReconnect=true&useUnicode=true&characterEncoding=utf-8 username: root password: driver-class-name: com.mysql.jdbc.Driver
@Table(name = "user") @Getter @Setter @ToString public class User extends AutoIncrementKeyBaseDomain{ private String name; @ColumnType(jdbcType = JdbcType.CHAR) private Gender gender; private List favor; private Map address; public enum Gender{ M, F } }
컨트롤러 계층은 BaseController의 일반 인터페이스를 상속하는 UserController를 정의합니다. 자세한 내용은 소스코드 참조)
@Repository public interface UserMapper extends BaseMapper{ }
위와 같이 각 레이어에 해당하는 인터페이스나 클래스를 정의하고 기본 인터페이스나 클래스를 상속받기만 하면 사용자의 기본 추가, 삭제, 수정, 조회 기능을 한 줄도 작성하지 않고 완료할 수 있습니다. 특정 구현 코드.
5. 테스트 및 실행 이 예제에서는 SpringbootTkmapperApplicationTests 클래스
를 참조하여 기본 클래스에서 직접 실행한 다음 http://localhost:8080을 엽니다. 브라우저에서 /user는 단위 테스트에서 생성된 사용자를 나열할 수 있습니다(다른 인터페이스에 대해서는 BaseController 구현을 참조하세요)
위 내용은 springboot에 Mapper를 통합하여 단일 테이블 작업을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!