SpringBoot SSM vue生产线控制系统
SpringBoot SSM vue生产线控制系统
SpringBoot生产线控制系统功能介绍
登录 个人中心 生产线管理员管理 订单信息管理
生产线完成的订单管理 生产线管理
使用技术
-
SpringBoot或SSM(Spring + SpringMVC + Mybaits)框架
-
Mysql数据库
-
vue后台管理
功能展示






application.yml配置文件
# Tomcat
server:tomcat:uri-encoding: UTF-8port: 8080servlet:context-path: /springbootspring:datasource:driverClassName: com.mysql.jdbc.Driverurl: jdbc:mysql://127.0.0.1:3306/springboot?useUnicode=true&characterEncoding=utf-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTCusername: rootpassword: rootservlet:multipart:max-file-size: 10MBmax-request-size: 10MB#mybatis
mybatis-plus:mapper-locations: classpath*:mapper/*.xml#实体扫描,多个package用逗号或者分号分隔typeAliasesPackage: com.entityglobal-config:#主键类型 0:"数据库ID自增", 1:"用户输入ID",2:"全局唯一ID (数字类型唯一ID)", 3:"全局唯一ID UUID";id-type: 1#字段策略 0:"忽略判断",1:"非 NULL 判断"),2:"非空判断"field-strategy: 2#驼峰下划线转换db-column-underline: true#刷新mapper 调试神器refresh-mapper: true#逻辑删除配置logic-delete-value: -1logic-not-delete-value: 0#自定义SQL注入器sql-injector: com.baomidou.mybatisplus.mapper.LogicSqlInjectorconfiguration:map-underscore-to-camel-case: truecache-enabled: falsecall-setters-on-nulls: true#springboot 项目mybatis plus 设置 jdbcTypeForNull (oracle数据库需配置JdbcType.NULL, 默认是Other)jdbc-type-for-null: 'null'
运行
创建数据库, 然后修改数据库连接相关信息。
启动 Springboot 类的main方法
访问地址:http://localhost:8080/springboot/admin/dist/index.html
管理员账号:liang 密码:liang
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
