美文网首页
SpringBoot学习随笔记录1(数据库构建、开发环境)

SpringBoot学习随笔记录1(数据库构建、开发环境)

作者: 刚刚8888 | 来源:发表于2019-04-03 10:08 被阅读0次

    数据库构建:
    基本类型:
    int: 整型 ,比较小的数字类型数据使用
    varchar(n):字符串类型,比较长数字或者字符串使用
    decimal(m,n):小数类型,m位n位小数
    timestamp: 时间类型

    关键字:
    not null: 数据不为空
    primary key('keyStr'): 设置表主键为keyStr
    auto_increment:自增
    unique key 'name' (keystr): 唯一索引 索引名为name(习惯为uqe_开头),字段为 keystr
    key 'name' (keystr): 添加索引 索引名为name(习惯为idx_开头),字段为 keystr

    要点:
    变量名``,coment后内容用'',default 后用'' ,如default '0'
    涉及金额计算的用decimal(8,2)类型,8位,2位小数
    链接一般用varchar(512)类型
    default current_timestamp: 默认当前时间
    on update current_timestamp: 自动更新时间

    开发环境:
    1.虚拟机:virtualbox
    2.数据库连接操作软件:sequel pro
    3.JDK和maven,JDK是Java开发工具包 (Java Development Kit ) , maven是通过文件的配置获取jar包,而不用手动去添加jar包的工具
    4.IDEA编辑器(旗舰版)

    要点:
    a.mysql账户:root/123456,数据库编码选择utf8mb4,因为这种编码支持表情emoji存储,utf8不支持
    b.maven安装下载完包(apache-maven-x.x.x-bin.tar.gz)后,解压到文稿或其他自己定义个位置。
    1)打开终端输入命令 vim ~/.bash_profile (编辑环境变量配置文件)
    2)按下i,进入编辑模式
    3)在环境变量文件中加上如下的配置
    export MAVEN_HOME=/Users/kun/Desktop/midongtools/apache-maven-3.5.0
    export PATH=$PATH:$MAVEN_HOME/bin
    PS:(可以将文件直接拖拽至终端内文件路径便可显示出来)
    4)输入 :wq退出并保存当前文件
    5)输入 source .bash_profile,按下Enter键使bash_profile生效。
    6)输入 mvn -v,显示版本信息则配置成功

    7)apache-maven-x.x.x里面的conf文件下有一个settings.xml文件。在这里面我们可以修改一下镜像的位置,默认的镜像下载速度很慢,我们可以换成阿里云的镜像。 20180512154946420.png
          <mirror>
              <!--This sends everything else to /public -->
              <id>nexus</id>
              <mirrorOf>*</mirrorOf> 
              <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
          </mirror>
          <mirror>
              <!--This is used to direct the public snapshots repo in the 
              profile below over to a different nexus group -->
              <id>nexus-public-snapshots</id>
              <mirrorOf>public-snapshots</mirrorOf> 
              <url>http://maven.aliyun.com/nexus/content/repositories/snapshots/</url>
              </mirror>
          </mirrors>
    

    c.虚拟机镜像后缀为.ova,导入时需要将重新初始化网卡MAC地址勾上。
    虚拟机账户:root/123456,登录后ifconfig(可能查的不对,则通过ip a命令查)查一下网络是否和主机在同一个网段,如果不是同一个网段,通过virtualbox->设置->网络->桥接网卡(选择当前wifi,混杂模式选择全部允许)处理。

    相关文章

      网友评论

          本文标题:SpringBoot学习随笔记录1(数据库构建、开发环境)

          本文链接:https://www.haomeiwen.com/subject/sfhnbqtx.html