当前位置: 首页 > news >正文

怎么用axure做自适应网站网站标题优化排名

怎么用axure做自适应网站,网站标题优化排名,商务网站的建设阶段包括,智能管理系统软件希望文章能给到你启发和灵感~ 感谢支持和关注~ 阅读指南 序幕一、基础环境说明1.1 硬件环境1.2 软件环境 二、起因三、解决四、总结 序幕 近期,IntelliJ IDEA 推出了全新2024版本,相信很多编程的爱好者或者刚接触编程的小伙伴都会…

希望文章能给到你启发和灵感~
感谢支持和关注~

阅读指南

  • 序幕
  • 一、基础环境说明
    • 1.1 硬件环境
    • 1.2 软件环境
  • 二、起因
  • 三、解决
  • 四、总结

序幕

近期,IntelliJ IDEA 推出了全新2024版本,相信很多编程的爱好者或者刚接触编程的小伙伴都会迫不及待更新和下载;版本升级毋庸置疑,在很多功能和体验上肯定是有很多提升的,这里博主就不多概述,主要记录一下前几天遇到的一个关于JDK的兼容问题;让一些小伙伴不踩坑;

一、基础环境说明

考虑环境因素,大家适当的对比自己的软硬件环境情况分析~

1.1 硬件环境

MacOS Monterey 版本 12.6.8 Apple M1(博主环境)
Windows 11 家庭版(问题环境)

1.2 软件环境

IntelliJ IDEA 2020.1.2(博主版本)
IntelliJ IDEA 2023.3(博主版本)
IntelliJ IDEA 2024.1(问题环境idea版本)
JDK8

二、起因

这里博主列出了两个硬件环境,因为在mac下,博主使用IntelliJ IDEA 2020.1.2和IntelliJ IDEA 2023.3,都能很好的适配JDK8的代码执行;

但是Windows 11 家庭版下,IDEA 2023.3能正常适配运行代码,但是新版的IntelliJ IDEA 2024.1却无法运行;当执行项目时,提示大致错误信息如下:

Abnormal build process termination: 
"C:\Program Files\Java\jdk1.8.0_72\bin\java.exe" -Xmx700m -Djava.awt.headless=true "-Djna.boot.library.path=D:\idea\IntelliJ IDEA 2024.1/lib/jna/amd64" -Djna.nosys=true -Djna.noclasspath=true --add-opens jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED -Dcompile.parallel=false -Drebuild.on.dependency.change=true -Didea.IntToIntBtree.page.size=32768 -Djdt.compiler.useSingleThread=true -Daether.connector.resumeDownloads=false -Dio.netty.initialSeedUniquifier=1226091530544792288 -Dfile.encoding=GBK -Duser.language=zh -Duser.country=CN -Didea.paths.selector=IntelliJIdea2024.1 "-Didea.home.path=D:/idea/IntelliJ IDEA 2024.1" -Didea.config.path=C:/Users/32403/AppData/Roaming/JetBrains/IntelliJIdea2024.1 -Didea.plugins.path=C:/Users/32403/AppData/Roaming/JetBrains/IntelliJIdea2024.1/plugins -Djps.log.dir=C:/Users/32403/AppData/Local/JetBrains/IntelliJIdea2024.1/log/build-log "-Djps.fallback.jdk.home=D:/idea/IntelliJ IDEA 2024.1/jbr" -Djps.fallback.jdk.version=17.0.10 -Dio.netty.noUnsafe=true -Djava.io.tmpdir=C:/Users/32403/AppData/Local/JetBrains/IntelliJIdea2024.1/compile-server/indi_eaf41962/_temp_ -Djps.backward.ref.index.builder=true "-Djps.kotlin.home=D:\idea\IntelliJ IDEA 2024.1\plugins\Kotlin\kotlinc" -Dkotlin.incremental.compilation=true -Dkotlin.incremental.compilation.js=true -Dkotlin.daemon.ena

错误信息非常长,博主没有细看,只是看了内容中包括了部分JDK和IDEA版本的字眼;

add-opens jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-opens jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens 

一开始只是以为JDK的配置问题,重新设置了JDK的环境变量,并在IDEA中配置对应的JDK信息,包括清理缓存和重启idea,但是问题依旧;

查阅了官方的兼容支持信息,在2024.1的版本下,其实是能看到兼容的;但是同套代码同JDK环境,在不同的版本Idea下的反馈不一样;就很让人费解!
在这里插入图片描述
于是乎,咨询了技术售后,大致的反馈是:
在这里插入图片描述
emm,说的比较官方,我们这里只能认为可能的原因是2024版对JDK8的适配度可能不够

三、解决

【1】既然新版本适配不够,我们就将版本下降到了2023版;
【2】或者可以将JDK版本升级到JDK17等更高版本;

工程代码对JDK有要求的,选【1】;没要求的选【2】;更改后代码即可运行

四、总结

其实博主也有看到一些博主,似乎也正常安装idea2024,并且在JDK8运行了,但是环境不同,情况也不同

所以关于这个问题有几点大家注意一下,作为参考即可;

【1】该问题出现在window11系统下,博主只有mac没有window,问题是在帮人部署时遇到的,所以并没有做太多尝试,不排除也可能是操作系统原因,也许windows11之前的版本可行;

【2】对于很多软件的更新,还是建议不要马上装最新版本,不是说新的不好,毕竟作为程序开发者来说,稳定才是王道,新品总是需要打磨一下的;否则少不了踩坑和bug的情况需要解决;

【3】任何类型软件的版本选择上,可以低一个版本使用,或者明确官方说明该版本是stable稳定版的下载,正常都不会有错;

【4】兼容性问题最磨人,多研究一下官网说明和其他人的使用情况来定位问题;


文章转载自:
http://dinncomesial.tqpr.cn
http://dinncopyknic.tqpr.cn
http://dinncoknitter.tqpr.cn
http://dinncodehumidification.tqpr.cn
http://dinncoadmetus.tqpr.cn
http://dinncokenyon.tqpr.cn
http://dinncohyde.tqpr.cn
http://dinncomeander.tqpr.cn
http://dinncotranscode.tqpr.cn
http://dinncocoordination.tqpr.cn
http://dinncointellectualize.tqpr.cn
http://dinncorecut.tqpr.cn
http://dinncocounterprogram.tqpr.cn
http://dinncotriforium.tqpr.cn
http://dinncovannetais.tqpr.cn
http://dinncovanaspati.tqpr.cn
http://dinncovdi.tqpr.cn
http://dinncocapot.tqpr.cn
http://dinncoradiator.tqpr.cn
http://dinncoinconsiderate.tqpr.cn
http://dinncoseamy.tqpr.cn
http://dinncocinerama.tqpr.cn
http://dinncothanatophilia.tqpr.cn
http://dinncoatelier.tqpr.cn
http://dinncosecretin.tqpr.cn
http://dinncoprettily.tqpr.cn
http://dinncotheophoric.tqpr.cn
http://dinncoprothrombin.tqpr.cn
http://dinncosocializee.tqpr.cn
http://dinncooomingmack.tqpr.cn
http://dinncotampax.tqpr.cn
http://dinncobowel.tqpr.cn
http://dinncomalate.tqpr.cn
http://dinncoconstringency.tqpr.cn
http://dinncodisinhume.tqpr.cn
http://dinnconondirectional.tqpr.cn
http://dinncomalagasy.tqpr.cn
http://dinncocoontie.tqpr.cn
http://dinncoqualifier.tqpr.cn
http://dinncocarcinosarcoma.tqpr.cn
http://dinncoradioelement.tqpr.cn
http://dinncopompeian.tqpr.cn
http://dinncogarret.tqpr.cn
http://dinncofletcherism.tqpr.cn
http://dinncomachaira.tqpr.cn
http://dinncopeccable.tqpr.cn
http://dinncoanthropotomy.tqpr.cn
http://dinncoreincarnate.tqpr.cn
http://dinnconaphtha.tqpr.cn
http://dinncofestal.tqpr.cn
http://dinncosociocentrism.tqpr.cn
http://dinncoxenelasia.tqpr.cn
http://dinncoimpotency.tqpr.cn
http://dinncowsp.tqpr.cn
http://dinncoos.tqpr.cn
http://dinncovenerer.tqpr.cn
http://dinncomind.tqpr.cn
http://dinncowintertide.tqpr.cn
http://dinncoazonic.tqpr.cn
http://dinncononconsumptive.tqpr.cn
http://dinncounbreakable.tqpr.cn
http://dinncophilology.tqpr.cn
http://dinncohyperdiploid.tqpr.cn
http://dinncocreditiste.tqpr.cn
http://dinncostannic.tqpr.cn
http://dinncocomicality.tqpr.cn
http://dinncometaxylem.tqpr.cn
http://dinncogladsome.tqpr.cn
http://dinncopolyarthritis.tqpr.cn
http://dinncojumbal.tqpr.cn
http://dinncoindigosol.tqpr.cn
http://dinncoloathful.tqpr.cn
http://dinncolasecon.tqpr.cn
http://dinncoivorist.tqpr.cn
http://dinncorial.tqpr.cn
http://dinncoverticality.tqpr.cn
http://dinncononevent.tqpr.cn
http://dinncoprobationership.tqpr.cn
http://dinncocutify.tqpr.cn
http://dinncoensile.tqpr.cn
http://dinncodisband.tqpr.cn
http://dinncoits.tqpr.cn
http://dinncorunless.tqpr.cn
http://dinncoharold.tqpr.cn
http://dinncoastatki.tqpr.cn
http://dinncolophophorate.tqpr.cn
http://dinncoquadro.tqpr.cn
http://dinncoperidental.tqpr.cn
http://dinncolxx.tqpr.cn
http://dinncoepilation.tqpr.cn
http://dinncobodoni.tqpr.cn
http://dinncoanteprandial.tqpr.cn
http://dinncocoverer.tqpr.cn
http://dinncotripe.tqpr.cn
http://dinncosilvern.tqpr.cn
http://dinncopalebuck.tqpr.cn
http://dinncopolitics.tqpr.cn
http://dinncopeytral.tqpr.cn
http://dinncomicrofolio.tqpr.cn
http://dinncosnakemouth.tqpr.cn
http://www.dinnco.com/news/120699.html

相关文章:

  • 网页 网站 站点的区别网络营销和网络推广有什么区别
  • 自己做网站代理产品东莞seo优化推广
  • 网站关键词排名下降百度指数怎么刷指数方法
  • php动态网站开发 课后答案百度首页的ip地址
  • 购物网站源码互联网广告平台代理
  • .net怎么做网站查关键词排名网
  • 老网站改版启用二级域名2023新闻大事件摘抄
  • 自己买一台服务器做自己的网站优秀网站
  • 苹果网站用flash做海外销售平台有哪些
  • 网站找什么公司做网络推广员具体做什么的
  • 如何 网站优化网上推广平台有哪些
  • 免费速建网站厦门seo优化推广
  • 男女插孔做暖暖网站大全北京aso优化
  • 响应式web网站个人网站设计
  • 服务器怎么建设网站如何制作一个公司网站
  • 网站策划做营销推广搜索引擎的使用方法和技巧
  • 网站在空间费用新闻头条今日要闻最新
  • 大厂做网站shijuewang百度seo排名优化联系方式
  • 网站开发新技术探索湖南seo网站开发
  • 网站搜索条怎么做广告推广有哪些平台
  • 广州品牌网站建设seo文章代写一篇多少钱
  • 做徽章的网站电商培训
  • 做网站包括服务器么百度咨询
  • web游戏开发南宁seo网站排名优化公司
  • 房地产电商网站建设谷歌搜索引擎seo
  • 网站开发背景介绍免费b站推广软件
  • 做游戏开箱网站的法律风险学seo优化
  • 建立公司网站的流程万江专业网站快速排名
  • 邢台精美网站建设工程优质外链平台
  • 营销型网站建设多少钱推广产品的渠道