国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

XML-BEANS compiled schema: Could not locate compiled schema resource 異常處理

這篇具有很好參考價(jià)值的文章主要介紹了XML-BEANS compiled schema: Could not locate compiled schema resource 異常處理。希望對(duì)大家有所幫助。如果存在錯(cuò)誤或未考慮完全的地方,請(qǐng)大家不吝賜教,您也可以點(diǎn)擊"舉報(bào)違法"按鈕提交疑問。

使用poi5.2.2生成ppt,生成堆疊圖,設(shè)置值時(shí)拋出異常

XML-BEANS compiled schema: Could not locate compiled schema resource org/apache/poi/schemas/ooxml/system/ooxml/stoverlappercent872etype.xsb (org.apache.poi.schemas.ooxml.system.ooxml.stoverlappercent872etype) - code 0

異常顯示缺少stoverlappercent872etype.xsb文件,檢查poi-ooxml包和關(guān)聯(lián)引入的poi-ooxml-lite包均正常引入且無沖突。

檢查poi-ooxml-lite包下org/apache/poi/schemas/ooxml/system/ooxml目錄顯示有stoverlappercent872etype.xsb文件。但是無法讀取,此處可能是poi5.2.2的bug

github查找到此issues,按回答引入poi-ooxml-full包,問題解決。

<dependency>
   <groupId>org.apache.poi</groupId>
   <artifactId>poi-ooxml-full</artifactId>
   <version>5.2.2</version>
</dependency>

相關(guān)鏈接:

apache poi 升級(jí)至5.1.0后的SchemaTypeLoaderException: XML-BEANS compiled schema: Could not locate compiled schema resource · Issue #732 · Sayi/poi-tl · GitHub文章來源地址http://www.zghlxwxcb.cn/news/detail-647022.html

到了這里,關(guān)于XML-BEANS compiled schema: Could not locate compiled schema resource 異常處理的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點(diǎn)僅代表作者本人,不代表本站立場(chǎng)。本站僅提供信息存儲(chǔ)空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請(qǐng)注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實(shí)不符,請(qǐng)點(diǎn)擊違法舉報(bào)進(jìn)行投訴反饋,一經(jīng)查實(shí),立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費(fèi)用

相關(guān)文章

  • Could not locate supplied template: react+ts搭建

    Could not locate supplied template: react+ts搭建

    我們?cè)谑怯孟耤reate-react-app之前要下載一下 使用一下命令創(chuàng)建ts的react框架 create-react-app my-app --scripts-version=react-scripts-ts 我們用以上創(chuàng)建之后會(huì)提示一段代碼選擇“Y”之后發(fā)現(xiàn)我們創(chuàng)建的項(xiàng)目沒有模板,提示 同時(shí)打開我們創(chuàng)建的項(xiàng)目沒有以下模板文件 命令行如下 create-react-a

    2024年02月15日
    瀏覽(21)
  • idea報(bào)“Could not autowire. No beans of ‘UserMapper‘ type found. ”錯(cuò)解決辦法

    idea報(bào)“Could not autowire. No beans of ‘UserMapper‘ type found. ”錯(cuò)解決辦法

    idea具有檢測(cè)功能,接口不能直接創(chuàng)建bean的,需要用動(dòng)態(tài)代理技術(shù)來解決。 1.修改idea的配置 1.點(diǎn)擊file,選擇setting 2.搜索inspections,找到Spring 3.找到Spring子目錄下的Springcore 4.在Springcore的子目錄下找到code 5.把seyerity選項(xiàng)改成警告 2.修改代碼 1,@Autowrited改為@Autowrited(required = false)

    2024年02月05日
    瀏覽(26)
  • IDEA提示找不到Mapper接口:Could not autowire.No beans of ‘xxxMapper‘ type found

    IDEA提示找不到Mapper接口:Could not autowire.No beans of ‘xxxMapper‘ type found

    我們可以看到,上面的紅色警告在提示我們,找不到 xxxMaper 這個(gè)類型的 bean。 為啥呢? 因?yàn)?@Mapper 這個(gè)注解是 Mybatis 提供的,而 @Autowried 注解是 Spring 提供的,IDEA能理解 Spring 的上下文,但是卻和 Mybatis 關(guān)聯(lián)不上。而且我們可以根據(jù) @Autowried 源碼看到,默認(rèn)情況下,@Autowri

    2024年02月08日
    瀏覽(24)
  • 解決SpringBoot項(xiàng)目中的報(bào)錯(cuò):Could not autowire,no beans of “XXX“ type found

    解決SpringBoot項(xiàng)目中的報(bào)錯(cuò):Could not autowire,no beans of “XXX“ type found

    問題:找不到mapper注入的bean,如圖 ? 分析:注入mapper有兩種方式: ?第一種:在啟動(dòng)類中添加? @MapperScan ???????然后在mapper的類中添加? @Repository 注解 第二種方法:直接在各個(gè)mapper類中添加@Mapper注解,但是一定要注意導(dǎo)入正確的包,否則解決不了這個(gè)異常; ?很多新手

    2024年02月08日
    瀏覽(33)
  • SpringBoot - 在IDEA中經(jīng)常發(fā)現(xiàn):Could not autowire. No beans of ‘xxx‘ type found的錯(cuò)誤

    SpringBoot - 在IDEA中經(jīng)常發(fā)現(xiàn):Could not autowire. No beans of ‘xxx‘ type found的錯(cuò)誤

    錯(cuò)誤描述 在SPRINGBOOT的項(xiàng)目中,使用IDEA時(shí)經(jīng)常會(huì)遇到Could not autowire. No beans of ‘xxxx’ type found的錯(cuò)誤提示,但是程序的編譯和運(yùn)行都沒有問題,這個(gè)錯(cuò)誤提示并不影響項(xiàng)目的生產(chǎn)。 解決方案

    2024年02月15日
    瀏覽(23)
  • Could not locate executable null\bin\winutils.exe in the Hadoop binaries.

    Could not locate executable null\bin\winutils.exe in the Hadoop binaries.

    在windows系統(tǒng)本地運(yùn)行spark的wordcount程序,會(huì)出現(xiàn)一個(gè)異常,但不影響現(xiàn)有程序運(yùn)行。 發(fā)現(xiàn)是因?yàn)樵赪indows環(huán)境中缺少winutils.exe程序。 因?yàn)橐话闱闆r下Hadoop、spark都是運(yùn)行在Linux系統(tǒng)下的,在windows下運(yùn)行時(shí)需要安裝Windows下運(yùn)行的支持插件:hadoop2.7-common-bin。 原因分析 :https://

    2024年02月13日
    瀏覽(20)
  • 【RUST】mac m1編譯rust項(xiàng)目失?。?could not compile `` due to previous error

    2.1 查看clang: 結(jié)果如下: 2.2 查看llvm-ar: 結(jié)果如下: 2.3 如果沒有安裝llvm-ar,安裝命令如下: 2.4 查看是否安裝成功命令: 結(jié)果如下: 2.5 重新執(zhí)行cargo 命令: 執(zhí)行cargo clean: 執(zhí)行一次帶AR參數(shù)的cargo命令(本人執(zhí)行一次就好了): 如果沒有沒有報(bào)錯(cuò), 后續(xù)就可以使用正常的

    2024年02月07日
    瀏覽(22)
  • 虛幻引擎圖文筆記:could not be compiled. Try rebuilding from source manually.問題的解決

    虛幻引擎圖文筆記:could not be compiled. Try rebuilding from source manually.問題的解決

    從SVN上Checkout的必要文件,在其它電腦上構(gòu)建過一次沒有問題,結(jié)果到了這臺(tái)比較新的電腦上出現(xiàn)了如下問題?: 嘗試生成sln文件?: 彈出了如下提示?: 在.NET Core官網(wǎng)下載并安裝.NET Core。 于是又出現(xiàn)了如下提示 在這里下載并安裝framework的指定版本,我這里要求安裝 3.1.

    2024年02月11日
    瀏覽(25)
  • Could not locate executable null\bin\winutils.exe in the Hadoop binaries解決方式

    Could not locate executable null\bin\winutils.exe in the Hadoop binaries解決方式

    Failed to locate the winutils binary in the hadoop binary path Could not locate executable nullbinwinutils.exe in the Hadoop binaries ? 仔細(xì)查看報(bào)錯(cuò)是缺少winutils.exe程序。 Hadoop都是運(yùn)行在Linux系統(tǒng)下的,在windows下eclipse中運(yùn)行mapreduce程序,要首先安裝Windows下運(yùn)行的支持插件(我的是hadoop2.2.0) GitHub - sr

    2024年02月12日
    瀏覽(20)
  • 詳細(xì)解決redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

    詳細(xì)解決redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool

    今天從 gitlab 上下載本公司的項(xiàng)目,但在啟動(dòng)時(shí)報(bào)出如下錯(cuò)誤: 具體的錯(cuò)誤信息為 redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool 。 根據(jù)上述報(bào)錯(cuò)信息可知,這是 redis 出現(xiàn)了錯(cuò)誤。 首先,檢查我的 redis 的配置信息,如下代碼所示: 據(jù)此可以看出,

    2024年02月09日
    瀏覽(24)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請(qǐng)作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包