您好,登錄后才能下訂單哦!
今天小編給大家分享一下Quarkus怎么搭建debug環(huán)境的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。
下面介紹三種創(chuàng)建Quarkus項(xiàng)目的方式
1、創(chuàng)建maven工程,這個(gè)不多贅述,是個(gè)java程序員都會(huì)的
2、添加Quarkus依賴,下面貼出基本的依賴
<properties> <quarkus-plugin.version>1.6.0.Final</quarkus-plugin.version> <quarkus.platform.version>1.6.0.Final</quarkus.platform.version> <surefire-plugin.version>2.22.1</surefire-plugin.version> <compiler-plugin.version>3.8.0</compiler-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-bom</artifactId> <version>${quarkus.platform.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-resteasy-jsonb</artifactId> </dependency> <!-- Testing: --> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${compiler-plugin.version}</version> <configuration> <source>1.8</source> <target>1.8</target> <!-- the parameters=true option is critical so that RESTEasy works fine --> <parameters>true</parameters> </configuration> </plugin> <plugin> <!-- you need this specific version to integrate with the other build helpers --> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire-plugin.version}</version> <configuration> <systemPropertyVariables> <java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager> <maven.home>${maven.home}</maven.home> </systemPropertyVariables> </configuration> </plugin> <plugin> <!-- This is what injects the magic Quarkus bytecode --> <groupId>io.quarkus</groupId> <artifactId>quarkus-maven-plugin</artifactId> <version>${quarkus-plugin.version}</version> <executions> <execution> <goals> <goal>build</goal> </goals> </execution> </executions> </plugin> </plugins> </build>
用法和spring的https://start.spring.io/一樣。填好你的maven基礎(chǔ)信息,選好依賴就可以下載工程了
IDEA里已經(jīng)支持創(chuàng)建Quarkus項(xiàng)目了,和spring boot的原理一樣,也是基于https://code.quarkus.io/來的,所以操作的方式和網(wǎng)頁(yè)上一樣,如:
@Produces(MediaType.TEXT_PLAIN) @Path("/hello") public class HelloResource { @GET @Path("/{name}") public String hello(@PathParam("name") String name) { return "hello" + name; } }
Quarkus基于標(biāo)準(zhǔn)的jax-rs規(guī)范來寫web的,當(dāng)然,它也擴(kuò)展了spring web的@Controller的方式,這個(gè)后面會(huì)介紹
1、通過運(yùn)行 mvn quarkus:dev,可以啟動(dòng)應(yīng)用,啟動(dòng)應(yīng)用后,會(huì)發(fā)現(xiàn)打印了:
Listening for transport dt_socket at address: 5005
說明開啟了5005調(diào)試端口,在IDEA中,可以通過
run-》Attach to process
來直接連接這個(gè)端口進(jìn)行調(diào)試
2、可以新建一個(gè)main方法,直接debug模式啟動(dòng),來進(jìn)行運(yùn)行和調(diào)試,如:
@QuarkusMain public class Main { public static void main(String ... args) { Quarkus.run(args); } }
以上就是“Quarkus怎么搭建debug環(huán)境”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。