This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new ba7449bbc Update new docs
ba7449bbc is described below
commit ba7449bbc8453340cdea54f463086c6e1725bc2d
Author: James Bognar <[email protected]>
AuthorDate: Wed Sep 17 16:07:04 2025 -0400
Update new docs
---
juneau-docs-poc/docs/topics/02.13.01.BeanDictionaryBasics.md | 2 +-
juneau-docs-poc/docs/topics/02.17.00.ReadingContinuousStreams.md | 2 +-
juneau-docs-poc/docs/topics/02.20.00.PojoCategories.md | 8 ++++----
.../docs/topics/02.21.01.SimpleVariableLanguageBasics.md | 2 +-
juneau-docs-poc/docs/topics/02.21.03.VarResolvers.md | 2 +-
juneau-docs-poc/docs/topics/02.32.03.OpenApiSerializers.md | 4 ++--
juneau-docs-poc/docs/topics/02.32.04.OpenApiParsers.md | 2 +-
juneau-docs-poc/docs/topics/05.05.01.VariableBasics.md | 2 +-
juneau-docs-poc/docs/topics/05.06.00.ModdedEntries.md | 4 ++--
juneau-docs-poc/docs/topics/05.09.00.Listeners.md | 2 +-
juneau-docs-poc/docs/topics/05.12.00.ConfigStores.md | 2 +-
juneau-docs-poc/docs/topics/08.12.00.ConfigurationFiles.md | 4 ++--
juneau-docs-poc/docs/topics/08.13.00.SvlVariables.md | 4 ++--
juneau-docs-poc/docs/topics/08.18.04.HtmlPredefinedWidgets.md | 2 +-
juneau-docs-poc/docs/topics/08.25.00.ResponseProcessors.md | 4 ++--
juneau-docs-poc/docs/topics/10.04.00.RequestContent.md | 2 +-
juneau-docs-poc/docs/topics/10.11.00.LoggingAndDebugging.md | 4 ++--
juneau-docs-poc/docs/topics/12.03.00.LifecycleMethods.md | 4 ++--
juneau-docs-poc/docs/topics/12.06.00.Config.md | 4 ++--
juneau-docs-poc/docs/topics/12.09.00.ConsoleCommands.md | 2 +-
juneau-docs-poc/docs/topics/13.03.00.LifecycleMethods.md | 2 +-
21 files changed, 32 insertions(+), 32 deletions(-)
diff --git a/juneau-docs-poc/docs/topics/02.13.01.BeanDictionaryBasics.md
b/juneau-docs-poc/docs/topics/02.13.01.BeanDictionaryBasics.md
index dd666e6db..6fc449134 100644
--- a/juneau-docs-poc/docs/topics/02.13.01.BeanDictionaryBasics.md
+++ b/juneau-docs-poc/docs/topics/02.13.01.BeanDictionaryBasics.md
@@ -121,4 +121,4 @@ However, they must be unique within a dictionary.
The following reserved words cannot be used as type names: `object`, `array`,
`number`, `boolean`, `null`.
Serialized type names are DISABLED by default.
-They must be enabled on the serializer using the
[Builder#addBeanTypes()]({{API_DOCS}}/org/apache/juneau/serializer/Serializer/Builder.html#addBeanTypes())
setting.
+They must be enabled on the serializer using the
[Builder.addBeanTypes()]({{API_DOCS}}/org/apache/juneau/serializer/Serializer/Builder.html#addBeanTypes())
setting.
diff --git a/juneau-docs-poc/docs/topics/02.17.00.ReadingContinuousStreams.md
b/juneau-docs-poc/docs/topics/02.17.00.ReadingContinuousStreams.md
index 975d8b890..dd614fcf7 100644
--- a/juneau-docs-poc/docs/topics/02.17.00.ReadingContinuousStreams.md
+++ b/juneau-docs-poc/docs/topics/02.17.00.ReadingContinuousStreams.md
@@ -10,7 +10,7 @@ The following parsers can be configured to read continuous
streams of objects fr
<node-0><java-class>[MsgPackParser]({{API_DOCS}}/org/apache/juneau/msgpack/MsgPackParser.html)</java-class></node-0>
</tree>
-The [JsonParser]({{API_DOCS}}/org/apache/juneau/json/JsonParser.html) and
[UonParser]({{API_DOCS}}/org/apache/juneau/uon/UonParser.html) classes can read
continuous streams by using the
[Builder#unbuffered()]({{API_DOCS}}/org/apache/juneau/parser/Parser/Builder.html#unbuffered())
setting.
+The [JsonParser]({{API_DOCS}}/org/apache/juneau/json/JsonParser.html) and
[UonParser]({{API_DOCS}}/org/apache/juneau/uon/UonParser.html) classes can read
continuous streams by using the
[Builder.unbuffered()]({{API_DOCS}}/org/apache/juneau/parser/Parser/Builder.html#unbuffered())
setting.
This prevents the parsers from using an internal buffer that would read past
the end of the currently parsed POJO.
:::tip Examples
diff --git a/juneau-docs-poc/docs/topics/02.20.00.PojoCategories.md
b/juneau-docs-poc/docs/topics/02.20.00.PojoCategories.md
index 177cf0558..494cda1ac 100644
--- a/juneau-docs-poc/docs/topics/02.20.00.PojoCategories.md
+++ b/juneau-docs-poc/docs/topics/02.20.00.PojoCategories.md
@@ -262,7 +262,7 @@ A separate category exists for POJOs that can be converted
to and from Strings.
These are used in places such as:
- Serializing of POJOs to Strings in the REST client API when no serializers
are registered.
-- Parsing of POJOs from Strings in the REST server API for "text/plain"
requests where "text/plain" is not already mapped to an existing serializer.
+- Parsing of POJOs from Strings in the REST server API for `text/plain`
requests where `text/plain` is not already mapped to an existing serializer.
As a general rule, all POJOs are converted to Strings using the `toString()`
method.
However, there is one exception:
@@ -285,9 +285,9 @@ POJOs are convertible from Strings using any of the
following (matched in the sp
Exceptions exist for the following classes:
- [TimeZone]({{API_DOCS}}/java/util/TimeZone.html) - Uses
[TimeZone.getTimeZone(String)]({{API_DOCS}}/java/util/TimeZone.html#getTimeZone(String))
-- [Locale]({{API_DOCS}}/java/util/Locale.html) - Uses
[Locale.forLanguageTag(String)]({{API_DOCS}}/java/util/Locale.html#forLanguageTag(String))
after replacing '_' with '-'.
-- [Boolean]({{API_DOCS}}/java/lang/Boolean.html) - Blank and "null" are
interpreted as null values.
-- Primitives (except for `void.class`) - Uses the primitive wrapper classes
for instantiating from Strings.
+- [Locale]({{API_DOCS}}/java/util/Locale.html) - Uses
[Locale.forLanguageTag(String)]({{API_DOCS}}/java/util/Locale.html#forLanguageTag(String))
after replacing `_` with `-`.
+- [Boolean]({{API_DOCS}}/java/lang/Boolean.html) - Blank and `"null"` are
interpreted as `null` values.
+- Primitives (except for `void.class`) - Uses the primitive wrapper classes
for instantiating from `Strings`.
### POJOs convertible to/from other types
diff --git
a/juneau-docs-poc/docs/topics/02.21.01.SimpleVariableLanguageBasics.md
b/juneau-docs-poc/docs/topics/02.21.01.SimpleVariableLanguageBasics.md
index 30b1ebf76..9536d4377 100644
--- a/juneau-docs-poc/docs/topics/02.21.01.SimpleVariableLanguageBasics.md
+++ b/juneau-docs-poc/docs/topics/02.21.01.SimpleVariableLanguageBasics.md
@@ -11,7 +11,7 @@ Most variables can be recursively nested within the varKey
(e.g. `$FOO{$BAR{xxx}
The [VarResolver]({{API_DOCS}}/org/apache/juneau/svl/VarResolver.html) class
is used to resolve variables.
-The
[VarResolver#DEFAULT]({{API_DOCS}}/org/apache/juneau/svl/VarResolver.html#DEFAULT)
resolver is a reusable instance of this class configured with the following
basic variables:
+The
[VarResolver.DEFAULT]({{API_DOCS}}/org/apache/juneau/svl/VarResolver.html#DEFAULT)
resolver is a reusable instance of this class configured with the following
basic variables:
<tree>
<node-0><java-class>[SystemPropertiesVar]({{API_DOCS}}/org/apache/juneau/svl/vars/SystemPropertiesVar.html)</java-class>
- `$S{key[,default]}`</node-0>
diff --git a/juneau-docs-poc/docs/topics/02.21.03.VarResolvers.md
b/juneau-docs-poc/docs/topics/02.21.03.VarResolvers.md
index 176387d4d..d8307b535 100644
--- a/juneau-docs-poc/docs/topics/02.21.03.VarResolvers.md
+++ b/juneau-docs-poc/docs/topics/02.21.03.VarResolvers.md
@@ -29,7 +29,7 @@ Beans are accessible through the following method:
<node-0><java-method>[VarResolverSession#getBean(Class)]({{API_DOCS}}/org/apache/juneau/svl/VarResolverSession.html#getBean(Class))</java-method></node-0>
</tree>
-Var resolvers can be cloned and extended by using the
[VarResolver#copy()]({{API_DOCS}}/org/apache/juneau/svl/VarResolver.html#copy())
method.
+Var resolvers can be cloned and extended by using the
[VarResolver.copy()]({{API_DOCS}}/org/apache/juneau/svl/VarResolver.html#copy())
method.
Cloning a resolver will copy it's
[Var]({{API_DOCS}}/org/apache/juneau/svl/Var.html) class names and context
objects.
:::tip Example
diff --git a/juneau-docs-poc/docs/topics/02.32.03.OpenApiSerializers.md
b/juneau-docs-poc/docs/topics/02.32.03.OpenApiSerializers.md
index e87bfe9be..0f19fa79f 100644
--- a/juneau-docs-poc/docs/topics/02.32.03.OpenApiSerializers.md
+++ b/juneau-docs-poc/docs/topics/02.32.03.OpenApiSerializers.md
@@ -130,8 +130,8 @@ Here are the rules of POJO types allowed for various
type/format combinations: T
- `byte[]` (default)
- [InputStream]({{API_DOCS}}/java/io/InputStream.html)
-- [Reader]({{API_DOCS}}/java/io/Reader.html) - Read into String and then
converted using
[String#getBytes()]({{API_DOCS}}/java/lang/String.html#getBytes()).
-- [Object]({{API_DOCS}}/java/lang/Object.html) - Converted to String and then
converted using
[String#getBytes()]({{API_DOCS}}/java/lang/String.html#getBytes()).
+- [Reader]({{API_DOCS}}/java/io/Reader.html) - Read into String and then
converted using
[String.getBytes()]({{API_DOCS}}/java/lang/String.html#getBytes()).
+- [Object]({{API_DOCS}}/java/lang/Object.html) - Converted to String and then
converted using
[String.getBytes()]({{API_DOCS}}/java/lang/String.html#getBytes()).
- Any POJO transformable to a `byte[]` via the following methods:
- `public byte[] toBytes() \{...\}`
diff --git a/juneau-docs-poc/docs/topics/02.32.04.OpenApiParsers.md
b/juneau-docs-poc/docs/topics/02.32.04.OpenApiParsers.md
index 1273d63ec..f1f44c882 100644
--- a/juneau-docs-poc/docs/topics/02.32.04.OpenApiParsers.md
+++ b/juneau-docs-poc/docs/topics/02.32.04.OpenApiParsers.md
@@ -60,7 +60,7 @@ Here are the rules of POJO types allowed for various
type/format combinations: T
<node-0><java-class>[GregorianCalendar]({{API_DOCS}}/java/util/GregorianCalendar.html)</java-class></node-0>
</tree>
-[String]({{API_DOCS}}/java/lang/String.html) - Converted using
[Calendar#toString()]({{API_DOCS}}/java/util/Calendar.html#toString()).
+[String]({{API_DOCS}}/java/lang/String.html) - Converted using
[Calendar.toString()]({{API_DOCS}}/java/util/Calendar.html#toString()).
- [Object]({{API_DOCS}}/java/lang/Object.html) - Returns the default
[Calendar]({{API_DOCS}}/java/util/Calendar.html).
- Any POJO transformable from a
[Calendar]({{API_DOCS}}/java/util/Calendar.html) (via constructors or static
create methods).
diff --git a/juneau-docs-poc/docs/topics/05.05.01.VariableBasics.md
b/juneau-docs-poc/docs/topics/05.05.01.VariableBasics.md
index 341cf5fc8..0cddd2b1e 100644
--- a/juneau-docs-poc/docs/topics/05.05.01.VariableBasics.md
+++ b/juneau-docs-poc/docs/topics/05.05.01.VariableBasics.md
@@ -42,7 +42,7 @@ int sameAsAnInt =
config.get("MySection/sameAsAnInt").asInteger().orElse(null);
ABean bean = config.get("MySection/aBean").as(ABean.class).orElse(null);
```
-By default, `Configs` use the
[VarResolver#DEFAULT]({{API_DOCS}}/org/apache/juneau/svl/VarResolver.html#DEFAULT)
variable resolver
+By default, `Configs` use the
[VarResolver.DEFAULT]({{API_DOCS}}/org/apache/juneau/svl/VarResolver.html#DEFAULT)
variable resolver
which provides support for the following variables and constructs:
-
[SystemPropertiesVar]({{API_DOCS}}/org/apache/juneau/svl/vars/SystemPropertiesVar.html)
- `$S\{key[,default]\}`
diff --git a/juneau-docs-poc/docs/topics/05.06.00.ModdedEntries.md
b/juneau-docs-poc/docs/topics/05.06.00.ModdedEntries.md
index bef7cb16a..da284eeeb 100644
--- a/juneau-docs-poc/docs/topics/05.06.00.ModdedEntries.md
+++ b/juneau-docs-poc/docs/topics/05.06.00.ModdedEntries.md
@@ -34,5 +34,5 @@ Custom encoders can be used to provide your own encoding
support by implementing
<node-1><java-method>[isApplied(String)]({{API_DOCS}}/org/apache/juneau/config/mod/Mod.html#isApplied(String))</java-method></node-1>
</tree>
-Unmodified values are encoded when the file is saved using the
[Config#commit()]({{API_DOCS}}/org/apache/juneau/config/Config.html#commit())
method.
-They can also be encoded immediately by calling
[Config#applyMods()]({{API_DOCS}}/org/apache/juneau/config/Config.html#applyMods())
which can typically be done during JVM startup to immediately encode any
unencoded passwords in the file.
+Unmodified values are encoded when the file is saved using the
[Config.commit()]({{API_DOCS}}/org/apache/juneau/config/Config.html#commit())
method.
+They can also be encoded immediately by calling
[Config.applyMods()]({{API_DOCS}}/org/apache/juneau/config/Config.html#applyMods())
which can typically be done during JVM startup to immediately encode any
unencoded passwords in the file.
diff --git a/juneau-docs-poc/docs/topics/05.09.00.Listeners.md
b/juneau-docs-poc/docs/topics/05.09.00.Listeners.md
index fb5040165..81a272fcb 100644
--- a/juneau-docs-poc/docs/topics/05.09.00.Listeners.md
+++ b/juneau-docs-poc/docs/topics/05.09.00.Listeners.md
@@ -32,7 +32,7 @@ The
[ConfigEvent]({{API_DOCS}}/org/apache/juneau/config/event/ConfigEvent.html)
The listener method is triggered:
-- After
[Config#commit()]({{API_DOCS}}/org/apache/juneau/config/Config.html#commit())
is called.
+- After
[Config.commit()]({{API_DOCS}}/org/apache/juneau/config/Config.html#commit())
is called.
- When the file changes on the file system.
In both cases, the listener is triggered after the changes have been committed.
diff --git a/juneau-docs-poc/docs/topics/05.12.00.ConfigStores.md
b/juneau-docs-poc/docs/topics/05.12.00.ConfigStores.md
index f67df2511..342db4047 100644
--- a/juneau-docs-poc/docs/topics/05.12.00.ConfigStores.md
+++ b/juneau-docs-poc/docs/topics/05.12.00.ConfigStores.md
@@ -63,6 +63,6 @@ The store is defined on the `Config` object via the following
setting:
Config config =
Config.create("MyConfig.cfg").store(ConfigMemoryStore.DEFAULT).build();
```
-The default store used is
[FileStore#DEFAULT]({{API_DOCS}}/org/apache/juneau/config/store/FileStore.html#DEFAULT)
which defines
+The default store used is
[FileStore.DEFAULT]({{API_DOCS}}/org/apache/juneau/config/store/FileStore.html#DEFAULT)
which defines
the execution directory as the file system directory to store and retrieve
files.
:::
\ No newline at end of file
diff --git a/juneau-docs-poc/docs/topics/08.12.00.ConfigurationFiles.md
b/juneau-docs-poc/docs/topics/08.12.00.ConfigurationFiles.md
index edd0a95aa..bad64fe70 100644
--- a/juneau-docs-poc/docs/topics/08.12.00.ConfigurationFiles.md
+++ b/juneau-docs-poc/docs/topics/08.12.00.ConfigurationFiles.md
@@ -74,7 +74,7 @@ public class MyResource {...}
Note that properties files are a subset of functionality of INI files (they're
basically just INI files with a single default section).
It's therefore possible to use INI-style syntax such as sections in your
`application.properties` file.
Once a config file has been associated with a REST resource, it can be
accessed through one of the following:
-[Builder#getConfig()]({{API_DOCS}}/org/apache/juneau/rest/RestContext/Builder.html#getConfig())
method. It can also be access by passing in a
[Config]({{API_DOCS}}/org/apache/juneau/config/Config.html) bean to any of your
+[Builder.getConfig()]({{API_DOCS}}/org/apache/juneau/rest/RestContext/Builder.html#getConfig())
method. It can also be access by passing in a
[Config]({{API_DOCS}}/org/apache/juneau/config/Config.html) bean to any of your
REST OP methods.
A common usage is to use this method to initialize fields in your servlet.
@@ -107,7 +107,7 @@ public class MyResource {...}
```
It's even possible to reference request-level variables in your config file if
you use
-[RestRequest#getConfig()]({{API_DOCS}}/org/apache/juneau/rest/RestRequest.html#getConfig())
to access the config file:
+[RestRequest.getConfig()]({{API_DOCS}}/org/apache/juneau/rest/RestRequest.html#getConfig())
to access the config file:
```ini
#-------------------------------------
diff --git a/juneau-docs-poc/docs/topics/08.13.00.SvlVariables.md
b/juneau-docs-poc/docs/topics/08.13.00.SvlVariables.md
index c26489673..1cbc41c2f 100644
--- a/juneau-docs-poc/docs/topics/08.13.00.SvlVariables.md
+++ b/juneau-docs-poc/docs/topics/08.13.00.SvlVariables.md
@@ -27,9 +27,9 @@ This is called Simple Variable Language, or SVL, and is
defined here: [TODO: Sim
i.e., if a variable results to a value with another variable in it, that
variable will also be resolved (restricted for security reasons on variables
that involve user input).
There are two distinct groups of variables: Initialization-time variables
These are variables that can be used in many of the annotations in
[@Rest]({{API_DOCS}}/org/apache/juneau/rest/annotation/Rest.html).
-The
[RestContext#getVarResolver()]({{API_DOCS}}/org/apache/juneau/rest/RestContext.html#getVarResolver())
method returns initialization-time variables only.
+The
[RestContext.getVarResolver()]({{API_DOCS}}/org/apache/juneau/rest/RestContext.html#getVarResolver())
method returns initialization-time variables only.
Request-time variables These are variables that are available during
HTTP-requests and can be used on annotation such as HtmlDoc @HtmlDoc.
-[RestRequest#getVarResolverSession()]({{API_DOCS}}/org/apache/juneau/rest/RestRequest.html#getVarResolverSession())
method returns initialization and request-time variables.
+[RestRequest.getVarResolverSession()]({{API_DOCS}}/org/apache/juneau/rest/RestRequest.html#getVarResolverSession())
method returns initialization and request-time variables.
The following is the default list of supported variables.
### Default REST SVL Variables:
diff --git a/juneau-docs-poc/docs/topics/08.18.04.HtmlPredefinedWidgets.md
b/juneau-docs-poc/docs/topics/08.18.04.HtmlPredefinedWidgets.md
index 2540894af..622d7876e 100644
--- a/juneau-docs-poc/docs/topics/08.18.04.HtmlPredefinedWidgets.md
+++ b/juneau-docs-poc/docs/topics/08.18.04.HtmlPredefinedWidgets.md
@@ -75,7 +75,7 @@ It renders the following popup-box:
[QueryMenuItem]({{API_DOCS}}/org/apache/juneau/rest/widget/QueryMenuItem.html)
is a predefined Widget that returns a menu-item drop-down form for entering
search/view/sort arguments.
The variable it resolves is "$W\{QueryMenuItem\}".
-This widget is designed to be used in conjunction with the
[Queryable]({{API_DOCS}}/org/apache/juneau/rest/converter/Queryable.html)
converter, although implementations can process the query parameters themselves
if they wish to do so by using the
[RequestQueryParams#getSearchArgs()]({{API_DOCS}}/org/apache/juneau/rest/httppart/RequestQueryParams.html#getSearchArgs())
method to retrieve the arguments and process the data themselves.
+This widget is designed to be used in conjunction with the
[Queryable]({{API_DOCS}}/org/apache/juneau/rest/converter/Queryable.html)
converter, although implementations can process the query parameters themselves
if they wish to do so by using the
[RequestQueryParams.getSearchArgs()]({{API_DOCS}}/org/apache/juneau/rest/httppart/RequestQueryParams.html#getSearchArgs())
method to retrieve the arguments and process the data themselves.
An example of this widget can be found in the `PetStoreResource` in the
examples that provides search/view/sort capabilities against the collection of
POJOs:
```java
diff --git a/juneau-docs-poc/docs/topics/08.25.00.ResponseProcessors.md
b/juneau-docs-poc/docs/topics/08.25.00.ResponseProcessors.md
index d1b97cf95..0573f4a84 100644
--- a/juneau-docs-poc/docs/topics/08.25.00.ResponseProcessors.md
+++ b/juneau-docs-poc/docs/topics/08.25.00.ResponseProcessors.md
@@ -20,8 +20,8 @@ By default, REST resource classes are registered with the
following response pro
Custom response processors can be associated with REST resources via the
following:
<tree>
-<node-0><java-method-annnotation>[Rest#responseProcessors]({{API_DOCS}}/org/apache/juneau/rest/annotation/Rest.html#responseProcessors)</java-method-annnotation></node-0>
-<node-0><java-method>[Builder#responseProcessors()]({{API_DOCS}}/org/apache/juneau/rest/RestContext/Builder.html#responseProcessors())</java-method></node-0>
+<node-0><java-method-annnotation>[Rest.responseProcessors]({{API_DOCS}}/org/apache/juneau/rest/annotation/Rest.html#responseProcessors)</java-method-annnotation></node-0>
+<node-0><java-method>[Builder.responseProcessors()]({{API_DOCS}}/org/apache/juneau/rest/RestContext/Builder.html#responseProcessors())</java-method></node-0>
</tree>
Response processors can be used to process POJOs that cannot normally be
handled through Juneau serializers, or because it's simply easier to define
response processors for special cases.
diff --git a/juneau-docs-poc/docs/topics/10.04.00.RequestContent.md
b/juneau-docs-poc/docs/topics/10.04.00.RequestContent.md
index e1b9930ab..49314b613 100644
--- a/juneau-docs-poc/docs/topics/10.04.00.RequestContent.md
+++ b/juneau-docs-poc/docs/topics/10.04.00.RequestContent.md
@@ -51,5 +51,5 @@ client
If the serializer on the client or request is explicitly set to null, POJOs
will be converted to strings
using the registered part serializer as content type "text/plain. If the part
serializer is also null,
-POJOs will be converted to strings using
[ClassMeta#toString(Object)]({{API_DOCS}}/org/apache/juneau/ClassMeta.html#toString(Object))
which typically just calls
[Object#toString()]({{API_DOCS}}/java/lang/Object.html#toString()).
+POJOs will be converted to strings using
[ClassMeta#toString(Object)]({{API_DOCS}}/org/apache/juneau/ClassMeta.html#toString(Object))
which typically just calls
[Object.toString()]({{API_DOCS}}/java/lang/Object.html#toString()).
:::
\ No newline at end of file
diff --git a/juneau-docs-poc/docs/topics/10.11.00.LoggingAndDebugging.md
b/juneau-docs-poc/docs/topics/10.11.00.LoggingAndDebugging.md
index 339016abf..a3a14605d 100644
--- a/juneau-docs-poc/docs/topics/10.11.00.LoggingAndDebugging.md
+++ b/juneau-docs-poc/docs/topics/10.11.00.LoggingAndDebugging.md
@@ -50,7 +50,7 @@ HTTP/1.1 200
=== END
=======================================================================",
```
-It should be noted that if you enable request logging detail level
[DetailLevel#FULL]({{API_DOCS}}/org/apache/juneau/DetailLevel.html#FULL),
response bodies will be cached by default which may introduce
+It should be noted that if you enable request logging detail level
[DetailLevel.FULL]({{API_DOCS}}/org/apache/juneau/DetailLevel.html#FULL),
response bodies will be cached by default which may introduce
a performance penalty.
Additionally, the following method is also provided for enabling debug mode:
@@ -61,6 +61,6 @@ Additionally, the following method is also provided for
enabling debug mode:
Enabling debug mode has the following effects:
--
[Builder#logToConsole()]({{API_DOCS}}/org/apache/juneau/rest/client/RestClient/Builder.html#logToConsole())
is called.
+-
[Builder.logToConsole()]({{API_DOCS}}/org/apache/juneau/rest/client/RestClient/Builder.html#logToConsole())
is called.
:::
\ No newline at end of file
diff --git a/juneau-docs-poc/docs/topics/12.03.00.LifecycleMethods.md
b/juneau-docs-poc/docs/topics/12.03.00.LifecycleMethods.md
index 6e5bc3a09..e71e495a5 100644
--- a/juneau-docs-poc/docs/topics/12.03.00.LifecycleMethods.md
+++ b/juneau-docs-poc/docs/topics/12.03.00.LifecycleMethods.md
@@ -43,7 +43,7 @@ public class App {
}
```
-If your application consists of a single microservice, you can use the
[Microservice#getInstance()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#getInstance())
method from anywhere in your code:
+If your application consists of a single microservice, you can use the
[Microservice.getInstance()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#getInstance())
method from anywhere in your code:
```java
public class App {
@@ -69,6 +69,6 @@ public class App {
}
```
-The
[Microservice#startConsole()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#startConsole())
and
[Microservice#stopConsole()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#stopConsole())
control the lifecycle of the console commands.
+The
[Microservice.startConsole()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#startConsole())
and
[Microservice.stopConsole()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#stopConsole())
control the lifecycle of the console commands.
Typically you'll want to control these separately from the app so that you can
easily restart your application from the console without affecting the console
itself.
The lifecycle methods on the
[Microservice]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html)
class are purposely left non-final so that subclasses can override them to
provide customized behavior.
diff --git a/juneau-docs-poc/docs/topics/12.06.00.Config.md
b/juneau-docs-poc/docs/topics/12.06.00.Config.md
index f7db3aceb..506e78177 100644
--- a/juneau-docs-poc/docs/topics/12.06.00.Config.md
+++ b/juneau-docs-poc/docs/topics/12.06.00.Config.md
@@ -69,7 +69,7 @@ Microservice
;
```
-Once the configuration is resolved, it is made as the system default
configuration available through the
[Config#getSystemDefault()]({{API_DOCS}}/org/apache/juneau/config/Config.html#getSystemDefault()).
+Once the configuration is resolved, it is made as the system default
configuration available through the
[Config.getSystemDefault()]({{API_DOCS}}/org/apache/juneau/config/Config.html#getSystemDefault()).
This in turn allows it to be used by REST resources that reference the system
default configuration via the "SYSTEM_DEFAULT" such as those implementing the
BasicRestConfig interface.
### BasicRestConfig.java
@@ -81,7 +81,7 @@ This in turn allows it to be used by REST resources that
reference the system de
)
```
-The
[Microservice#getConfig()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#getConfig())
method can be used to get access to the configuration.
+The
[Microservice.getConfig()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#getConfig())
method can be used to get access to the configuration.
```java
Config config = Microservice.getInstance().getConfig();
diff --git a/juneau-docs-poc/docs/topics/12.09.00.ConsoleCommands.md
b/juneau-docs-poc/docs/topics/12.09.00.ConsoleCommands.md
index 90ad5e8cc..6e9f7e899 100644
--- a/juneau-docs-poc/docs/topics/12.09.00.ConsoleCommands.md
+++ b/juneau-docs-poc/docs/topics/12.09.00.ConsoleCommands.md
@@ -76,5 +76,5 @@ The API for defining console commands is shown below:
<node-1><java-method>[getSynopsis()]({{API_DOCS}}/org/apache/juneau/microservice/console/ConsoleCommand.html#getSynopsis())</java-method></node-1>
</tree>
-By default, the console input and output are taken from
[System#in]({{API_DOCS}}/java/lang/System.html#in) and
[System#out]({{API_DOCS}}/java/lang/System.html#out).
+By default, the console input and output are taken from
[System.in]({{API_DOCS}}/java/lang/System.html#in) and
[System.out]({{API_DOCS}}/java/lang/System.html#out).
These can be overridden using the
[console(Scanner,PrintWriter)]({{API_DOCS}}/org/apache/juneau/microservice/Microservice/Builder.html#console(Scanner,PrintWriter))
method.
diff --git a/juneau-docs-poc/docs/topics/13.03.00.LifecycleMethods.md
b/juneau-docs-poc/docs/topics/13.03.00.LifecycleMethods.md
index fdf49834e..292d37941 100644
--- a/juneau-docs-poc/docs/topics/13.03.00.LifecycleMethods.md
+++ b/juneau-docs-poc/docs/topics/13.03.00.LifecycleMethods.md
@@ -55,7 +55,7 @@ public class App {
}
```
-Similar to
[Microservice#getInstance()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#getInstance()),
the
[JettyMicroservice#getInstance()]({{API_DOCS}}/org/apache/juneau/microservice/jetty/JettyMicroservice.html#getInstance())
also allows easy access to the microservice:
+Similar to
[Microservice.getInstance()]({{API_DOCS}}/org/apache/juneau/microservice/Microservice.html#getInstance()),
the
[JettyMicroservice.getInstance()]({{API_DOCS}}/org/apache/juneau/microservice/jetty/JettyMicroservice.html#getInstance())
also allows easy access to the microservice:
```java
public class App {