Class FileStore.Builder
- Enclosing class:
- FileStore
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedBuilder()Constructor, default settings.protectedCopy constructor.protectedBuilder(FileStore.Builder copyFrom) Copy constructor. -
Method Summary
Modifier and TypeMethodDescriptionannotations(Annotation... values) Defines annotations to apply to specific classes and methods.apply(AnnotationWorkList work) Applies a set of applied to this builder.applyAnnotations(Class<?>... from) Same asContext.Builder.applyAnnotations(Object...)but explicitly specifies a class varargs to avoid compilation warnings.applyAnnotations(Object... from) Applies any of the various@XConfig annotations on the specified classes or methods to this context.build()Build the object.Specifies a cache to use for hashkey-based caching.Charset for external files.copy()Copy creator.debug()Context configuration property: Debug mode.debug(boolean value) Same asContext.Builder.debug()but allows you to explicitly specify the value.Local file system directory.Local file system directory.Use watcher.extensions(String value) File extensions.Specifies a pre-instantiated bean for theContext.Builder.build()method to return.Associates a context class with this builder.Update-on-write.Watcher sensitivity.Methods inherited from class org.apache.juneau.Context.Builder
annotations, asSubtype, build, canApply, getApplied, getType, hashKey, isDebug, registerBuilders
-
Constructor Details
-
Builder
protected Builder()Constructor, default settings. -
Builder
Copy constructor.- Parameters:
copyFrom- The builder to copy from.
Cannot benull .
-
Builder
Copy constructor.- Parameters:
copyFrom- The bean to copy from.
Cannot benull .
-
-
Method Details
-
annotations
Description copied from class:Context.BuilderDefines annotations to apply to specific classes and methods.Allows you to dynamically apply Juneau annotations typically applied directly to classes and methods. Useful in cases where you want to use the functionality of the annotation on beans and bean properties but do not have access to the code to do so.
As a rule, any Juneau annotation with an
on() method can be used with this setting.The following example shows the equivalent methods for applying the
@Beanannotation:// Class with explicit annotation. @Bean (properties="street,city,state" )public class A {...}// Class with annotation applied via @BeanConfig public class B {...}// Java REST method with @BeanConfig annotation. @RestGet (...)@Bean (on="B" , properties="street,city,state" )public void doFoo() {...}In general, the underlying framework uses this method when it finds dynamically applied annotations on config annotations. However, concrete implementations of annotations are also provided that can be passed directly into builder classes like so:
// Create a concrete @Bean annotation. Bean annotation = BeanAnnotation.create (B.class ).properties("street,city,state" ).build();// Apply it to a serializer. WriterSerializerserializer = JsonSerializer.create ().annotations(annotation ).build();// Serialize a bean with the dynamically applied annotation. Stringjson =serializer .serialize(new B());The following is the list of annotations builders provided that can be constructed and passed into the builder class:
BeanAnnotationBeancAnnotationBeanIgnoreAnnotationBeanpAnnotationExampleAnnotationNamePropertyAnnotationParentPropertyAnnotationSwapAnnotationUriAnnotationCsvAnnotationHtmlAnnotationJsonAnnotationSchemaAnnotationMsgPackAnnotationOpenApiAnnotationPlainTextAnnotationSoapXmlAnnotationUonAnnotationUrlEncodingAnnotationXmlAnnotation
The syntax for the
on() pattern match parameter depends on whether it applies to a class, method, field, or constructor. The valid pattern matches are:- Classes:
- Fully qualified:
"com.foo.MyClass"
- Fully qualified inner class:
"com.foo.MyClass$Inner1$Inner2"
- Simple:
"MyClass"
- Simple inner:
"MyClass$Inner1$Inner2" "Inner1$Inner2" "Inner2"
- Fully qualified:
- Methods:
- Fully qualified with args:
"com.foo.MyClass.myMethod(String,int)" "com.foo.MyClass.myMethod(java.lang.String,int)" "com.foo.MyClass.myMethod()"
- Fully qualified:
"com.foo.MyClass.myMethod"
- Simple with args:
"MyClass.myMethod(String,int)" "MyClass.myMethod(java.lang.String,int)" "MyClass.myMethod()"
- Simple:
"MyClass.myMethod"
- Simple inner class:
"MyClass$Inner1$Inner2.myMethod" "Inner1$Inner2.myMethod" "Inner2.myMethod"
- Fully qualified with args:
- Fields:
- Fully qualified:
"com.foo.MyClass.myField"
- Simple:
"MyClass.myField"
- Simple inner class:
"MyClass$Inner1$Inner2.myField" "Inner1$Inner2.myField" "Inner2.myField"
- Fully qualified:
- Constructors:
- Fully qualified with args:
"com.foo.MyClass(String,int)" "com.foo.MyClass(java.lang.String,int)" "com.foo.MyClass()"
- Simple with args:
"MyClass(String,int)" "MyClass(java.lang.String,int)" "MyClass()"
- Simple inner class:
"MyClass$Inner1$Inner2()" "Inner1$Inner2()" "Inner2()"
- Fully qualified with args:
- A comma-delimited list of anything on this list.
See Also:
- Overrides:
annotationsin classConfigStore.Builder- Parameters:
values- The annotations to register with the context.
Cannot containnull values.- Returns:
- This object.
-
apply
Description copied from class:Context.BuilderApplies a set of applied to this builder.An
AnnotationWorkconsists of a single pair ofAnnotationInfothat represents an annotation instance, andAnnotationApplierwhich represents the code used to apply the values in that annotation to a specific builder.Example:
// A class annotated with a config annotation. @BeanConfig (sortProperties="$S{sortProperties,false}" )public class MyClass {...}// Find all annotations that themselves are annotated with @ContextPropertiesApply. Stream<AnnotationInfo<?>>annotations = ClassInfo.of (MyClass.class ).getAnnotations().stream().filter(CONTEXT_APPLY_FILTER ); VarResolverSessionvrs = VarResolver.DEFAULT .createSession(); AnnotationWorkListwork = AnnotationWorkList.of(vrs ,annotations );// Apply any settings found on the annotations. WriterSerializerserializer = JsonSerializer .create () .apply(work ) .build();- Overrides:
applyin classConfigStore.Builder- Parameters:
work- The list of annotations and appliers to apply to this builder.
Cannot benull .- Returns:
- This object.
-
applyAnnotations
Description copied from class:Context.BuilderSame asContext.Builder.applyAnnotations(Object...)but explicitly specifies a class varargs to avoid compilation warnings.- Overrides:
applyAnnotationsin classConfigStore.Builder- Parameters:
from- The classes or methods on which the annotations are defined.
Cannot containnull values.- Returns:
- This object.
-
applyAnnotations
Description copied from class:Context.BuilderApplies any of the various@XConfig annotations on the specified classes or methods to this context.Any annotations found that themselves are annotated with
ContextApplywill be resolved and applied as properties to this builder. These annotations include:BeanConfigCsvConfigHtmlConfigHtmlDocConfigJsonConfigJsonSchemaConfigMsgPackConfigOpenApiConfigParserConfigPlainTextConfigSerializerConfigSoapXmlConfigUonConfigUrlEncodingConfigXmlConfigRdfConfig
Annotations on classes are appended in the following order:
- On the package of this class.
- On interfaces ordered parent-to-child.
- On parent classes ordered parent-to-child.
- On this class.
Annotations on methods are appended in the following order:
- On the package of the method class.
- On interfaces ordered parent-to-child.
- On parent classes ordered parent-to-child.
- On the method class.
- On this method and matching methods ordered parent-to-child.
The default var resolver
VarResolver.DEFAULTis used to resolve any variables in annotation field values.Example:
// A class annotated with a config annotation. @BeanConfig (sortProperties="$S{sortProperties,false}" )public class MyClass {...}// Apply any settings found on the annotations. WriterSerializerserializer = JsonSerializer .create () .applyAnnotations(MyClass.class ) .build();// A method annotated with a config annotation. public class MyClass {@BeanConfig (sortProperties="$S{sortProperties,false}" )public void myMethod() {...} }// Apply any settings found on the annotations. WriterSerializerserializer = JsonSerializer .create () .applyAnnotations(MyClass.class .getMethod("myMethod" )) .build();- Overrides:
applyAnnotationsin classConfigStore.Builder- Parameters:
from- The classes or methods on which the annotations are defined. Can be any of the following types:ClassClassInfoMethodMethodInfo- A collection/stream/array of anything on this list.
Cannot containnull values.
- Returns:
- This object.
-
build
Description copied from class:Context.BuilderBuild the object.- Overrides:
buildin classContext.Builder- Returns:
- The built object.
-
cache
Description copied from class:Context.BuilderSpecifies a cache to use for hashkey-based caching.When a cache is specified, contexts with the same hash key will be reused from the cache instead of creating new instances. This improves performance when building multiple contexts with identical configurations.
If
null is specified, caching is disabled and each call toContext.Builder.build()will create a new context instance.- Overrides:
cachein classConfigStore.Builder- Parameters:
value- The cache.
Can benull (disables caching, each build creates a new instance).- Returns:
- This object.
-
charset
Charset for external files.Identifies the charset of external files.
- Parameters:
value- The new value for this property.
The default is the first value found:- System property
"ConfigFileStore.charset" - Environment variable
"CONFIGFILESTORE_CHARSET" Charset.defaultCharset() - Environment variable
Cannot benull .- System property
- Returns:
- This object.
-
copy
Description copied from class:Context.BuilderCopy creator.- Specified by:
copyin classConfigStore.Builder- Returns:
- A new mutable copy of this builder.
-
debug
Description copied from class:Context.BuilderContext configuration property: Debug mode.Enables the following additional information during serialization:
- When bean getters throws exceptions, the exception includes the object stack information in order to determine how that method was invoked.
-
Enables
BeanTraverseContext.Builder.detectRecursions().
Enables the following additional information during parsing:
- When bean setters throws exceptions, the exception includes the object stack information in order to determine how that method was invoked.
Example:
// Create a serializer with debug enabled. WriterSerializerserializer = JsonSerializer .create () .debug() .build();// Create a POJO model with a recursive loop. public class MyBean {public Objectf ; } MyBeanbean =new MyBean();bean .f =bean ;// Throws a SerializeException and not a StackOverflowError Stringjson =serializer .serialize(bean );See Also:
- Overrides:
debugin classConfigStore.Builder- Returns:
- This object.
-
debug
Description copied from class:Context.BuilderSame asContext.Builder.debug()but allows you to explicitly specify the value.- Overrides:
debugin classConfigStore.Builder- Parameters:
value- The value for this setting.- Returns:
- This object.
-
directory
Local file system directory.Identifies the path of the directory containing the configuration files.
- Parameters:
value- The new value for this property.
The default is the first value found:- System property
"ConfigFileStore.directory" - Environment variable
"CONFIGFILESTORE_DIRECTORY" "." . - Environment variable
Cannot benull .- System property
- Returns:
- This object.
-
directory
Local file system directory.Identifies the path of the directory containing the configuration files.
- Parameters:
value- The new value for this property.
The default is the first value found:- System property
"ConfigFileStore.directory" - Environment variable
"CONFIGFILESTORE_DIRECTORY" "." - Environment variable
Cannot benull .- System property
- Returns:
- This object.
-
enableWatcher
Use watcher.Use a file system watcher for file system changes.
Notes:
- Calling
FileStore.close()closes the watcher.
The default is the first value found:
- System property
"ConfigFileStore.enableWatcher" - Environment variable
"CONFIGFILESTORE_ENABLEWATCHER" false . - Environment variable
- Returns:
- This object.
- Calling
-
extensions
File extensions.Defines what file extensions to search for when the config name does not have an extension.
- Parameters:
value- The new value for this property. The default is the first value found:- System property
"ConfigFileStore.extensions" - Environment variable
"CONFIGFILESTORE_EXTENSIONS" "cfg" - Environment variable
Cannot benull .- System property
- Returns:
- This object.
-
impl
Description copied from class:Context.BuilderSpecifies a pre-instantiated bean for theContext.Builder.build()method to return.If a non-null value is provided and it's an instance of the context type,
Context.Builder.build()will return that instance instead of creating a new one. Ifnull , the normal build process continues.- Overrides:
implin classConfigStore.Builder- Parameters:
value- The value for this setting.
Can benull (normal build process will continue).- Returns:
- This object.
-
type
Description copied from class:Context.BuilderAssociates a context class with this builder.This is the type of object that this builder creates when the
Context.Builder.build()method is called.By default, it's the outer class of where the builder class is defined.
If
null is set,Context.Builder.build()will throw an exception. The default constructor automatically sets this to the outer class, sonull should only be set explicitly if you want to override the default.- Overrides:
typein classConfigStore.Builder- Parameters:
value- The context class that this builder should create.
Can benull (will causeContext.Builder.build()to throw an exception).- Returns:
- This object.
-
updateOnWrite
Update-on-write.When enabled, the
FileStore.update(String, String)method will be called immediately following calls toFileStore.write(String, String, String)when the contents are changing.
This allows for more immediate responses to configuration changes on file systems that use polling watchers.
This may cause double-triggering ofConfigStoreListeners.The default is the first value found:
- System property
"ConfigFileStore.updateOnWrite" - Environment variable
"CONFIGFILESTORE_UPDATEONWRITE" false . - Environment variable
- Returns:
- This object.
- System property
-
watcherSensitivity
Watcher sensitivity.Determines how frequently the file system is polled for updates.
Notes:
- This relies on internal Sun packages and may not work on all JVMs.
- Parameters:
value- The new value for this property.
The default is the first value found:- System property
"ConfigFileStore.watcherSensitivity" - Environment variable
"CONFIGFILESTORE_WATCHERSENSITIVITY" WatcherSensitivity.MEDIUM - Environment variable
Cannot benull .- System property
- Returns:
- This object.
-