Uses of Class
st.orm.StormConfig
Packages that use StormConfig
Package
Description
Foundation of the data model: the mapping annotations and the record interfaces.
Java client API: templates, query builders and transactions.
-
Uses of StormConfig in st.orm
Methods in st.orm that return StormConfigModifier and TypeMethodDescriptionstatic StormConfigStormConfig.defaults()Returns a configuration that reads exclusively from JVM system properties.static StormConfigCreates a newStormConfigwith the given properties. -
Uses of StormConfig in st.orm.template
Methods in st.orm.template with parameters of type StormConfigModifier and TypeMethodDescriptionORMTemplate.Builder.config(StormConfig config) Sets the Storm configuration to apply to the template instance.static ORMTemplateORMTemplate.of(Connection connection, StormConfig config) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfig.static ORMTemplateORMTemplate.of(Connection connection, StormConfig config, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfigand a custom template decorator.static ORMTemplateORMTemplate.of(DataSource dataSource, StormConfig config) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfig.static ORMTemplateORMTemplate.of(DataSource dataSource, StormConfig config, UnaryOperator<TemplateDecorator> decorator) Returns anORMTemplatefor use with JDBC, configured with the providedStormConfigand a custom template decorator.