Skip to content

Commit e1dd27e

Browse files
committedJan 12, 2024
Sync documentation of main branch
1 parent 739b2e2 commit e1dd27e

File tree

5 files changed

+54
-1
lines changed

5 files changed

+54
-1
lines changed
 

‎_generated-doc/main/config/all-configuration-roots-generated-doc/io.quarkus.deployment.pkg.PackageConfig

+1-1
Large diffs are not rendered by default.

‎_generated-doc/main/config/quarkus-all-config.adoc

+17
Original file line numberDiff line numberDiff line change
@@ -53809,6 +53809,23 @@ endif::add-copy-button-to-env-var[]
5380953809
|`jar`
5381053810

5381153811

53812+
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus.package.compress-jar]]`link:#quarkus-core_quarkus.package.compress-jar[quarkus.package.compress-jar]`
53813+
53814+
53815+
[.description]
53816+
--
53817+
Whether the created jar will be compressed. This setting is not used when building a native image
53818+
53819+
ifdef::add-copy-button-to-env-var[]
53820+
Environment variable: env_var_with_copy_button:+++QUARKUS_PACKAGE_COMPRESS_JAR+++[]
53821+
endif::add-copy-button-to-env-var[]
53822+
ifndef::add-copy-button-to-env-var[]
53823+
Environment variable: `+++QUARKUS_PACKAGE_COMPRESS_JAR+++`
53824+
endif::add-copy-button-to-env-var[]
53825+
--|boolean
53826+
|`false`
53827+
53828+
5381253829
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus.package.manifest.add-implementation-entries]]`link:#quarkus-core_quarkus.package.manifest.add-implementation-entries[quarkus.package.manifest.add-implementation-entries]`
5381353830

5381453831

‎_generated-doc/main/config/quarkus-core.adoc

+17
Original file line numberDiff line numberDiff line change
@@ -1843,6 +1843,23 @@ endif::add-copy-button-to-env-var[]
18431843
|`jar`
18441844

18451845

1846+
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus.package.compress-jar]]`link:#quarkus-core_quarkus.package.compress-jar[quarkus.package.compress-jar]`
1847+
1848+
1849+
[.description]
1850+
--
1851+
Whether the created jar will be compressed. This setting is not used when building a native image
1852+
1853+
ifdef::add-copy-button-to-env-var[]
1854+
Environment variable: env_var_with_copy_button:+++QUARKUS_PACKAGE_COMPRESS_JAR+++[]
1855+
endif::add-copy-button-to-env-var[]
1856+
ifndef::add-copy-button-to-env-var[]
1857+
Environment variable: `+++QUARKUS_PACKAGE_COMPRESS_JAR+++`
1858+
endif::add-copy-button-to-env-var[]
1859+
--|boolean
1860+
|`false`
1861+
1862+
18461863
a|icon:lock[title=Fixed at build time] [[quarkus-core_quarkus.package.manifest.add-implementation-entries]]`link:#quarkus-core_quarkus.package.manifest.add-implementation-entries[quarkus.package.manifest.add-implementation-entries]`
18471864

18481865

‎_generated-doc/main/config/quarkus-package-pkg-package-config.adoc

+17
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,23 @@ endif::add-copy-button-to-env-var[]
2929
|`jar`
3030

3131

32+
a|icon:lock[title=Fixed at build time] [[quarkus-package-pkg-package-config_quarkus.package.compress-jar]]`link:#quarkus-package-pkg-package-config_quarkus.package.compress-jar[quarkus.package.compress-jar]`
33+
34+
35+
[.description]
36+
--
37+
Whether the created jar will be compressed. This setting is not used when building a native image
38+
39+
ifdef::add-copy-button-to-env-var[]
40+
Environment variable: env_var_with_copy_button:+++QUARKUS_PACKAGE_COMPRESS_JAR+++[]
41+
endif::add-copy-button-to-env-var[]
42+
ifndef::add-copy-button-to-env-var[]
43+
Environment variable: `+++QUARKUS_PACKAGE_COMPRESS_JAR+++`
44+
endif::add-copy-button-to-env-var[]
45+
--|boolean
46+
|`false`
47+
48+
3249
a|icon:lock[title=Fixed at build time] [[quarkus-package-pkg-package-config_quarkus.package.manifest.add-implementation-entries]]`link:#quarkus-package-pkg-package-config_quarkus.package.manifest.add-implementation-entries[quarkus.package.manifest.add-implementation-entries]`
3350

3451

‎_versions/main/guides/mongodb-panache.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,8 @@ MongoDB offers ACID transactions since version 4.0.
770770

771771
To use them with MongoDB with Panache you need to annotate the method that starts the transaction with the `@Transactional` annotation.
772772

773+
Inside methods annotated with `@Transactional` you can access the `ClientSession` with `Panache.getClientSession()` if needed.
774+
773775
In MongoDB, a transaction is only possible on a replicaset,
774776
luckily our xref:mongodb.adoc#dev-services[Dev Services for MongoDB] setups a single node replicaset so it is compatible with transactions.
775777

0 commit comments

Comments
 (0)
Please sign in to comment.