240 發(fā)簡信
IP屬地:四川
  • 找了那么久惯殊,這是唯一能用的。

    element-ui 樹(tree)組件只能單選實現(xiàn)

    原生組件中element-ui的tree組件是沒有單選這個api的土思,只有多選务热。可是很多實際項目中其實是有這樣需求的浪漠,比如我就遇到了陕习。然后想辦法實現(xiàn)了,如果你也剛好需要址愿,拿走不...

  • 120
    element-ui 樹(tree)組件只能單選實現(xiàn)

    原生組件中element-ui的tree組件是沒有單選這個api的该镣,只有多選∠煳剑可是很多實際項目中其實是有這樣需求的损合,比如我就遇到了。然后想辦法實現(xiàn)了娘纷,如果你也剛好需要嫁审,拿走不...

  • 你就不能從添加依賴開始嗎了牛?

    Netty入門教程2——動手搭建HttpServer

    上一篇:Netty學(xué)習(xí)筆記1——認識Netty 在上一章中我們認識了netty颜屠,他有三大優(yōu)點:并發(fā)高辰妙,傳輸快,封裝好甫窟。在這一章我們來用Netty搭建一個HttpServer密浑,...

  • is not null是不走索引。
    是錯誤的粗井。
    經(jīng)過我自己的測試肴掷,不管是is null還是is not null,走不走索引是看命中數(shù)據(jù)量占總量的一個比例來看的背传。走索引,不走索引的情況都會出現(xiàn)台夺。

    MySQL中NULL對索引的影響

    看了很多博客径玖,也聽過很多人說,包括我們公司的DBA颤介,說MySql中如果某一列中含有null梳星,那么包含該列的索引就無效了。 翻了下《高性能MySQL第二版》和《MySQL技術(shù)內(nèi)...

  • 找到原因了滚朵,mapper.xml中的表名order需要`order`

    Springboot整合 ShardingSphere 實現(xiàn)分庫分表

    概述 之前介紹過分布式系統(tǒng)中冤灾,分庫分表分區(qū)的概念,可參考 《分布式系統(tǒng)中辕近,數(shù)據(jù)庫的分表韵吨、分庫和分區(qū)基本概念梳理[http://www.reibang.com/p/432b6...

  • 附表結(jié)構(gòu):
    CREATE TABLE `order_1` (
    `order_id` bigint(10) unsigned NOT NULL,
    `user_id` bigint(10) unsigned NOT NULL,
    `company_id` tinyint(3) unsigned NOT NULL,
    `created_at` timestamp NOT NULL,
    PRIMARY KEY (`order_id`),
    KEY `user_company` (`user_id`,`company_id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

    Springboot整合 ShardingSphere 實現(xiàn)分庫分表

    概述 之前介紹過分布式系統(tǒng)中,分庫分表分區(qū)的概念移宅,可參考 《分布式系統(tǒng)中归粉,數(shù)據(jù)庫的分表、分庫和分區(qū)基本概念梳理[http://www.reibang.com/p/432b6...

  • 兄弟漏峰,我按照你的操作設(shè)置糠悼,插入數(shù)據(jù)報錯。
    spring:
    shardingsphere:
    datasource:
    names: springbootdb0, springbootdb1 #數(shù)據(jù)源
    #第一個數(shù)據(jù)源
    springbootdb0:
    type: com.zaxxer.hikari.HikariDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    jdbc-url: jdbc:mysql://x.x.x.x:3306/springbootdb0
    username: root
    password: "123456"
    #配置第二個數(shù)據(jù)源
    springbootdb1:
    type: com.zaxxer.hikari.HikariDataSource
    driver-class-name: com.mysql.cj.jdbc.Driver
    jdbc-url: jdbc:mysql://x.x.x.x:3306/springbootdb1
    username: root
    password: "123456"
    #分庫策略
    sharding:
    default-database-strategy:
    inline:
    sharding-column: company_id
    algorithm-expression: springbootdb$->{company_id % 2}
    tables:
    order:
    actual-data-nodes: springbootdb$->{0..1}.order_$->{0..2}
    table-strategy:
    inline:
    sharding-column: user_id
    algorithm-expression: order_$->{user_id % 3}
    key-generator:
    column: order_id
    type: SNOWFLAKE
    props:
    sql:
    show: true

    mybatis:
    mapper-locations: classpath:mapper/*.xml
    logging:
    level:
    com:
    example: debug

    報錯:
    2021-11-08 22:50:54.108 ERROR 11232 --- [nio-8080-exec-1] c.e.demo.controller.OrderController : 插入訂單失斍城恰:nested exception is org.apache.ibatis.exceptions.PersistenceException:
    ### Error updating database. Cause: java.lang.IllegalStateException
    ### The error may exist in file [C:\code\java\spring-boot-demo\target\classes\mapper\OrderMapper.xml]
    ### The error may involve com.example.demo.dao.OrderDao.insert-Inline
    ### The error occurred while setting parameters
    ### SQL: insert into order (user_id, company_id, created_at ) values (?, ?, ? )
    ### Cause: java.lang.IllegalStateException
    求指導(dǎo)倔喂。

    Springboot整合 ShardingSphere 實現(xiàn)分庫分表

    概述 之前介紹過分布式系統(tǒng)中,分庫分表分區(qū)的概念靖苇,可參考 《分布式系統(tǒng)中席噩,數(shù)據(jù)庫的分表、分庫和分區(qū)基本概念梳理[http://www.reibang.com/p/432b6...

  • 關(guān)于對docker run --link的理解

    前言 在實踐中,自己會遇到2個容器之間互相訪問通信的問題芯砸,這個時候就用到了docker run --link選項萧芙。自己也花了一段時間泡官網(wǎng)研究了--link的用法给梅,把自己對-...

  • REQUIRED_NEW的情況下渔期,按我的理解應(yīng)該是內(nèi)層事務(wù)回滾运吓,外層事務(wù)提交。我實際測試結(jié)果表中并沒有user數(shù)據(jù)疯趟,請問是怎么回事拘哨?是我理解的有問題嗎

    SpringBoot 數(shù)據(jù)庫事務(wù)7種傳播行為

    1. REQUIRED 如果當前方法的執(zhí)行上下文中已經(jīng)打開了事務(wù),那么就使用當前這個事務(wù)信峻。 如果當前沒有事務(wù)倦青,就創(chuàng)建一個新的。 如果多個方法都聲明了 REQUIRED盹舞,并且他...

  • 從中我們可以知道小程序的生命周期函數(shù)的調(diào)用順序為:onLoad>onReady>onShow;
    寫錯了

    小程序 — 小程序生命周期及頁面生命周期

    前言:很多同學(xué)容易將小程序生命周期和頁面的生命周期混淆為一起地粪,這兩個其實應(yīng)該是不同卻又相互關(guān)聯(lián)的生命周期取募,所以,用實際代碼操作并結(jié)合官方理論講講這個蟆技,好好捋捋玩敏。 小程序生命周...

亚洲A日韩AV无卡,小受高潮白浆痉挛av免费观看,成人AV无码久久久久不卡网站,国产AV日韩精品