AIR 配置文件(*-app.xml)说明

本文介绍Adobe AIR应用程序配置文件的详细内容,包括应用标识符、版本、初始窗口设置等关键元素,帮助开发者正确配置AIR应用。
AIR 配置文件(*-app .xml )说明

AIR安装配置文件注释.

 

Xml 代码
  1. <? xml   version = "1.0"   encoding = "UTF-8" ?>   
  2. < application   xmlns = "http://ns.adobe.com/air/application/1.0" >    
  3.   
  4.     <!-- The application identifier string, unique to this application. Required. -->   
  5.     < id > AIRTest1 </ id > <!-- 软件ID,当安装时系统将会检测同一ID软件版本,版本高的即做更新操作 -->    
  6.   
  7.     <!-- Used as the filename for the application. Required. -->   
  8.     < filename > AIRTest_filename </ filename > <!-- 安装界面中 Application: -->    
  9.   
  10.     <!-- The name that is displayed in the AIR application installer. Optional. -->   
  11.     < name > AIRTest_name </ name > <!-- 桌面快捷方程式及窗口和系统控制面板添加程序中名称 -->    
  12.   
  13.     <!-- An application version designator (such as "v1", "2.5", or "Alpha 1"). Required. -->   
  14.     < version > 1.0 </ version > <!-- 软件版本 -->    
  15.   
  16.     <!-- Description, displayed in the AIR application installer. Optional. -->   
  17.     < description > AIRTest_description </ description > <!-- 安装第二个界面中的 description -->    
  18.   
  19.     <!-- Copyright information. Optional -->   
  20.     < copyright > AIRTest_copyright </ copyright >    
  21.   
  22.     <!-- Settings for the application's initial window. Required. -->   
  23.     < initialWindow >   
  24.         <!-- The main SWF or HTML file of the application. Required. -->   
  25.         <!-- Note: In Flex  Builder, the SWF reference is set automatically. -->   
  26.         < content > [This value will be overwritten by Flex  Builder in the output app .xml ] </ content >   
  27.         <!-- The title of the main window. Optional. -->   
  28.         < title > AIRTest_title </ title > <!-- 窗体标题,当此处为注释状态时取 name标签中内容 -->    
  29.   
  30.         <!-- The type of system chrome to use (either "standard" or "none"). Optional. Default standard. -->   
  31.         < systemChrome > none </ systemChrome > <!-- standard为标准窗体,none 为圆滑窗体 -->    
  32.   
  33.         <!-- Whether the window is transparent. Only applicable when systemChrome is false. Optional. Default false. -->   
  34.         < transparent > true </ transparent > <!-- 背景是否透明 -->    
  35.   
  36.         <!-- Whether the window is initially visible. Optional. Default false. -->   
  37.         < visible > true </ visible > <!-- 窗体初始化的时候是否可见 -->    
  38.   
  39.         <!-- Whether the user can minimize the window. Optional. Default true. -->   
  40.         < minimizable > true </ minimizable > <!-- 是否允许最小化 -->    
  41.   
  42.         <!-- Whether the user can maximize the window. Optional. Default true. -->   
  43.         <!-- <maximizable></maximizable> --> <!-- 是否允许最大化 -->    
  44.   
  45.         <!-- Whether the user can resize the window. Optional. Default true. -->   
  46.         <!-- <resizable></resizable> --> <!-- 是否允许缩放窗体 -->    
  47.   
  48.         <!-- The window's initial width. Optional. -->   
  49.         <!-- <width></width> --> <!-- 窗体宽 -->    
  50.   
  51.         <!-- The window's initial height. Optional. -->   
  52.         <!-- <height></height> --> <!-- 窗体高 -->    
  53.   
  54.         <!-- The window's initial x position. Optional. -->   
  55.         <!-- <x></x> --> <!-- 窗体X位置坐标 -->    
  56.   
  57.         <!-- The window's initial y position. Optional. -->   
  58.         <!-- <y></y> --> <!-- 窗体Y位置坐标 -->    
  59.   
  60.         <!-- The window's minimum size, specified as a width/height pair, such as "400 200". Optional. -->   
  61.         <!-- <minSize></minSize> --> <!-- 窗体最小化值 -->    
  62.   
  63.         <!-- The window's initial maximum size, specified as a width/height pair, such as "1600 1200". Optional. -->   
  64.         <!-- <maxSize></maxSize> --> <!-- 窗体最大化值 -->   
  65.     </ initialWindow >    
  66.   
  67.     <!-- The subpath of the standard default installation location to use. Optional. -->   
  68.     < installFolder > AIRInstrallField/AIR </ installFolder > <!-- 默认安装路径 C:/Program Files/AIRInstrallField/AIR -->    
  69.   
  70.     <!-- The subpath of the Windows Start/Programs menu to use. Optional. -->   
  71.     < programMenuFolder > AIRTest_programMenuFolder </ programMenuFolder > <!-- 开始/程序 快捷方程式所在文件夹 -->    
  72.   
  73.     <!-- The icon the system uses for the application. For at least one resolution,  
  74.          specify the path to a PNG file included in the AIR package. Optional. -->   
  75.     <!-- 图标的大小必须和标签中标写的尺寸一致 -->   
  76.     < icon >   
  77.         < image16x16 > icons/logo.png </ image16x16 > <!-- 系统菜单中及系统控制面板添加程序中的图标 -->   
  78.         < image32x32 > icons/logo_32.png </ image32x32 > <!-- 桌面图标,窗口图标 -->   
  79.         < image48x48 > icons/logo_48.png </ image48x48 > <!-- 安装目录EXE文件图标 -->   
  80.         < image128x128 > icons/logo_128.png </ image128x128 > <!-- 未知 -->   
  81.     </ icon >    
  82.   
  83.     <!-- Whether the application handles the update when a user double-clicks an update version  
  84.     of the AIR file (true), or the default AIR application installer handles the update (false).  
  85.     Optional. Default false. -->   
  86.     <!-- <customUpdateUI></customUpdateUI> --> <!-- 是否为同一版本的时候双击直接更新 -->   
  87.     <!-- Whether the application can be launched when the user clicks a link in a web browser.  
  88.     Optional. Default false. -->   
  89.     <!-- <allowBrowserInvocation></allowBrowserInvocation> --> <!-- 是否应用程序可以通过浏览器激活 -->    
  90.   
  91.     <!-- Listing of file types for which the application can register. Optional. -->   
  92.     <!-- <fileTypes> -->    
  93.   
  94.         <!-- Defines one file type. Optional. -->   
  95.         <!-- <fileType> -->    
  96.   
  97.             <!-- The name that the system displays for the registered file type. Required. -->   
  98.             <!-- <name></name> -->    
  99.   
  100.             <!-- The extension to register. Required. -->   
  101.             <!-- <extension></extension> -->   
  102.             <!-- The description of the file type. Optional. -->   
  103.             <!-- <description></description> -->   
  104.             <!-- The MIME type. Optional. -->   
  105.             <!-- <contentType></contentType> -->   
  106.             <!-- The icon to display for the file type. Optional. -->   
  107.             <!-- < icon >   
  108.                 < image16x16 > </ image16x16 >   
  109.                 < image32x32 > </ image32x32 >   
  110.                 < image48x48 > </ image48x48 >   
  111.                 < image128x128 > </ image128x128 >   
  112.             </ icon >  -- >   
  113.         <!-- </fileType> -->   
  114.     <!-- </fileTypes> -->    
  115.   
  116. </ application >   
C:\JAVA\bin\java.exe "-javaagent:C:\Users\胡斯旭~1\AppData\Local\Temp\captureAgent6jars\debugger-agent.jar=file:///C:/Users/%E8%83%A1%E6%96%AF%E6%97%AD~1/AppData/Local/Temp/capture14953187436857269592.props" -ea "-javaagent:C:\Users\胡斯旭~1\AppData\Local\Temp\testAgent6jars\intellij.platform.coverage.agent.jar=C:\Users\胡斯旭~1\AppData\Local\Temp\coverage9args" -Didea.coverage.calculate.hits=true -Didea.test.cyclic.buffer.size=1048576 "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA 2025.1.1\lib\idea_rt.jar=60552" -Dkotlinx.coroutines.debug.enable.creation.stack.trace=false -Ddebugger.agent.enable.coroutines=true -Dkotlinx.coroutines.debug.enable.flows.stack.trace=true -Dkotlinx.coroutines.debug.enable.mutable.state.flows.stack.trace=true -Dfile.encoding=UTF-8 -Dsun.stdout.encoding=UTF-8 -Dsun.stderr.encoding=UTF-8 -classpath "C:\Users\胡斯旭Air Force\.m2\repository\org\junit\platform\junit-platform-launcher\1.6.3\junit-platform-launcher-1.6.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apiguardian\apiguardian-api\1.1.0\apiguardian-api-1.1.0.jar;C:\Program Files\JetBrains\IntelliJ IDEA 2025.1.1\lib\idea_rt.jar;C:\Program Files\JetBrains\IntelliJ IDEA 2025.1.1\plugins\junit\lib\junit5-rt.jar;C:\Program Files\JetBrains\IntelliJ IDEA 2025.1.1\plugins\junit\lib\junit-rt.jar;C:\Users\胡斯旭Air Force\Desktop\SpringVue25633智能投顾系统程序\springvue25633zntgxt\java\target\test-classes;C:\Users\胡斯旭Air Force\Desktop\SpringVue25633智能投顾系统程序\springvue25633zntgxt\java\target\classes;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter-websocket\2.3.12.RELEASE\spring-boot-starter-websocket-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-messaging\5.2.15.RELEASE\spring-messaging-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-beans\5.2.15.RELEASE\spring-beans-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-websocket\5.2.15.RELEASE\spring-websocket-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-context\5.2.15.RELEASE\spring-context-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter-jdbc\2.3.12.RELEASE\spring-boot-starter-jdbc-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter\2.3.12.RELEASE\spring-boot-starter-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter-logging\2.3.12.RELEASE\spring-boot-starter-logging-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\ch\qos\logback\logback-classic\1.2.3\logback-classic-1.2.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\ch\qos\logback\logback-core\1.2.3\logback-core-1.2.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apache\logging\log4j\log4j-to-slf4j\2.13.3\log4j-to-slf4j-2.13.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apache\logging\log4j\log4j-api\2.13.3\log4j-api-2.13.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\slf4j\jul-to-slf4j\1.7.30\jul-to-slf4j-1.7.30.jar;C:\Users\胡斯旭Air Force\.m2\repository\jakarta\annotation\jakarta.annotation-api\1.3.5\jakarta.annotation-api-1.3.5.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\yaml\snakeyaml\1.26\snakeyaml-1.26.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\zaxxer\HikariCP\3.4.5\HikariCP-3.4.5.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-jdbc\5.2.15.RELEASE\spring-jdbc-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-tx\5.2.15.RELEASE\spring-tx-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter-web\2.3.12.RELEASE\spring-boot-starter-web-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter-json\2.3.12.RELEASE\spring-boot-starter-json-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jdk8\2.11.4\jackson-datatype-jdk8-2.11.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\fasterxml\jackson\datatype\jackson-datatype-jsr310\2.11.4\jackson-datatype-jsr310-2.11.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\fasterxml\jackson\module\jackson-module-parameter-names\2.11.4\jackson-module-parameter-names-2.11.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter-tomcat\2.3.12.RELEASE\spring-boot-starter-tomcat-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\glassfish\jakarta.el\3.0.3\jakarta.el-3.0.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apache\tomcat\embed\tomcat-embed-websocket\9.0.46\tomcat-embed-websocket-9.0.46.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-web\5.2.15.RELEASE\spring-web-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-webmvc\5.2.15.RELEASE\spring-webmvc-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-aop\5.2.15.RELEASE\spring-aop-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-expression\5.2.15.RELEASE\spring-expression-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\reflections\reflections\0.9.10\reflections-0.9.10.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\javassist\javassist\3.19.0-GA\javassist-3.19.0-GA.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\google\code\findbugs\annotations\2.0.1\annotations-2.0.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-devtools\2.3.12.RELEASE\spring-boot-devtools-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot\2.3.12.RELEASE\spring-boot-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-autoconfigure\2.3.12.RELEASE\spring-boot-autoconfigure-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\microsoft\sqlserver\mssql-jdbc\7.4.1.jre8\mssql-jdbc-7.4.1.jre8.jar;C:\Users\胡斯旭Air Force\.m2\repository\mysql\mysql-connector-java\8.0.25\mysql-connector-java-8.0.25.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\security\spring-security-rsa\1.0.9.RELEASE\spring-security-rsa-1.0.9.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\security\spring-security-crypto\5.3.9.RELEASE\spring-security-crypto-5.3.9.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-core\5.2.15.RELEASE\spring-core-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-jcl\5.2.15.RELEASE\spring-jcl-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\bouncycastle\bcpkix-jdk15on\1.64\bcpkix-jdk15on-1.64.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\bouncycastle\bcprov-jdk15on\1.64\bcprov-jdk15on-1.64.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-starter-test\2.6.4\spring-boot-starter-test-2.6.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-test\2.3.12.RELEASE\spring-boot-test-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\boot\spring-boot-test-autoconfigure\2.3.12.RELEASE\spring-boot-test-autoconfigure-2.3.12.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\jayway\jsonpath\json-path\2.4.0\json-path-2.4.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\net\minidev\json-smart\2.3.1\json-smart-2.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\net\minidev\accessors-smart\2.3.1\accessors-smart-2.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\ow2\asm\asm\5.0.4\asm-5.0.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\jakarta\xml\bind\jakarta.xml.bind-api\2.3.3\jakarta.xml.bind-api-2.3.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\jakarta\activation\jakarta.activation-api\1.2.2\jakarta.activation-api-1.2.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\assertj\assertj-core\3.16.1\assertj-core-3.16.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\hamcrest\hamcrest\2.2\hamcrest-2.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\skyscreamer\jsonassert\1.5.0\jsonassert-1.5.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\vaadin\external\google\android-json\0.0.20131108.vaadin1\android-json-0.0.20131108.vaadin1.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\spring-test\5.2.15.RELEASE\spring-test-5.2.15.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\xmlunit\xmlunit-core\2.7.0\xmlunit-core-2.7.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\javax\servlet\javax.servlet-api\4.0.1\javax.servlet-api-4.0.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\javax\servlet\jstl\1.2\jstl-1.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\google\guava\guava\20.0\guava-20.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apache\tomcat\embed\tomcat-embed-jasper\9.0.46\tomcat-embed-jasper-9.0.46.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apache\tomcat\embed\tomcat-embed-core\9.0.46\tomcat-embed-core-9.0.46.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apache\tomcat\tomcat-annotations-api\9.0.46\tomcat-annotations-api-9.0.46.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apache\tomcat\embed\tomcat-embed-el\9.0.46\tomcat-embed-el-9.0.46.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\eclipse\jdt\ecj\3.18.0\ecj-3.18.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\jsonwebtoken\jjwt-api\0.10.7\jjwt-api-0.10.7.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\jsonwebtoken\jjwt-impl\0.10.7\jjwt-impl-0.10.7.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\jsonwebtoken\jjwt-jackson\0.10.7\jjwt-jackson-0.10.7.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.11.4\jackson-databind-2.11.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.11.4\jackson-annotations-2.11.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.11.4\jackson-core-2.11.4.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\springfox\springfox-swagger-ui\2.9.2\springfox-swagger-ui-2.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\springfox\springfox-spring-web\2.9.2\springfox-spring-web-2.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\springfox\springfox-swagger2\2.9.2\springfox-swagger2-2.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\swagger\swagger-annotations\1.5.20\swagger-annotations-1.5.20.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\swagger\swagger-models\1.5.20\swagger-models-1.5.20.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\springfox\springfox-spi\2.9.2\springfox-spi-2.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\springfox\springfox-core\2.9.2\springfox-core-2.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\springfox\springfox-schema\2.9.2\springfox-schema-2.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\io\springfox\springfox-swagger-common\2.9.2\springfox-swagger-common-2.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\fasterxml\classmate\1.5.1\classmate-1.5.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\slf4j\slf4j-api\1.7.30\slf4j-api-1.7.30.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\plugin\spring-plugin-core\1.2.0.RELEASE\spring-plugin-core-1.2.0.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\springframework\plugin\spring-plugin-metadata\1.2.0.RELEASE\spring-plugin-metadata-1.2.0.RELEASE.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\mapstruct\mapstruct\1.2.0.Final\mapstruct-1.2.0.Final.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\jntoo\db-query-spring-boot-starter\1.2.18\db-query-spring-boot-starter-1.2.18.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\jntoo\db-query-spring-boot-autoconfigure\1.2.18\db-query-spring-boot-autoconfigure-1.2.18.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\jntoo\db-query\1.2.18\db-query-1.2.18.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\alibaba\fastjson\1.2.78\fastjson-1.2.78.jar;C:\Users\胡斯旭Air Force\.m2\repository\commons-fileupload\commons-fileupload\1.3.1\commons-fileupload-1.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\commons-io\commons-io\2.6\commons-io-2.6.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\baomidou\mybatis-plus-boot-starter\3.4.3.1\mybatis-plus-boot-starter-3.4.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\baomidou\mybatis-plus\3.4.3.1\mybatis-plus-3.4.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\baomidou\mybatis-plus-extension\3.4.3.1\mybatis-plus-extension-3.4.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\baomidou\mybatis-plus-core\3.4.3.1\mybatis-plus-core-3.4.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\baomidou\mybatis-plus-annotation\3.4.3.1\mybatis-plus-annotation-3.4.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\github\jsqlparser\jsqlparser\4.0\jsqlparser-4.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\mybatis\mybatis\3.5.7\mybatis-3.5.7.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\mybatis\mybatis-spring\2.0.6\mybatis-spring-2.0.6.jar;C:\Users\胡斯旭Air Force\.m2\repository\cn\hutool\hutool-all\5.7.5\hutool-all-5.7.5.jar;C:\Users\胡斯旭Air Force\.m2\repository\jexcelapi\jxl\2.4.2\jxl-2.4.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\ch\hsr\geohash\1.4.0\geohash-1.4.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\github\penggle\kaptcha\2.3.2\kaptcha-2.3.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\com\jhlabs\filters\2.0.235-1\filters-2.0.235-1.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\junit\jupiter\junit-jupiter\5.9.2\junit-jupiter-5.9.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\junit\jupiter\junit-jupiter-params\5.6.3\junit-jupiter-params-5.6.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\junit\jupiter\junit-jupiter-api\5.8.2\junit-jupiter-api-5.8.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\opentest4j\opentest4j\1.2.0\opentest4j-1.2.0.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\junit\platform\junit-platform-commons\1.6.3\junit-platform-commons-1.6.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\apiguardian\apiguardian-api\1.1.2\apiguardian-api-1.1.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\junit\jupiter\junit-jupiter-engine\5.8.2\junit-jupiter-engine-5.8.2.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\junit\platform\junit-platform-engine\1.6.3\junit-platform-engine-1.6.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\mockito\mockito-core\5.3.1\mockito-core-5.3.1.jar;C:\Users\胡斯旭Air Force\.m2\repository\net\bytebuddy\byte-buddy\1.10.22\byte-buddy-1.10.22.jar;C:\Users\胡斯旭Air Force\.m2\repository\net\bytebuddy\byte-buddy-agent\1.10.22\byte-buddy-agent-1.10.22.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\objenesis\objenesis\3.3\objenesis-3.3.jar;C:\Users\胡斯旭Air Force\.m2\repository\org\mockito\mockito-junit-jupiter\5.7.0\mockito-junit-jupiter-5.7.0.jar" com.intellij.rt.junit.JUnitStarter -ideVersion5 -junit5 com.spboot.app.service.CelveyunxingServiceTest [2025.07.01 09:02:50] (Coverage ERROR): Failed to parse agent arguments: java.lang.IllegalArgumentException: At least 5 arguments expected but 1 found. 'C:\Users\ºú˹Ðñ~1\AppData\Local\Temp\coverage9arg' Expected arguments are: 0) data file to save coverage result 1) a flag to enable tracking per test coverage 2) a flag to calculate coverage for unloaded classes 3) a flag to use data file as initial coverage, also use it if several parallel processes are to write into one file 4) a flag to run line coverage or branch coverage otherwise 进程已结束,退出代码为 1
最新发布
07-02
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值