多平台统一管理软件接口,如何实现多平台统一管理软件接口
449
2022-11-17
IDEA项目使用SpringBoot+MyBatis
步骤如下:
1.打开IDEA
2.File—>new—> project
3.选择spring initializr—>Next
4.填写Grouphe和Artifact,选择java version: 8 ,点击next ,如图:
5.选择对应的依赖,点击Next
6.核对项目的名字是否一致,点击finish后就完成了工程的创建。
7.接下来就是pom文件的依赖包引入了(很重要!!!)
8.在appliaction.propertiles配置文件中写入数据库参数
spring.datasource.url=jdbc:oracle:thin:@localhost:1521:orcl
spring.datasource.username=用户
spring.datasource.password=密码
spring.datasource.driver-class-name=oracle.jdbc.OracleDriver
9.在Java下创建对应的pojo和mapper包,并创建对应的类
10.在pojo包中新建和数据库userinfo表映射的类
@Data
@KeySequence("SEQ_USER_INFO")
public class UserInfo {
@TableId(value = "USER_ID",type = IdType.INPUT)//在自增主键的变量加上即可
private Long userId;
private String userName;
@TableField(value = "USER_NINAME") //可以不写,但字段名要用小驼峰命名
private String userNiName;
private String userPwd;
private Date userCtime;
private Integer userState;
private Integer userSex;
private String userEdu;
private String userPro;
private String userEmail;
private String userTel;
private Long userScore;
}
11.在mapper包中创建mapper接口,并集成mybatisPlus的BaseMapper
public interface UserInfoMapper extends BaseMapper
}
12.在DemoApplication的main方法中添加注解@MapperScan,使其能够扫描mapper类
,添加@SpringBootApplication注解
@MapperScan("com.mybatitsplus.demo")
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}
13.在测试类中:
添加注解@RunWith(SpringRunner.class)
添加注解@Resource
最后打印输出
@RunWith(SpringRunner.class)
@SpringBootTest
class DemoApplicationTeshttp://ts {
@Resource
private UserInfoMapper userInfoMapper;
@Test
public void select() {
List
userInfos.forEach(System.out::println);
}
}
14.右击运行测试类,就输出打印信息了。
常用注解
MyBatisPlus提供了一些注解供我们在实体类和表信息出现不对应的时候使用。通过使用注解完成逻辑上匹配。
注解名称 说明
@TableName 实体类的类名和数据库表名不一致
@TableId 实体类的主键名称和表中主键名称不一致
@TableField 实体类中的成员名称和表中字段名称不一致
总结
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~