Giter VIP home page Giter VIP logo

ningbo-cultural's Introduction

WindFall

license JDK 1.8 Spring-Boot 2.2.2.RELEASE MyBatis 3.5.2 MyBatis-Plus 3.2.0

致力于轻量级开发、代码实践,同时收获你想要的东西☺️

技术栈

  • SpringBoot 2.0
  • 数据库: H2
  • 数据库连接池: HikariCP (SpringBoot 2.0 默认支持)
  • 持久层框架: MyBatis
  • 快速开发框架:
    • lombok
    • MyBatis-Plus

创建新项目流程

  1. 确保本分支上没有未提交的代码
  2. 切换到master分支 git checkout master
  3. 拉取最新代码git pull
  4. 基于master分支创建新分支(如dev)git checkout -b order-book
    • 命名规则:小写,order- + 项目名,如图书管理系统,分支名应该是order-book
  5. 将本地order-book分支提交到远程仓库git push origin order-book:order-book
    1. 冒号前的order-book:本地分支名
    2. 冒号后的order-book:将要创建的远程分支名
  6. 创建完新项目后需要修改的内容:
    1. pom.xml文件中的artifactId节点修改为当前项目名,如Book
    2. org.planeswalker.WindfallApplication类的名字修改为当前项目名,如BookApplication
    3. application.properties文件中的spring.application.name修改为当前项目名,如Book

分支仓库列表

基础架构及接口明细

统一返回格式

{
   "data": "01bd6808-7cfd-4037-83ba-2e745600eadd",
   "message": "成功",
   "success": true
}

项目目录结构

├── java
│   └── org
│       └── planeswalker
│           ├── annotation      注解
│           ├── base            公用基础类
│           ├── config          配置类
│           ├── controller      控制层
│           ├── exception       异常类及全局异常控制器
│           ├── mapper          dao 层及 mapper 文件
│           ├── pojo            自定义对象包
│           │   ├── dto             数据传输类
│           │   └── entity          数据库实体类
│           ├── service         服务层
│           └── utils           工具类
└── resources                   资源文件

ningbo-cultural's People

Contributors

hellojinsilei avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.