91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法

發布時間:2020-10-27 20:38:26 來源:億速云 閱讀:235 作者:Leah 欄目:開發技術

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

步驟如下:

1.打開IDEA

2.File—>new—> project

3.選擇spring initializr—>Next

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法

4.填寫Grouphe和Artifact,選擇Java version: 8 ,點擊next ,如圖:

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法

5.選擇對應的依賴,點擊Next

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法

6.核對項目的名字是否一致,點擊finish后就完成了工程的創建。

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法

7.接下來就是pom文件的依賴包引入了(很重要!!!)

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-jdbc</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
      <groupId>com.alibaba</groupId>
      <artifactId>fastjson</artifactId>
      <version>1.2.73</version>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-aop</artifactId>
    </dependency>
    <dependency>
      <groupId>com.oracle</groupId>
      <artifactId>ojdbc6</artifactId>
      <version>11.2.0.4.0-atlassian-hosted</version>
    </dependency>
    <!--   orail8n字符集  -->
    <dependency>
      <groupId>cn.easyproject</groupId>
      <artifactId>orai18n</artifactId>
      <version>11.2.0.4</version>
    </dependency>
    <!--    mybatis plus-->
    <dependency>
      <groupId>com.baomidou</groupId>
      <artifactId>mybatis-plus-boot-starter</artifactId>
      <version>3.3.1.tmp</version>
    </dependency>
    <!--    代碼生成-->
    <dependency>
      <groupId>com.baomidou</groupId>
      <artifactId>mybatis-plus-generator</artifactId>
      <version>3.3.0</version>
    </dependency>
    <!--    代碼生成模板-->
    <dependency>
      <groupId>org.apache.velocity</groupId>
      <artifactId>velocity-engine-core</artifactId>
      <version>2.2</version>
    </dependency>
    <!--   swagger  -->
    <dependency>
      <groupId>io.springfox</groupId>
      <artifactId>springfox-swagger2</artifactId>
      <version>2.9.2</version>
    </dependency>
    <dependency>
      <groupId>io.springfox</groupId>
      <artifactId>springfox-swagger-ui</artifactId>
      <version>2.9.2</version>
    </dependency>
    <!--   lombok-->
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <version>1.18.12</version>
    </dependency>

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包,并創建對應的類

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法

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<UserInfo> {
}

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 DemoApplicationTests {

  @Resource
  private UserInfoMapper userInfoMapper;

  @Test
  public void select() {
    List<UserInfo> userInfos = userInfoMapper.selectList(null);
    userInfos.forEach(System.out::println);
  }
}

14.右擊運行測試類,就輸出打印信息了。

IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法

常用注解
MyBatisPlus提供了一些注解供我們在實體類和表信息出現不對應的時候使用。通過使用注解完成邏輯上匹配。

注解名稱 說明
@TableName 實體類的類名和數據庫表名不一致
@TableId 實體類的主鍵名稱和表中主鍵名稱不一致
@TableField 實體類中的成員名稱和表中字段名稱不一致

關于IDEA項目中如何使用SpringBoot+MyBatis-Plus的方法問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

峨眉山市| 寻乌县| 峡江县| 沙河市| 枣庄市| 林甸县| 巍山| 嵩明县| 开封县| 大渡口区| 永新县| 盐山县| 庆云县| 霍林郭勒市| 岳西县| 宜川县| 临江市| 克山县| 永兴县| 宜君县| 改则县| 河津市| 赣榆县| 临清市| 石棉县| 海晏县| 富顺县| 安多县| 宁明县| 三亚市| 巫溪县| 阜宁县| 老河口市| 温州市| 裕民县| 江安县| 临高县| 无锡市| 中宁县| 明光市| 青川县|