一、安装IDEA
1、下载 java8,配置环境变量
2、下载 idea,安装
二、新建项目
1、File - New - Project
选Spring Initializr
,Service URL
使用Default
2、填写包名相关信息com.yzyfdf.shares
,Java选8
3、勾选依赖
- web
- Spring Web
- SQL
- JDBC API
- MyBatis Framework
- MySQL Driver
4、选择项目位置
5、完成配置等待项目初始化
三、添加数据
1、安装 MySQL,idea连接数据库,可以参照 PyCharm连接MySQL
2、创建数据库,新建一个表,比如:
create table sharesdata
(
myId int primary key auto_increment comment '主键id',
timestamp varchar(13) comment '收盘时间',
symbol varchar(12) not null comment '股票代码',
index (symbol),
name varchar(8) not null comment '股票名称',
current float comment '当前股价',
chg float comment '股价变更',
percent float comment '股价变更百分比',
high float comment '最高',
low float comment '最低',
open float comment '今开',
last_close float comment '昨收',
limit_up float comment '涨停',
limit_down float comment '跌停',
volume bigint comment '成交量',
amount float comment '成交额'
);
3、插入一条数据
insert into sharesdata (symbol, name, current, chg, percent, high, low, open, last_close, limit_up, limit_down)
values ('SH600000', '浦发银行', 10.46, -0.04, -0.38, 10.57, 10.44, 10.57, 10.5, 11.55, 9.45, 38982822, 408921984);
四、配置mybatis-generator插件
1、pom.xml中plugins
标签下加入
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.5</version>
<configuration>
<!-- 在控制台打印执行日志 -->
<verbose>true</verbose>
<!-- 重复生成时会覆盖之前的文件-->
<overwrite>true</overwrite>
<configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
</configuration>
<!-- 数据库连接选择8.0以上的,因为用的mysql8.0,这里一定要加,虽然上面依赖里已经有了-->
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.15</version>
</dependency>
</dependencies>
</plugin>
2、跟启动类Application同级,创建4个目录:controller
,service
,mapper
,entity
,在resources下新建mapper
文件夹
3、添加配置
resources下新建generatorConfig.xml
,最下方table
标签注意改表名和实体类名,内容:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!--导入配置文件-->
<properties resource="mybatisGeneratorinit.properties"/>
<!-- 一个数据库一个context -->
<context id="default">
<!-- 注释生成设置 -->
<commentGenerator>
<!-- 是否生成注释代时间戳-->
<property name="suppressDate" value="true"/>
<!-- 是否取消注释 -->
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--jdbc的数据库连接-->
<jdbcConnection driverClass="${jdbc_driver}" connectionURL="${jdbc_url}"
userId="${jdbc_user}" password="${jdbc_password}">
<property name="nullCatalogMeansCurrent" value="true"/>
</jdbcConnection>
<!-- 类型转换 -->
<javaTypeResolver>
<!-- 是否使用bigDecimal, false可自动转化以下类型(Long, Integer, Short, etc.) -->
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- targetPackage:生成的实体类所在的包 -->
<!-- targetProject:生成的实体类所在的硬盘位置 -->
<javaModelGenerator targetPackage="${location_entity}" targetProject="src/main/java">
<!-- 是否允许子包 -->
<property name="enableSubPackages" value="false"/>
<!-- 是否对modal添加构造函数 -->
<property name="constructorBased" value="true"/>
<!-- 是否清理从数据库中查询出的字符串左右两边的空白字符 -->
<property name="trimStrings" value="true"/>
<!-- 建立modal对象是否不可改变 即生成的modal对象不会有setter方法,只有构造方法 -->
<property name="immutable" value="false"/>
</javaModelGenerator>
<!-- targetPackage 和 targetProject:生成的 mapper xml 文件的包和位置 -->
<sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources">
<!-- 是否在当前路径下新加一层schema,ex:false路径com.qikegu.demo.model, com.qikegu.demo.model.[schemaName] -->
<property name="enableSubPackages" value="false"/>
<!-- 是否针对string类型的字段在set的时候进行trim调用 -->
<property name="trimStrings" value="true"/>
</sqlMapGenerator>
<!-- targetPackage 和 targetProject:生成的 java interface 文件的包和位置 -->
<javaClientGenerator type="XMLMAPPER"
targetPackage="${location_mapper}"
targetProject="src/main/java">
<!-- 是否在当前路径下新加一层schema,ex:false路径com.qikegu.demo.model, com.qikegu.demo.model.[schemaName] -->
<property name="enableSubPackages" value="false"/>
</javaClientGenerator>
<!-- 配置表信息 -->
<!-- schema即为数据库名 tableName为对应的数据库表 domainObjectName是要生成的实体类 enable*ByExample, 是否生成 example类 -->
<!-- 不同的表,修改tableName和domainObjectName就可以 -->
<table tableName="sharesdata" domainObjectName="Share"
enableCountByExample="false" enableUpdateByExample="false"
enableDeleteByExample="false" enableSelectByExample="false"
selectByExampleQueryId="false">
</table>
</context>
</generatorConfiguration>
resources下新建mybatisGeneratorinit.properties
,内容:
#DataSource
#数据库驱动
jdbc_driver=com.mysql.jdbc.Driver
#数据库链接
jdbc_url=jdbc:mysql://localhost:3306/shares?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
#数据库用户名
jdbc_user=root
#数据库密码
jdbc_password=123456
#生成类位置
location_entity=com.yzyfdf.shares.entity
location_mapper=com.yzyfdf.shares.mapper
application.yml
中添加:
spring:
datasource:
username: root
password: 123456
url: jdbc:mysql://localhost:3306/db_test1?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
driver-class-name: com.mysql.jdbc.Driver
mybatis:
mapper-locations: classpath:mapper/*Mapper.xml
type-aliases-package: com.yzyfdf.shares.entity
4、运行插件
右侧Maven
- 展开Plugins
- mybatis-genertor
,双击mybatis-generator:generate
,等待编译,出现下面的就成功了
[INFO] Saving file ShareMapper.xml
[INFO] Saving file Share.java
[INFO] Saving file ShareMapper.java
[INFO] ---------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ---------------------------------------------
[INFO] Total time: 1.141 s
自动生成了三个文件
五、补全代码
1、给ShareMapper.java
类加上@Repository
注解
2、在service
下新建ShareService
类
import com.yzyfdf.shares.entity.Share;
import com.yzyfdf.shares.mapper.ShareMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class ShareService {
@Autowired
ShareMapper shareMapper;
public Share getShareById(int id) {
return shareMapper.selectByPrimaryKey(id);
}
}
3、在controller
下新建ShareController
import com.yzyfdf.shares.entity.Share;
import com.yzyfdf.shares.service.ShareService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/shares")
public class ShareController {
@Autowired
private ShareService shareService;
@RequestMapping("/{id}")
public Share getShare(@PathVariable int id) {
return shareService.getShareById(id);
}
}
4、给启动类加上注解@MapperScan("com.yzyfdf.shares.mapper")
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@MapperScan("com.yzyfdf.shares.mapper")
@SpringBootApplication
public class SharesApplication {
public static void main(String[] args) {
SpringApplication.run(SharesApplication.class, args);
}
}
5、在application.yml
中加上端口
server:
port: 8015
六、启动
1、在启动类右键,选择Run
,等待启动完
2、在浏览器输入http://localhost:8015/shares/1
,就能看到数据了
七、分环境配置
1、application.yml
中datasource
部分放入application-dev.yml
2、再创建一个application-prod.yml
,内容同application-dev.yml
,用户名密码自行修改
3、application.yml
中加入
spring:
profiles:
active: prod
修改active改变环境
网友评论