云e办(后端)——项目介绍及搭载项目

云e办

项目介绍

本项目目的是实现中小型企业的在线办公系统,云E办在线办公系统是一个用来管理日常的办公事务的一个系统,他能够管的内容有:日常的各种流程审批,新闻,通知,公告,文件信息,财务,人事,费用,资产,行政,项目,移动办公等等。它的作用就是通过软件的方式,方便管理,更加简单,更加扁平。更加高效,更加规范,能够提高整体的管理运营水平。

本项目在技术方面采用最主流的前后端分离开发模式,使用业界最流行、社区非常活跃的开源框架Spring Boot来构建后端,旨在实现云E办在线办公系统。包括职位管理、职称管理、部门管理、员工管理、工资管理、在线聊天等模块。项目中还会使用业界主流的第三方组件扩展大家的知识面和技能池。

本项目主要模块及技术点如图:

云e办(后端)——项目介绍及搭载项目_第1张图片
云e办(后端)——项目介绍及搭载项目_第2张图片

搭建项目

创建父项目

云e办(后端)——项目介绍及搭载项目_第3张图片

添加依赖

yeb的pom.xml

  • POM是项目对象模型(Project Object Model)的简称,它是Maven项目中的文件,XML格式,名称为pom.xml,作用类似ant的build.xml文件,功能则更强大。该文件用于管理:源代码、配置文件、开发者的信息和角色、问题追踪系统、组织信息、项目授权、项目的url、项目的依赖关系等等。事实上,在Maven的世界中,一个项目可以什么都没有,甚至没有代码,但是必须包含pom.xml文件。

<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0modelVersion>
     <modules>
          <module>yeb-servermodule>
          <module>yeb-generatormodule>
     modules>

     <parent>
          <groupId>org.springframework.bootgroupId>
          <artifactId>spring-boot-starter-parentartifactId>
          <version>2.3.0.RELEASEversion>
          <relativePath/>  
     parent>
     
     <groupId>com.xxxxgroupId>
     <artifactId>yebartifactId>
     <version>0.0.1-SNAPSHOTversion>
     <packaging>pompackaging>
     <name>yebname>
     <description>Demo project for Spring Bootdescription>
     
     <properties>
          <java.version>1.8java.version>
     properties>
project>

创建yeb-server子项目

添加依赖 pom.xml


<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 
https://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0modelVersion>
      
      <parent>
           <groupId>com.xxxxgroupId>
           <artifactId>yebartifactId>
           <version>0.0.1-SNAPSHOTversion>
      parent>
      
      <groupId>com.xxxxgroupId>
      <artifactId>yeb-serverartifactId>
      <version>0.0.1-SNAPSHOTversion>
      <name>yeb-servername>
      
      <dependencies>
      
           <dependency>
                <groupId>org.springframework.bootgroupId>
                <artifactId>spring-boot-starter-webartifactId>
           dependency>
      
           <dependency>
                <groupId>org.projectlombokgroupId>
                <artifactId>lombokartifactId>
                <optional>trueoptional>
           dependency>
      
           <dependency>
                <groupId>mysqlgroupId>
                <artifactId>mysql-connector-javaartifactId>
                <scope>runtimescope>
           dependency>
      
           <dependency>
                <groupId>com.baomidougroupId>
                <artifactId>mybatis-plus-boot-starterartifactId>
                <version>3.3.1.tmpversion>
           dependency>
        
           <dependency>
                <groupId>io.springfoxgroupId>
                <artifactId>springfox-swagger2artifactId>
                <version>2.7.0version>
           dependency>
      
           <dependency>
                <groupId>com.github.xiaoymingroupId>
               <artifactId>swagger-bootstrap-uiartifactId>
                <version>1.9.6version>
           dependency>
      dependencies>
project>

修改配置文件 application.yml

server:
  # 端口
 port: 8081
spring:
  # 数据源配置
 datasource:
   driver-class-name: com.mysql.cj.jdbc.Driver
   url: jdbc:mysql://localhost:3306/yeb?useUnicode=true&characterEncoding=UTF8&serverTimezone=Asia/Shanghai
   username: root
   password: root
   hikari:
      # 连接池名
     pool-name: DateHikariCP
      # 最小空闲连接数
     minimum-idle: 5
      # 空闲连接存活最大时间,默认600000(10分钟)
     idle-timeout: 180000
      # 最大连接数,默认10
     maximum-pool-size: 10
      # 从连接池返回的连接的自动提交
     auto-commit: true
      # 连接最大存活时间,0表示永久存活,默认1800000(30分钟)
     max-lifetime: 1800000
      # 连接超时时间,默认30000(30秒)
      onnection-timeout: 30000
      # 测试连接是否可用的查询语句
     connection-test-query: SELECT 1
     
# Mybatis-plus配置
mybatis-plus:
  #配置Mapper映射文件
 mapper-locations: classpath*:/mapper/*Mapper.xml
  # 配置MyBatis数据返回类型别名(默认别名是类名)
 type-aliases-package: com.xxxx.server.pojo
 configuration:
    # 自动驼峰命名(自动驼峰命名需要关掉,因为后期使用mysql查询时有问题。)
   map-underscore-to-camel-case: false 
## Mybatis SQL 打印(方法接口所在的包,不是Mapper.xml所在的包)
logging:
 level:
   com.xxxx.server.mapper: debug

启动类

package com.xxxx.server;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* 启动类
* @author zhoubin
* @since 1.0.0
*/
@SpringBootApplication
@MapperScan("com.xxxx.server.mapper")
public class VoaApplication {
    public static void main(String[] args) {
       SpringApplication.run(VoaApplication.class,args);
    }
}

你可能感兴趣的:(云e办,java,spring,spring,boot,mybatis,数据库)