GithubHelp home page GithubHelp logo

user-center-backend's Introduction

鱼皮用户中心的后端部分

项目简介

鱼皮用户中心的后端部分是一个基于Spring Boot的练手项目,旨在实现用户中心功能,包括用户管理的CRUD操作。

运行项目

克隆项目

git clone https://github.com/poboll/user-center-backend.git

建数据库表

请执行以下 SQL 文件以创建数据库表结构:sql文件

修改配置信息

在运行项目之前,请根据以下步骤修改 application.yml 配置文件中的相关信息:

spring:
    application:
        name: user-center-backend
    datasource:
        driver-class-name: com.mysql.cj.jdbc.Driver
        url: jdbc:mysql://localhost:3306/user_center #数据库url
        username: <你的数据库用户名>
        password: <你的数据库密码>
    session:
        timeout: 86400
server:
    port: <运行端口>
    servlet:
        context-path: /api
mybatis-plus:
    mapper-locations: classpath*:mapper/*Mapper.xml
    configuration:
        map-underscore-to-camel-case: false
    global-config:
        db-config:
            logic-delete-field: isDelete
            logic-delete-value: 1
            logic-not-delete-value: 0

在IDEA中运行

使用Postman测试接口

你可以使用以下 Postman JSON 文件来测试接口:json文件

user-center-backend's People

Contributors

poboll 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.