第一部分:创建springboot文件
第一步:打开软件,点击file,点击new 然后选择module,在右侧选择springboot
第二步:选择配置和JDK以及java版本
①选择maven类型
②选择JDK1.8版本
③选择java8版本
④选择jar包类型
http://t.csdnimg.cn/XeplRhttp://t.csdnimg.cn/XeplR
第三步:选择加载配置,选择mybatis和mysql driver
之后我们稍等一会,让他建立项目!~
我们一定要确定右侧的这三个包被正确的加载,如果报错,也就是没有正确的加载,看我的博客:
第四步:核心配置-数据库连接相关信息
(1)导入数据库
数据库的导入方法如下:http://t.csdnimg.cn/I6ioO
示例数据库:
链接:https://pan.baidu.com/s/16iNxlYG2ms0GNXRrpIM4Sg?pwd=49a7
提取码:49a7
--来自百度网盘超级会员V5的分享
(2)开始在springboot里面配置数据库信息
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/你的数据库名称
username: 你的sql用户名
password: 对应你自己设置的密码
第五步:映射配置-SQL映射(XML/注解)
(1)新建一个Fuel的实体类
package com.example.domain;
public class Fuel {
private Long id;
private String fossilEnergyType;
private Double cad;
private Double cd;
private Double navar;
private Double fc;
private Double fcbj;
private Double ncvbj;
@Override
public String toString() {
return "Fuel{" +
"id=" + id +
", fossilEnergyType='" + fossilEnergyType + '\'' +
", cad=" + cad +
", cd=" + cd +
", navar=" + navar +
", fc=" + fc +
", fcbj=" + fcbj +
", ncvbj=" + ncvbj +
'}';
}
public Fuel(Long id, String fossilEnergyType, Double cad, Double cd, Double navar, Double fc, Double fcbj, Double ncvbj) {
this.id = id;
this.fossilEnergyType = fossilEnergyType;
this.cad = cad;
this.cd = cd;
this.navar = navar;
this.fc = fc;
this.fcbj = fcbj;
this.ncvbj = ncvbj;
}
public Fuel() {
}
public void setId(Long id) {
this.id = id;
}
public void setFossilEnergyType(String fossilEnergyType) {
this.fossilEnergyType = fossilEnergyType;
}
public void setCad(Double cad) {
this.cad = cad;
}
public void setCd(Double cd) {
this.cd = cd;
}
public void setNavar(Double navar) {
this.navar = navar;
}
public void setFc(Double fc) {
this.fc = fc;
}
public void setFcbj(Double fcbj) {
this.fcbj = fcbj;
}
public void setNcvbj(Double ncvbj) {
this.ncvbj = ncvbj;
}
public Long getId() {
return id;
}
public String getFossilEnergyType() {
return fossilEnergyType;
}
public Double getCad() {
return cad;
}
public Double getCd() {
return cd;
}
public Double getNavar() {
return navar;
}
public Double getFc() {
return fc;
}
public Double getFcbj() {
return fcbj;
}
public Double getNcvbj() {
return ncvbj;
}
}
(2)新建一个Dao层的FuelDao接口
package com.example.dao;
import com.example.domain.Fuel;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
@Mapper
public interface FuelDao {
@Select("select * from 燃煤热电数据 where id =#{id}")
public Fuel getFuelById(int id);
}
第六步:执行test测试
测试部分代码:
package com.example.demo3;
import com.example.dao.FuelDao;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class Demo3ApplicationTests {
@Autowired
private FuelDao fuelDao;
@Test
void contextLoads() {
System.out.println(fuelDao.getFuelById(1));
}
}
运行效果:
完整文件打包如下:
链接:https://pan.baidu.com/s/1J4fSIoZ5aar_NVbzcqn1lg?pwd=0zx1
提取码:0zx1
--来自百度网盘超级会员V5的分享
运行我打包的项目为了能够正常运行(需要兼容maven以及java版本),具体的调整方法看我博客:http://t.csdnimg.cn/Uovig
好啦,希望能够帮助到大家!
标签:springboot,Double,public,cd,整合,mybatis,fcbj,navar,id From: https://blog.csdn.net/weixin_74009895/article/details/140765284