Skip to content

Commit eb94c91

Browse files
committed
Fix links and tags
1 parent 92b148e commit eb94c91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_posts/2023-09-19-virtual-thread-1.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ Virtual threads are not a silver bullet, and while they can improve the concurre
355355
It is the first part (and the most boring, hopefully) post of a multiple-post series.
356356
Next, we will cover:
357357

358-
- https://quarkus.io/blog/virtual-thread-2/[How to write a crud application using virtual threads]
358+
- https://quarkus.io/blog/virtual-threads-2/[How to write a crud application using virtual threads]
359359
- How to test virtual threads applications (_to be published_)
360360
- How to build a native executable when using virtual threads (_to be published_)
361361
- How to containerize an application using virtual threads (in JVM mode) (_to be published_)

_posts/2023-09-23-virtual-threads-2.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: post
33
title: 'Writing CRUD applications using virtual threads'
44
date: 2023-09-25
5-
tags: virtual-threads, reactive, crud, database
5+
tags: virtual-threads reactive crud database
66
synopsis: 'Describe how you can implement a CRUD / RESTFul application using virtual threads and Quarkus.'
77
author: cescoffier
88
---
@@ -124,7 +124,7 @@ The application uses:
124124
- The Narayana transaction manager - to run our code inside transactions.
125125
- The PostgreSQL driver - as we use a PostgreSQL database
126126

127-
The code is similar to a regular implementation of a CRUD service with Quarkus, except for https://github.com/quarkusio/virtual-threads-demos/blob/main/crud-example/src/main/java/org/acme/crud/TodoResource.java#L17[one line].
127+
The code is similar to a regular implementation of a CRUD service with Quarkus, except for https://github.com/quarkusio/virtual-threads-demos/blob/main/crud-example/src/main/java/org/acme/crud/TodoResource.java#L22[one line].
128128
We added the `@RunOnVirtualThread` annotation on the resource class (line 17).
129129
It instructs Quarkus to invoke these methods on virtual threads instead of regular platform threads (learn more about the difference in the https://quarkus.io/blog/virtual-thread-1/[previous blog post]), including `@Transactional` methods.
130130

0 commit comments

Comments
 (0)