Skip to content

Commit a0ed49a

Browse files
committed
Jakarta Namespace - jakarta.xml.bind module name - minor fixes
1 parent 41e75ee commit a0ed49a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/jre11/java/module-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
exports com.guicedee.guicedservlets.rest.services;
1515
exports com.guicedee.guicedservlets.rest.internal;
1616

17-
requires java.xml.bind;
17+
requires jakarta.xml.bind;
1818

1919
requires java.xml;
2020
requires transitive com.fasterxml.jackson.jaxrs.json;

src/main/java/com/guicedee/guicedservlets/rest/services/JaxRsPreStartup.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ private void scanClassesIn() {
4343
.value();
4444
JaxRsPackageRegistrations.getPackageNames()
4545
.add(classInfo.getPackageName());
46-
log.fine("Mapping Jax-RS Application - " + classInfo.loadClass()
46+
log.config("Mapping Jax-RS Application - " + classInfo.loadClass()
4747
.getCanonicalName() + " to " + path);
4848

4949
getApplications().add(classInfo.loadClass()
@@ -60,7 +60,7 @@ private void scanClassesIn() {
6060
.getAnnotation(Path.class)
6161
.value();
6262

63-
log.fine("Mapping Jax-RS Path - " + classInfo.loadClass()
63+
log.config("Mapping Jax-RS Path - " + classInfo.loadClass()
6464
.getCanonicalName() + " to " + path);
6565
JaxRsPackageRegistrations.getPackageNames()
6666
.add(classInfo.getPackageName());
@@ -81,7 +81,7 @@ private void scanClassesIn() {
8181
continue;
8282
}
8383

84-
log.fine("Mapping Provider - " + classInfo.loadClass()
84+
log.config("Mapping Provider - " + classInfo.loadClass()
8585
.getCanonicalName());
8686
JaxRsPackageRegistrations.getPackageNames()
8787
.add(classInfo.getPackageName());

0 commit comments

Comments
 (0)