From 045b27092423f1103a8fee54f676f20e51819ef9 Mon Sep 17 00:00:00 2001 From: Jean Helie Date: Fri, 30 Jun 2023 13:30:49 +0200 Subject: [PATCH] add Automodel specific version of the queries using ai-generated sink models --- .../code/java/AutomodelSinkTriageUtils.qll | 87 + .../CWE/CWE-022/TaintedPathAutomodel.ql | 41 + .../CWE/CWE-078/ExecTaintedAutomodel.ql | 27 + .../CWE/CWE-089/SqlConcatenatedAutomodel.ql | 35 + .../CWE/CWE-089/SqlTaintedAutomodel.ql | 27 + ...droidMissingCertificatePinningAutomodel.ql | 26 + .../CWE/CWE-532/SensitiveInfoLogAutomodel.ql | 24 + .../CWE/CWE-601/UrlRedirectAutomodel.ql | 24 + .../CWE/CWE-918/RequestForgeryAutomodel.ql | 24 + .../src/Telemetry/IdentifyReposUsingModels.ql | 2370 +++++++++++++++++ 10 files changed, 2685 insertions(+) create mode 100644 java/ql/lib/semmle/code/java/AutomodelSinkTriageUtils.qll create mode 100644 java/ql/src/Security/CWE/CWE-022/TaintedPathAutomodel.ql create mode 100644 java/ql/src/Security/CWE/CWE-078/ExecTaintedAutomodel.ql create mode 100644 java/ql/src/Security/CWE/CWE-089/SqlConcatenatedAutomodel.ql create mode 100644 java/ql/src/Security/CWE/CWE-089/SqlTaintedAutomodel.ql create mode 100644 java/ql/src/Security/CWE/CWE-295/AndroidMissingCertificatePinningAutomodel.ql create mode 100644 java/ql/src/Security/CWE/CWE-532/SensitiveInfoLogAutomodel.ql create mode 100644 java/ql/src/Security/CWE/CWE-601/UrlRedirectAutomodel.ql create mode 100644 java/ql/src/Security/CWE/CWE-918/RequestForgeryAutomodel.ql create mode 100644 java/ql/src/Telemetry/IdentifyReposUsingModels.ql diff --git a/java/ql/lib/semmle/code/java/AutomodelSinkTriageUtils.qll b/java/ql/lib/semmle/code/java/AutomodelSinkTriageUtils.qll new file mode 100644 index 00000000000..6d87368bab4 --- /dev/null +++ b/java/ql/lib/semmle/code/java/AutomodelSinkTriageUtils.qll @@ -0,0 +1,87 @@ +private import java +private import semmle.code.java.dataflow.ExternalFlow as ExternalFlow +private import semmle.code.java.dataflow.TaintTracking::TaintTracking + +/** Gets the models-as-data description for the method argument with the index `index`. */ +bindingset[index] +private string getArgumentForIndex(int index) { + index = -1 and result = "Argument[this]" + or + index >= 0 and result = "Argument[" + index + "]" +} + +private boolean considerSubtypes(Callable callable) { + if + callable.isStatic() or + callable.getDeclaringType().isStatic() or + callable.isFinal() or + callable.getDeclaringType().isFinal() + then result = false + else result = true +} + +private class SinkModelExpr extends Expr { + predicate hasSignature( + string package, string type, boolean subtypes, string name, string signature, string input + ) { + exists(Call call, Callable callable, int argIdx | + call.getCallee() = callable and + ( + this = call.getArgument(argIdx) + or + this = call.getQualifier() and argIdx = -1 + ) and + input = getArgumentForIndex(argIdx) and + package = callable.getDeclaringType().getPackage().getName() and + type = callable.getDeclaringType().getErasure().(RefType).nestedName() and + subtypes = considerSubtypes(callable) and + name = callable.getName() and + signature = ExternalFlow::paramsString(callable) + ) + } +} + +private string pyBool(boolean b) { + b = true and result = "True" + or + b = false and result = "False" +} + +/** + * Gets a string representation of the existing sink model at the expression `e`, in the format in + * which it would appear in a Models-as-Data file. + */ +string getSinkModelRepr(SinkModelExpr e) { + exists( + string package, string type, boolean subtypes, string name, string signature, string input, + string ext, string kind, string provenance + | + e.hasSignature(package, type, subtypes, name, signature, input) and + ExternalFlow::sinkModel(package, type, subtypes, name, signature, ext, input, kind, provenance) and + provenance = "ai-generated" and + result = + "\"" + package + "\", \"" + type + "\", " + pyBool(subtypes) + ", \"" + name + "\", \"" + + signature + "\", \"" + ext + "\", \"" + input + "\", \"" + kind + "\", \"" + provenance + + "\"" + ) +} + +/** + * Gets the string representation of a sink model in a format suitable for appending to an alert + * message. + */ +string getSinkModelQueryRepr(SinkModelExpr e) { result = "\nsinkModel: " + getSinkModelRepr(e) } +// TODO: make this logic more generic +// private predicate relevantSinkModel(int c, string s) { +// exists(RequestForgeryFlow::PathNode source, RequestForgeryFlow::PathNode sink | +// RequestForgeryFlow::flowPath(source, sink) and +// s = getSinkModelRepr(sink.getNode().asExpr()) +// ) and +// c = +// count(RequestForgeryFlow::PathNode sink | +// exists(RequestForgeryFlow::PathNode source | +// RequestForgeryFlow::flowPath(source, sink) and +// s = getSinkModelRepr(sink.getNode().asExpr()) +// ) +// ) +// } diff --git a/java/ql/src/Security/CWE/CWE-022/TaintedPathAutomodel.ql b/java/ql/src/Security/CWE/CWE-022/TaintedPathAutomodel.ql new file mode 100644 index 00000000000..64849173bf4 --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-022/TaintedPathAutomodel.ql @@ -0,0 +1,41 @@ +/** + * @name Uncontrolled data used in path expression + * @description Accessing paths influenced by users can allow an attacker to access unexpected resources. + * @kind path-problem + * @problem.severity error + * @security-severity 7.5 + * @precision high + * @id java/path-injection-automodel + * @tags security + * external/cwe/cwe-022 + * external/cwe/cwe-023 + * external/cwe/cwe-036 + * external/cwe/cwe-073 + * ai-generated + */ + +import java +import semmle.code.java.security.PathCreation +import semmle.code.java.security.TaintedPathQuery +import TaintedPathFlow::PathGraph +private import semmle.code.java.AutomodelSinkTriageUtils + +/** + * Gets the data-flow node at which to report a path ending at `sink`. + * + * Previously this query flagged alerts exclusively at `PathCreation` sites, + * so to avoid perturbing existing alerts, where a `PathCreation` exists we + * continue to report there; otherwise we report directly at `sink`. + */ +DataFlow::Node getReportingNode(DataFlow::Node sink) { + TaintedPathFlow::flowTo(sink) and + if exists(PathCreation pc | pc.getAnInput() = sink.asExpr()) + then result.asExpr() = any(PathCreation pc | pc.getAnInput() = sink.asExpr()) + else result = sink +} + +from TaintedPathFlow::PathNode source, TaintedPathFlow::PathNode sink +where TaintedPathFlow::flowPath(source, sink) +select getReportingNode(sink.getNode()), source, sink, + "This path depends on a $@." + getSinkModelQueryRepr(sink.getNode().asExpr()), source.getNode(), + "user-provided value" diff --git a/java/ql/src/Security/CWE/CWE-078/ExecTaintedAutomodel.ql b/java/ql/src/Security/CWE/CWE-078/ExecTaintedAutomodel.ql new file mode 100644 index 00000000000..2fa02b2150b --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-078/ExecTaintedAutomodel.ql @@ -0,0 +1,27 @@ +/** + * @name Uncontrolled command line + * @description Using externally controlled strings in a command line is vulnerable to malicious + * changes in the strings. + * @kind path-problem + * @problem.severity error + * @security-severity 9.8 + * @precision high + * @id java/command-line-injection-automodel + * @tags security + * external/cwe/cwe-078 + * external/cwe/cwe-088 + * ai-generated + */ + +import java +import semmle.code.java.security.CommandLineQuery +import RemoteUserInputToArgumentToExecFlow::PathGraph +private import semmle.code.java.AutomodelSinkTriageUtils + +from + RemoteUserInputToArgumentToExecFlow::PathNode source, + RemoteUserInputToArgumentToExecFlow::PathNode sink, Expr execArg +where execIsTainted(source, sink, execArg) +select execArg, source, sink, + "This command line depends on a $@." + getSinkModelQueryRepr(sink.getNode().asExpr()), + source.getNode(), "user-provided value" diff --git a/java/ql/src/Security/CWE/CWE-089/SqlConcatenatedAutomodel.ql b/java/ql/src/Security/CWE/CWE-089/SqlConcatenatedAutomodel.ql new file mode 100644 index 00000000000..b50a98f317f --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-089/SqlConcatenatedAutomodel.ql @@ -0,0 +1,35 @@ +/** + * @name Query built by concatenation with a possibly-untrusted string + * @description Building a SQL or Java Persistence query by concatenating a possibly-untrusted string + * is vulnerable to insertion of malicious code. + * @kind problem + * @problem.severity error + * @security-severity 8.8 + * @precision medium + * @id java/concatenated-sql-query-automodel + * @tags security + * external/cwe/cwe-089 + * external/cwe/cwe-564 + * ai-generated + */ + +import java +import semmle.code.java.security.SqlConcatenatedLib +import semmle.code.java.security.SqlInjectionQuery +import semmle.code.java.security.SqlConcatenatedQuery +private import semmle.code.java.AutomodelSinkTriageUtils + +from QueryInjectionSink query, Expr uncontrolled +where + ( + builtFromUncontrolledConcat(query.asExpr(), uncontrolled) + or + exists(StringBuilderVar sbv | + uncontrolledStringBuilderQuery(sbv, uncontrolled) and + UncontrolledStringBuilderSourceFlow::flow(DataFlow::exprNode(sbv.getToStringCall()), query) + ) + ) and + not queryIsTaintedBy(query, _, _) +select query, + "Query built by concatenation with $@, which may be untrusted." + + getSinkModelQueryRepr(query.asExpr()), uncontrolled, "this expression" diff --git a/java/ql/src/Security/CWE/CWE-089/SqlTaintedAutomodel.ql b/java/ql/src/Security/CWE/CWE-089/SqlTaintedAutomodel.ql new file mode 100644 index 00000000000..0200f87450e --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-089/SqlTaintedAutomodel.ql @@ -0,0 +1,27 @@ +/** + * @name Query built from user-controlled sources + * @description Building a SQL or Java Persistence query from user-controlled sources is vulnerable to insertion of + * malicious code by the user. + * @kind path-problem + * @problem.severity error + * @security-severity 8.8 + * @precision high + * @id java/sql-injection-automodel + * @tags security + * external/cwe/cwe-089 + * external/cwe/cwe-564 + * ai-generated + */ + +import java +import semmle.code.java.dataflow.FlowSources +import semmle.code.java.security.SqlInjectionQuery +import QueryInjectionFlow::PathGraph +private import semmle.code.java.AutomodelSinkTriageUtils + +from + QueryInjectionSink query, QueryInjectionFlow::PathNode source, QueryInjectionFlow::PathNode sink +where queryIsTaintedBy(query, source, sink) +select query, source, sink, + "This query depends on a $@." + getSinkModelQueryRepr(sink.getNode().asExpr()), source.getNode(), + "user-provided value" diff --git a/java/ql/src/Security/CWE/CWE-295/AndroidMissingCertificatePinningAutomodel.ql b/java/ql/src/Security/CWE/CWE-295/AndroidMissingCertificatePinningAutomodel.ql new file mode 100644 index 00000000000..0de5208d862 --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-295/AndroidMissingCertificatePinningAutomodel.ql @@ -0,0 +1,26 @@ +/** + * @name Android missing certificate pinning + * @description Network connections that do not use certificate pinning may allow attackers to eavesdrop on communications. + * @kind problem + * @problem.severity warning + * @security-severity 5.9 + * @precision medium + * @id java/android/missing-certificate-pinning-automodel + * @tags security + * external/cwe/cwe-295 + * ai-generated + */ + +import java +import semmle.code.java.security.AndroidCertificatePinningQuery +private import semmle.code.java.AutomodelSinkTriageUtils + +from DataFlow::Node node, string domain, string msg +where + missingPinning(node, domain) and + if domain = "" + then msg = "(no explicitly trusted domains)" + else msg = "(" + domain + " is not trusted by a pin)" +select node, + "This network call does not implement certificate pinning. " + msg + + getSinkModelQueryRepr(node.asExpr()) diff --git a/java/ql/src/Security/CWE/CWE-532/SensitiveInfoLogAutomodel.ql b/java/ql/src/Security/CWE/CWE-532/SensitiveInfoLogAutomodel.ql new file mode 100644 index 00000000000..827de0456ac --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-532/SensitiveInfoLogAutomodel.ql @@ -0,0 +1,24 @@ +/** + * @name Insertion of sensitive information into log files + * @description Writing sensitive information to log files can allow that + * information to be leaked to an attacker more easily. + * @kind path-problem + * @problem.severity warning + * @security-severity 7.5 + * @precision medium + * @id java/sensitive-log-automodel + * @tags security + * external/cwe/cwe-532 + * ai-generated + */ + +import java +import semmle.code.java.security.SensitiveLoggingQuery +import SensitiveLoggerFlow::PathGraph +private import semmle.code.java.AutomodelSinkTriageUtils + +from SensitiveLoggerFlow::PathNode source, SensitiveLoggerFlow::PathNode sink +where SensitiveLoggerFlow::flowPath(source, sink) +select sink.getNode(), source, sink, + "This $@ is written to a log file." + getSinkModelQueryRepr(sink.getNode().asExpr()), + source.getNode(), "potentially sensitive information" diff --git a/java/ql/src/Security/CWE/CWE-601/UrlRedirectAutomodel.ql b/java/ql/src/Security/CWE/CWE-601/UrlRedirectAutomodel.ql new file mode 100644 index 00000000000..a5cca1fcf7a --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-601/UrlRedirectAutomodel.ql @@ -0,0 +1,24 @@ +/** + * @name URL redirection from remote source + * @description URL redirection based on unvalidated user-input + * may cause redirection to malicious web sites. + * @kind path-problem + * @problem.severity error + * @security-severity 6.1 + * @precision high + * @id java/unvalidated-url-redirection-automodel + * @tags security + * external/cwe/cwe-601 + * ai-generated + */ + +import java +import semmle.code.java.security.UrlRedirectQuery +import UrlRedirectFlow::PathGraph +private import semmle.code.java.AutomodelSinkTriageUtils + +from UrlRedirectFlow::PathNode source, UrlRedirectFlow::PathNode sink +where UrlRedirectFlow::flowPath(source, sink) +select sink.getNode(), source, sink, + "Untrusted URL redirection depends on a $@." + getSinkModelQueryRepr(sink.getNode().asExpr()), + source.getNode(), "user-provided value" diff --git a/java/ql/src/Security/CWE/CWE-918/RequestForgeryAutomodel.ql b/java/ql/src/Security/CWE/CWE-918/RequestForgeryAutomodel.ql new file mode 100644 index 00000000000..2f849db8e27 --- /dev/null +++ b/java/ql/src/Security/CWE/CWE-918/RequestForgeryAutomodel.ql @@ -0,0 +1,24 @@ +/** + * @name Server-side request forgery + * @description Making web requests based on unvalidated user-input + * may cause the server to communicate with malicious servers. + * @kind path-problem + * @problem.severity error + * @security-severity 9.1 + * @precision high + * @id java/ssrf-automodel + * @tags security + * external/cwe/cwe-918 + * ai-generated + */ + +import java +import semmle.code.java.security.RequestForgeryConfig +import RequestForgeryFlow::PathGraph +private import semmle.code.java.AutomodelSinkTriageUtils + +from RequestForgeryFlow::PathNode source, RequestForgeryFlow::PathNode sink +where RequestForgeryFlow::flowPath(source, sink) +select sink.getNode(), source, sink, + "Potential server-side request forgery due to a $@." + + getSinkModelQueryRepr(sink.getNode().asExpr()), source.getNode(), "user-provided value" diff --git a/java/ql/src/Telemetry/IdentifyReposUsingModels.ql b/java/ql/src/Telemetry/IdentifyReposUsingModels.ql new file mode 100644 index 00000000000..2699130c3a1 --- /dev/null +++ b/java/ql/src/Telemetry/IdentifyReposUsingModels.ql @@ -0,0 +1,2370 @@ +import java +private import semmle.code.java.dataflow.ExternalFlow // for `paramsString` + +private class ApplicationMode extends Callable { + ApplicationMode() { + exists(string qualifiedNameWithSignature | + qualifiedNameWithSignature = this.getQualifiedName() + "#" + paramsString(this) and + qualifiedNameWithSignature = + [ + "org.springframework.jdbc.core.JdbcTemplate.query#(String,RowMapper,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,RowMapper,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,PreparedStatementSetter,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,PreparedStatementSetter,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(PreparedStatementCreator,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,RowCallbackHandler,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,RowCallbackHandler,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,PreparedStatementSetter,RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,PreparedStatementSetter,RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(PreparedStatementCreator,RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,ResultSetExtractor,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,ResultSetExtractor,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,Object[],int[],ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,PreparedStatementSetter,ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,PreparedStatementSetter,ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(PreparedStatementCreator,ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(PreparedStatementCreator,PreparedStatementSetter,ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(PreparedStatementCreator,PreparedStatementSetter,ResultSetExtractor)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,RowCallbackHandler)", + "org.springframework.jdbc.core.JdbcTemplate.query#(String,ResultSetExtractor)", + "org.springframework.web.context.support.ServletRequestHandledEvent.ServletRequestHandledEvent#(Object,String,String,String,String,String,String,long,Throwable,int)", + "org.springframework.web.context.support.ServletRequestHandledEvent.ServletRequestHandledEvent#(Object,String,String,String,String,String,String,long,Throwable,int)", + "org.springframework.web.context.support.ServletRequestHandledEvent.ServletRequestHandledEvent#(Object,String,String,String,String,String,String,long,Throwable)", + "org.springframework.web.context.support.ServletRequestHandledEvent.ServletRequestHandledEvent#(Object,String,String,String,String,String,String,long)", + "org.springframework.web.context.support.ServletRequestHandledEvent.ServletRequestHandledEvent#(Object,String,String,String,String,String,String,long)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,RowCallbackHandler)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,ResultSetExtractor)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,ResultSetExtractor)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,ResultSetExtractor)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,ResultSetExtractor)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,Map,ResultSetExtractor)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,ResultSetExtractor)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,ResultSetExtractor)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.query#(String,SqlParameterSource,ResultSetExtractor)", + "org.springframework.web.client.RestTemplate.exchange#(URI,HttpMethod,HttpEntity,ParameterizedTypeReference)", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,ParameterizedTypeReference,Map)", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,ParameterizedTypeReference,Map)", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,ParameterizedTypeReference,Object[])", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,ParameterizedTypeReference,Object[])", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,Class,Map)", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,Class,Map)", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,Class,Object[])", + "org.springframework.web.client.RestTemplate.exchange#(String,HttpMethod,HttpEntity,Class,Object[])", + "org.springframework.r2dbc.connection.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource)", + "org.springframework.r2dbc.connection.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource)", + "org.springframework.r2dbc.connection.init.ScriptUtils.executeSqlScript#(Connection,Resource)", + "org.springframework.r2dbc.connection.init.ScriptUtils.executeSqlScript#(Connection,Resource)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,RowMapper)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,RowMapper)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,RowMapper)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,ResultSetExtractor)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,ResultSetExtractor)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,ResultSetExtractor)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int)", + "org.springframework.jdbc.core.SqlInOutParameter.SqlInOutParameter#(String,int)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,RowMapper)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,RowMapper)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,ResultSetExtractor)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,ResultSetExtractor)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,String,SqlReturnType)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int)", + "org.springframework.jdbc.core.SqlOutParameter.SqlOutParameter#(String,int)", + "org.springframework.jms.core.JmsMessagingTemplate.convertSendAndReceive#(String,Object,Map,Class,MessagePostProcessor)", + "org.springframework.jms.core.JmsMessagingTemplate.convertSendAndReceive#(String,Object,Class,MessagePostProcessor)", + "org.springframework.jms.core.JmsMessagingTemplate.convertSendAndReceive#(String,Object,Map,Class)", + "org.springframework.jms.core.JmsMessagingTemplate.convertSendAndReceive#(Object,Class)", + "org.springframework.jms.core.JmsMessagingTemplate.convertSendAndReceive#(String,Object,Class)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String[],String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String[],String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String[],String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String[],String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String[],String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String,String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String,String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String,String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String,String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String,String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String,String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource,boolean,boolean,String,String,String,String)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,EncodedResource)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,Resource)", + "org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript#(Connection,Resource)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,String,HttpMethod,HttpEntity,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,String,HttpMethod,HttpEntity,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,String,HttpMethod,HttpEntity,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,String,HttpMethod,HttpEntity,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,String,HttpMethod,HttpEntity,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,String,HttpMethod,HttpEntity,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,String,HttpMethod,HttpEntity,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,URI,HttpMethod,HttpEntity,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,URI,HttpMethod,HttpEntity,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange$default#(RestOperations,URI,HttpMethod,HttpEntity,int,Object)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,String,MediaType,Flux,Consumer)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,String,MediaType,Flux,Consumer)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,String,MediaType,Flux)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,String,MediaType,Flux)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,Path,Consumer)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,Path,Consumer)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,Path,Consumer)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,Path)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,Path)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,Resource,Consumer)", + "org.springframework.http.codec.multipart.FilePartEvent.create#(String,Resource)", + "org.springframework.web.reactive.socket.HandshakeInfo.HandshakeInfo#(URI,HttpHeaders,MultiValueMap,Mono,String,InetSocketAddress,Map,String)", + "org.springframework.web.reactive.socket.HandshakeInfo.HandshakeInfo#(URI,HttpHeaders,MultiValueMap,Mono,String,InetSocketAddress,Map,String)", + "org.springframework.web.reactive.socket.HandshakeInfo.HandshakeInfo#(URI,HttpHeaders,Mono,String,InetSocketAddress,Map,String)", + "org.springframework.web.reactive.socket.HandshakeInfo.HandshakeInfo#(URI,HttpHeaders,Mono,String,InetSocketAddress,Map,String)", + "org.springframework.web.reactive.socket.HandshakeInfo.HandshakeInfo#(URI,HttpHeaders,Mono,String)", + "org.springframework.web.reactive.socket.HandshakeInfo.HandshakeInfo#(URI,HttpHeaders,Mono,String)", + "org.springframework.jdbc.object.SqlQuery.execute#(String)", + "org.springframework.jdbc.object.SqlQuery.execute#(String,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(String,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(long)", + "org.springframework.jdbc.object.SqlQuery.execute#(long,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(long,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(int,int)", + "org.springframework.jdbc.object.SqlQuery.execute#(int,int)", + "org.springframework.jdbc.object.SqlQuery.execute#(int,int,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(int,int,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(int,int,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(int)", + "org.springframework.jdbc.object.SqlQuery.execute#(int,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(int,Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(Object[])", + "org.springframework.jdbc.object.SqlQuery.execute#(Object[],Map)", + "org.springframework.jdbc.object.SqlQuery.execute#(Object[],Map)", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String[],Class,ApplicationContext)", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String[],Class)", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String,Class)", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String[],boolean,ApplicationContext)", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String[],boolean)", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String[],ApplicationContext)", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String[])", + "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,RowMapper)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,RowMapper)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,RowCallbackHandler)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,ResultSetExtractor)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,String)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,String)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,String)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,int)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int,int)", + "org.springframework.jdbc.core.ResultSetSupportingSqlParameter.ResultSetSupportingSqlParameter#(String,int)", + "org.springframework.jdbc.object.SqlQuery.findObject#(String)", + "org.springframework.jdbc.object.SqlQuery.findObject#(String,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(String,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(long)", + "org.springframework.jdbc.object.SqlQuery.findObject#(long,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(long,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int,int)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int,int)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int,int,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int,int,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int,int,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(int,Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(Object[])", + "org.springframework.jdbc.object.SqlQuery.findObject#(Object[],Map)", + "org.springframework.jdbc.object.SqlQuery.findObject#(Object[],Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,URI,Object,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject$default#(RestOperations,URI,Object,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,URI,Object,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject$default#(RestOperations,URI,Object,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,String,Object,Object[],int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,String,Object,Map,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,URI,Object,int,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity$default#(RestOperations,URI,Object,int,Object)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Class,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Class,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],int[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],int[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],int[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,RowMapper,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,RowMapper,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],int[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],int[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Object[],int[],RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForObject#(String,RowMapper)", + "org.springframework.jdbc.core.support.SqlLobValue.SqlLobValue#(Reader,int,LobHandler)", + "org.springframework.jdbc.core.support.SqlLobValue.SqlLobValue#(Reader,int)", + "org.springframework.jdbc.core.support.SqlLobValue.SqlLobValue#(String,LobHandler)", + "org.springframework.jdbc.core.support.SqlLobValue.SqlLobValue#(String)", + "org.springframework.jdbc.core.support.SqlLobValue.SqlLobValue#(byte[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(URI,WebSocketHttpHeaders,StompHeaders,StompSessionHandler)", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(URI,WebSocketHttpHeaders,StompHeaders,StompSessionHandler)", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(URI,WebSocketHttpHeaders,StompHeaders,StompSessionHandler)", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(URI,WebSocketHttpHeaders,StompHeaders,StompSessionHandler)", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(URI,WebSocketHttpHeaders,StompHeaders,StompSessionHandler)", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,WebSocketHttpHeaders,StompHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,WebSocketHttpHeaders,StompHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,WebSocketHttpHeaders,StompHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,WebSocketHttpHeaders,StompHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,WebSocketHttpHeaders,StompHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,WebSocketHttpHeaders,StompHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,WebSocketHttpHeaders,StompHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,WebSocketHttpHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,WebSocketHttpHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,WebSocketHttpHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,WebSocketHttpHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,WebSocketHttpHeaders,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connectAsync#(String,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,StompSessionHandler,Object[])", + "org.springframework.web.socket.messaging.WebSocketStompClient.connect#(String,StompSessionHandler,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange#(RestOperations,String,HttpMethod,HttpEntity,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange#(RestOperations,String,HttpMethod,HttpEntity,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange#(RestOperations,String,HttpMethod,HttpEntity,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange#(RestOperations,String,HttpMethod,HttpEntity,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange#(RestOperations,URI,HttpMethod,HttpEntity)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange#(RestOperations,URI,HttpMethod,HttpEntity)", + "org.springframework.web.client.RestOperationsExtensionsKt.exchange#(RestOperations,RequestEntity)", + "org.springframework.http.RequestEntity.RequestEntity#(Object,HttpMethod,URI,Type)", + "org.springframework.jms.core.JmsMessagingTemplate.convertAndSend#(String,Object,Map,MessagePostProcessor)", + "org.springframework.jms.core.JmsMessagingTemplate.convertAndSend#(String,Object,MessagePostProcessor)", + "org.springframework.jms.core.JmsMessagingTemplate.convertAndSend#(String,Object,Map)", + "org.springframework.jms.core.JmsMessagingTemplate.convertAndSend#(String,Object)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(String)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(String,String)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(String,ClassLoader)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(String,ClassLoader)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(String,String,ClassLoader)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(Resource)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(String,Resource)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(EncodedResource)", + "org.springframework.core.io.support.ResourcePropertySource.ResourcePropertySource#(String,EncodedResource)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(String,int,int)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(String,int,String)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(String,int)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(String,int)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(int,int)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(int,String)", + "org.springframework.jdbc.core.SqlParameter.SqlParameter#(int,String)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,String,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,String,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,String,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,String,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,String,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,int,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,SqlParameter,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,SqlParameter,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,SqlParameter,Object)", + "org.springframework.jdbc.core.StatementCreatorUtils.setParameterValue#(PreparedStatement,int,SqlParameter,Object)", + "org.springframework.jms.core.JmsTemplate.convertAndSend#(String,Object,MessagePostProcessor)", + "org.springframework.jms.core.JmsTemplate.convertAndSend#(String,Object)", + "org.springframework.orm.jpa.SharedEntityManagerCreator.createSharedEntityManager#(EntityManagerFactory,Map,boolean,Class[])", + "org.springframework.orm.jpa.SharedEntityManagerCreator.createSharedEntityManager#(EntityManagerFactory,Map,Class[])", + "org.springframework.orm.jpa.SharedEntityManagerCreator.createSharedEntityManager#(EntityManagerFactory,Map,boolean)", + "org.springframework.orm.jpa.SharedEntityManagerCreator.createSharedEntityManager#(EntityManagerFactory,Map,boolean)", + "org.springframework.orm.jpa.SharedEntityManagerCreator.createSharedEntityManager#(EntityManagerFactory,Map)", + "org.springframework.orm.jpa.SharedEntityManagerCreator.createSharedEntityManager#(EntityManagerFactory)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForObject#(JdbcOperations,String,Object[])", + "org.springframework.beans.testfixture.beans.GenericBean.createInstance#(Map,Resource)", + "org.springframework.beans.testfixture.beans.GenericBean.GenericBean#(Map,Resource)", + "org.springframework.core.io.buffer.DataBufferUtils.write#(Publisher,Path,OpenOption[])", + "org.springframework.core.io.buffer.DataBufferUtils.write#(Publisher,Path,OpenOption[])", + "org.springframework.core.io.buffer.DataBufferUtils.write#(Publisher,Path,OpenOption[])", + "org.springframework.core.io.buffer.DataBufferUtils.write#(Publisher,AsynchronousFileChannel,long)", + "org.springframework.core.io.buffer.DataBufferUtils.write#(Publisher,AsynchronousFileChannel,long)", + "org.springframework.core.io.buffer.DataBufferUtils.write#(Publisher,AsynchronousFileChannel)", + "org.springframework.core.io.buffer.DataBufferUtils.write#(Publisher,OutputStream)", + "org.springframework.http.codec.ResourceHttpMessageWriter.write#(Publisher,ResolvableType,ResolvableType,MediaType,ServerHttpRequest,ServerHttpResponse,Map)", + "org.springframework.http.codec.ResourceHttpMessageWriter.write#(Publisher,ResolvableType,MediaType,ReactiveHttpOutputMessage,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,Map,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,Map,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,Map,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,SqlParameterSource,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,SqlParameterSource,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,SqlParameterSource,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForObject#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.object.SqlUpdate.update#(String,String)", + "org.springframework.jdbc.object.SqlUpdate.update#(String,String)", + "org.springframework.jdbc.object.SqlUpdate.update#(String)", + "org.springframework.jdbc.object.SqlUpdate.update#(long,long)", + "org.springframework.jdbc.object.SqlUpdate.update#(long,long)", + "org.springframework.jdbc.object.SqlUpdate.update#(long)", + "org.springframework.jdbc.object.SqlUpdate.update#(int,int)", + "org.springframework.jdbc.object.SqlUpdate.update#(int,int)", + "org.springframework.jdbc.object.SqlUpdate.update#(int)", + "org.springframework.jdbc.object.SqlUpdate.update#(Object[],KeyHolder)", + "org.springframework.jdbc.object.SqlUpdate.update#(Object[],KeyHolder)", + "org.springframework.jdbc.object.SqlUpdate.update#(Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(Object,Serializable)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(Object,Serializable)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(String,Serializable,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(String,Serializable,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(String,Serializable)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(String,Serializable)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(Class,Serializable,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(Class,Serializable,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(Class,Serializable)", + "org.springframework.orm.hibernate5.HibernateTemplate.load#(Class,Serializable)", + "org.springframework.web.testfixture.servlet.MockMultipartFile.MockMultipartFile#(String,String,String,InputStream)", + "org.springframework.web.testfixture.servlet.MockMultipartFile.MockMultipartFile#(String,String,String,InputStream)", + "org.springframework.web.testfixture.servlet.MockMultipartFile.MockMultipartFile#(String,String,String,byte[])", + "org.springframework.web.testfixture.servlet.MockMultipartFile.MockMultipartFile#(String,InputStream)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function1)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function1)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function1)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function1)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.query#(JdbcOperations,String,Object[],Function2)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,int,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,int,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,int,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,int,String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,int,String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,int,String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSourceExtensionsKt.set#(MapSqlParameterSource,String,int,String,Object)", + "org.springframework.core.io.buffer.DataBufferUtils.read#(Resource,long,DataBufferFactory,int)", + "org.springframework.core.io.buffer.DataBufferUtils.read#(Resource,DataBufferFactory,int)", + "org.springframework.core.io.buffer.DataBufferUtils.read#(Path,DataBufferFactory,int,OpenOption[])", + "org.springframework.core.io.buffer.DataBufferUtils.read#(Path,DataBufferFactory,int,OpenOption[])", + "org.springframework.core.io.buffer.DataBufferUtils.read#(Path,DataBufferFactory,int,OpenOption[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Class,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Class,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[],int[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[],int[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Object[],int[],Class)", + "org.springframework.jdbc.core.JdbcTemplate.queryForList#(String,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource,KeyHolder,String[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource,KeyHolder,String[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource,KeyHolder,String[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource,KeyHolder,String[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource,KeyHolder)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource,KeyHolder)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource,KeyHolder)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.update#(String,SqlParameterSource)", + "org.springframework.web.client.RestTemplate.execute#(String,HttpMethod,RequestCallback,ResponseExtractor,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.patchForObject#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForObject#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,String,Object,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,URI,Object)", + "org.springframework.web.client.RestOperationsExtensionsKt.postForEntity#(RestOperations,URI,Object)", + "org.springframework.context.support.FileSystemXmlApplicationContext.FileSystemXmlApplicationContext#(String[],boolean,ApplicationContext)", + "org.springframework.context.support.FileSystemXmlApplicationContext.FileSystemXmlApplicationContext#(String[],boolean)", + "org.springframework.context.support.FileSystemXmlApplicationContext.FileSystemXmlApplicationContext#(String[],ApplicationContext)", + "org.springframework.context.support.FileSystemXmlApplicationContext.FileSystemXmlApplicationContext#(String[],ApplicationContext)", + "org.springframework.context.support.FileSystemXmlApplicationContext.FileSystemXmlApplicationContext#(String[])", + "org.springframework.context.support.FileSystemXmlApplicationContext.FileSystemXmlApplicationContext#(String)", + "org.springframework.http.server.reactive.AbstractServerHttpRequest.AbstractServerHttpRequest#(URI,String,HttpHeaders)", + "org.springframework.http.server.reactive.AbstractServerHttpRequest.AbstractServerHttpRequest#(URI,String,HttpHeaders)", + "org.springframework.http.server.reactive.AbstractServerHttpRequest.AbstractServerHttpRequest#(URI,String,HttpHeaders)", + "org.springframework.http.server.reactive.AbstractServerHttpRequest.AbstractServerHttpRequest#(HttpMethod,URI,String,MultiValueMap)", + "org.springframework.http.server.reactive.AbstractServerHttpRequest.AbstractServerHttpRequest#(HttpMethod,URI,String,MultiValueMap)", + "org.springframework.http.server.reactive.AbstractServerHttpRequest.AbstractServerHttpRequest#(URI,String,MultiValueMap)", + "org.springframework.http.server.reactive.AbstractServerHttpRequest.AbstractServerHttpRequest#(URI,String,MultiValueMap)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(SqlParameter,Object)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(SqlParameter,Object)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(int,int,Object)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(int,int,Object)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(int,String,Object)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(int,String,Object)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(int,String,Object)", + "org.springframework.jdbc.core.SqlParameterValue.SqlParameterValue#(int,Object)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,Map,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,Map,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,Map,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,SqlParameterSource,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,SqlParameterSource,Class)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForList#(String,SqlParameterSource,Class)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(String,Class)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(int,Class)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(String,Map)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(String,Map)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(int,Map)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(int,Map)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getObject#(int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(String,Object,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(String,Object,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(String,Object,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(String,Object,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(Object,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(Object,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(Object,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByExample#(Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.get#(String,Serializable,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.get#(String,Serializable,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.get#(String,Serializable)", + "org.springframework.orm.hibernate5.HibernateTemplate.get#(String,Serializable)", + "org.springframework.orm.hibernate5.HibernateTemplate.get#(Class,Serializable,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.get#(Class,Serializable)", + "org.springframework.web.servlet.view.RedirectView.RedirectView#(String,boolean,boolean,boolean)", + "org.springframework.web.servlet.view.RedirectView.RedirectView#(String,boolean,boolean,boolean)", + "org.springframework.web.servlet.view.RedirectView.RedirectView#(String,boolean,boolean)", + "org.springframework.web.servlet.view.RedirectView.RedirectView#(String,boolean,boolean)", + "org.springframework.web.servlet.view.RedirectView.RedirectView#(String,boolean)", + "org.springframework.web.servlet.view.RedirectView.RedirectView#(String,boolean)", + "org.springframework.web.servlet.view.RedirectView.RedirectView#(String)", + "org.springframework.web.testfixture.servlet.MockPageContext.MockPageContext#(ServletContext,HttpServletRequest,HttpServletResponse)", + "org.springframework.web.testfixture.servlet.MockPageContext.MockPageContext#(ServletContext,HttpServletRequest)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValue#(String,Object,int,String)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValue#(String,Object,int,String)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValue#(String,Object,int,String)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValue#(String,Object,int)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValue#(String,Object,int)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValue#(String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValue#(String,Object)", + "org.springframework.jdbc.datasource.SimpleDriverDataSource.SimpleDriverDataSource#(Driver,String,Properties)", + "org.springframework.jdbc.datasource.SimpleDriverDataSource.SimpleDriverDataSource#(Driver,String,Properties)", + "org.springframework.jdbc.datasource.SimpleDriverDataSource.SimpleDriverDataSource#(Driver,String,String,String)", + "org.springframework.jdbc.datasource.SimpleDriverDataSource.SimpleDriverDataSource#(Driver,String,String,String)", + "org.springframework.jdbc.datasource.SimpleDriverDataSource.SimpleDriverDataSource#(Driver,String,String,String)", + "org.springframework.jdbc.datasource.SimpleDriverDataSource.SimpleDriverDataSource#(Driver,String)", + "org.springframework.mail.javamail.MimeMessageHelper.addAttachment#(String,InputStreamSource,String)", + "org.springframework.mail.javamail.MimeMessageHelper.addAttachment#(String,InputStreamSource)", + "org.springframework.mail.javamail.MimeMessageHelper.addAttachment#(String,InputStreamSource)", + "org.springframework.mail.javamail.MimeMessageHelper.addAttachment#(String,File)", + "org.springframework.mail.javamail.MimeMessageHelper.addAttachment#(String,File)", + "org.springframework.mail.javamail.MimeMessageHelper.addInline#(String,InputStreamSource,String)", + "org.springframework.mail.javamail.MimeMessageHelper.addInline#(String,Resource)", + "org.springframework.mail.javamail.MimeMessageHelper.addInline#(String,File)", + "org.springframework.util.FileCopyUtils.copy#(Reader,Writer)", + "org.springframework.util.FileCopyUtils.copy#(Reader,Writer)", + "org.springframework.util.FileCopyUtils.copy#(InputStream,OutputStream)", + "org.springframework.util.FileCopyUtils.copy#(InputStream,OutputStream)", + "org.springframework.web.method.support.CompositeUriComponentsContributor.contributeMethodArgument#(MethodParameter,Object,UriComponentsBuilder,Map)", + "org.springframework.web.method.support.CompositeUriComponentsContributor.contributeMethodArgument#(MethodParameter,Object,UriComponentsBuilder,Map)", + "org.springframework.web.socket.adapter.standard.StandardWebSocketSession.StandardWebSocketSession#(HttpHeaders,Map,InetSocketAddress,InetSocketAddress,Principal)", + "org.springframework.web.socket.adapter.standard.StandardWebSocketSession.StandardWebSocketSession#(HttpHeaders,Map,InetSocketAddress,InetSocketAddress)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String)", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String,Object[],int[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String,Object[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String,Object[])", + "org.springframework.jdbc.core.JdbcOperationsExtensionsKt.queryForList#(JdbcOperations,String,Object[])", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.GET#(String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.HEAD#(String,Function1)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.HEAD#(String,RequestPredicate,Function1)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.HEAD#(String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.POST#(String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.PUT#(String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.PATCH#(String,RequestPredicate,Function1)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.PATCH#(String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.DELETE#(String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.OPTIONS#(String,Function1)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.OPTIONS#(String,RequestPredicate,Function1)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.OPTIONS#(String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.GET#(String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.HEAD#(String,Function1)", + "org.springframework.web.servlet.function.RouterFunctionDsl.HEAD#(String,RequestPredicate,Function1)", + "org.springframework.web.servlet.function.RouterFunctionDsl.HEAD#(String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.POST#(String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.PUT#(String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.PATCH#(String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.DELETE#(String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.OPTIONS#(String)", + "org.springframework.core.codec.ResourceDecoder.decode#(Publisher,ResolvableType,MimeType,Map)", + "org.springframework.core.io.UrlResource.UrlResource#(String,String,String)", + "org.springframework.core.io.UrlResource.UrlResource#(String,String,String)", + "org.springframework.core.io.UrlResource.UrlResource#(String,String)", + "org.springframework.core.io.UrlResource.UrlResource#(String,String)", + "org.springframework.core.io.UrlResource.UrlResource#(String)", + "org.springframework.core.io.UrlResource.UrlResource#(URI)", + "org.springframework.core.io.UrlResource.UrlResource#(URL)", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(String,RowMapper,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(String,RowMapper,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(String,PreparedStatementSetter,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(String,PreparedStatementSetter,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(PreparedStatementCreator,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(PreparedStatementCreator,PreparedStatementSetter,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(PreparedStatementCreator,PreparedStatementSetter,RowMapper)", + "org.springframework.jdbc.core.JdbcTemplate.queryForStream#(String,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,PreparedStatementCallback)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,PreparedStatementCallback)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,Map,PreparedStatementCallback)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,Map,PreparedStatementCallback)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,Map,PreparedStatementCallback)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,SqlParameterSource,PreparedStatementCallback)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,SqlParameterSource,PreparedStatementCallback)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.execute#(String,SqlParameterSource,PreparedStatementCallback)", + "org.springframework.jdbc.datasource.SingleConnectionDataSource.SingleConnectionDataSource#(Connection,boolean)", + "org.springframework.jdbc.datasource.SingleConnectionDataSource.SingleConnectionDataSource#(String,boolean)", + "org.springframework.jdbc.datasource.SingleConnectionDataSource.SingleConnectionDataSource#(String,String,String,boolean)", + "org.springframework.jdbc.datasource.SingleConnectionDataSource.SingleConnectionDataSource#(String,String,String,boolean)", + "org.springframework.jdbc.datasource.SingleConnectionDataSource.SingleConnectionDataSource#(String,String,String,boolean)", + "org.springframework.jms.core.JmsTemplate.browseSelected#(String,String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.browseSelected#(String,String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.browseSelected#(String,String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.browseSelected#(Queue,String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.browseSelected#(Queue,String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.browseSelected#(Queue,String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.browseSelected#(String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.execute#(String,ProducerCallback)", + "org.springframework.jms.core.JmsTemplate.execute#(String,ProducerCallback)", + "org.springframework.jms.core.JmsTemplate.execute#(ProducerCallback)", + "org.springframework.orm.hibernate5.HibernateTemplate.delete#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.delete#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.delete#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.delete#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.delete#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.delete#(Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.delete#(Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.update#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.update#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.update#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.update#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.update#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.update#(Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.update#(Object)", + "org.springframework.orm.jpa.ExtendedEntityManagerCreator.createContainerManagedEntityManager#(EntityManagerFactory,Map,boolean)", + "org.springframework.orm.jpa.ExtendedEntityManagerCreator.createContainerManagedEntityManager#(EntityManagerFactory,Map)", + "org.springframework.orm.jpa.ExtendedEntityManagerCreator.createContainerManagedEntityManager#(EntityManager,EntityManagerFactoryInfo)", + "org.springframework.web.client.RestTemplate.patchForObject#(URI,Object,Class)", + "org.springframework.web.client.RestTemplate.patchForObject#(String,Object,Class,Map)", + "org.springframework.web.client.RestTemplate.patchForObject#(String,Object,Class,Map)", + "org.springframework.web.client.RestTemplate.patchForObject#(String,Object,Class,Object[])", + "org.springframework.web.client.RestTemplate.patchForObject#(String,Object,Class,Object[])", + "org.springframework.web.client.RestTemplate.postForEntity#(URI,Object,Class)", + "org.springframework.web.client.RestTemplate.postForEntity#(String,Object,Class,Map)", + "org.springframework.web.client.RestTemplate.postForEntity#(String,Object,Class,Map)", + "org.springframework.web.client.RestTemplate.postForEntity#(String,Object,Class,Object[])", + "org.springframework.web.client.RestTemplate.postForEntity#(String,Object,Class,Object[])", + "org.springframework.web.client.RestTemplate.postForObject#(URI,Object,Class)", + "org.springframework.web.client.RestTemplate.postForObject#(String,Object,Class,Map)", + "org.springframework.web.client.RestTemplate.postForObject#(String,Object,Class,Map)", + "org.springframework.web.client.RestTemplate.postForObject#(String,Object,Class,Object[])", + "org.springframework.web.client.RestTemplate.postForObject#(String,Object,Class,Object[])", + "org.springframework.web.socket.sockjs.client.XhrClientSockJsSession.XhrClientSockJsSession#(TransportRequest,WebSocketHandler,XhrTransport,CompletableFuture)", + "org.springframework.web.socket.sockjs.client.XhrClientSockJsSession.XhrClientSockJsSession#(TransportRequest,WebSocketHandler,XhrTransport,SettableListenableFuture)", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.method#(String,String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.method#(HttpMethod,String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.method#(HttpMethod,String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.method#(HttpMethod,URI)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,String,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,String,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,String,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,String,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,String,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,String,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,URI)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForObject#(RestOperations,URI)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,URI)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,URI)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,String,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,String,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,String,Object[])", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,String,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,String,Map)", + "org.springframework.web.client.RestOperationsExtensionsKt.getForEntity#(RestOperations,String,Map)", + "org.springframework.core.io.buffer.DataBufferUtils.readAsynchronousFileChannel#(Callable,long,DataBufferFactory,int)", + "org.springframework.core.io.buffer.DataBufferUtils.readAsynchronousFileChannel#(Callable,DataBufferFactory,int)", + "org.springframework.http.codec.HttpMessageWriter.write#(Publisher,ResolvableType,ResolvableType,MediaType,ServerHttpRequest,ServerHttpResponse,Map)", + "org.springframework.jdbc.core.JdbcTemplate.batchUpdate#(String,Collection,int,ParameterizedPreparedStatementSetter)", + "org.springframework.jdbc.core.JdbcTemplate.batchUpdate#(String,Collection,int,ParameterizedPreparedStatementSetter)", + "org.springframework.jdbc.core.JdbcTemplate.batchUpdate#(String,Collection,int,ParameterizedPreparedStatementSetter)", + "org.springframework.jdbc.core.JdbcTemplate.batchUpdate#(String,List,int[])", + "org.springframework.jdbc.core.JdbcTemplate.batchUpdate#(String,List,int[])", + "org.springframework.jdbc.core.JdbcTemplate.batchUpdate#(String,List)", + "org.springframework.jdbc.core.JdbcTemplate.batchUpdate#(String,BatchPreparedStatementSetter)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.DerbyMaxValueIncrementer#(DataSource,String,String,String)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.DerbyMaxValueIncrementer#(DataSource,String,String,String)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.DerbyMaxValueIncrementer#(DataSource,String,String,String)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.DerbyMaxValueIncrementer#(DataSource,String,String,String)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.DerbyMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.DerbyMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.DerbyMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jms.connection.JmsResourceHolder.JmsResourceHolder#(ConnectionFactory,Connection,Session)", + "org.springframework.jms.connection.JmsResourceHolder.JmsResourceHolder#(Session)", + "org.springframework.messaging.tcp.reactor.ReactorNetty2TcpClient.ReactorNetty2TcpClient#(String,int,TcpMessageCodec)", + "org.springframework.messaging.tcp.reactor.ReactorNettyTcpClient.ReactorNettyTcpClient#(String,int,ReactorNettyCodec)", + "org.springframework.r2dbc.core.binding.BindMarkersFactory.named#(String,String,int,Function)", + "org.springframework.r2dbc.core.binding.BindMarkersFactory.named#(String,String,int,Function)", + "org.springframework.r2dbc.core.binding.BindMarkersFactory.named#(String,String,int)", + "org.springframework.r2dbc.core.binding.BindMarkersFactory.named#(String,String,int)", + "org.springframework.scheduling.concurrent.ScheduledExecutorTask.ScheduledExecutorTask#(Runnable)", + "org.springframework.scripting.groovy.GroovyScriptFactory.GroovyScriptFactory#(String,CompilerConfiguration)", + "org.springframework.util.ResourceUtils.getFile#(URI,String)", + "org.springframework.util.ResourceUtils.getFile#(URI,String)", + "org.springframework.util.ResourceUtils.getFile#(URI)", + "org.springframework.util.ResourceUtils.getFile#(URL,String)", + "org.springframework.util.ResourceUtils.getFile#(URL,String)", + "org.springframework.util.ResourceUtils.getFile#(URL)", + "org.springframework.util.ResourceUtils.getFile#(String)", + "org.springframework.util.StreamUtils.copy#(InputStream,OutputStream)", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.fromMethod#(UriComponentsBuilder,Class,Method,Object[])", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.fromMethod#(Class,Method,Object[])", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.fromMethodName#(UriComponentsBuilder,Class,String,Object[])", + "org.springframework.web.socket.client.WebSocketConnectionManager.WebSocketConnectionManager#(WebSocketClient,WebSocketHandler,URI)", + "org.springframework.web.socket.client.WebSocketConnectionManager.WebSocketConnectionManager#(WebSocketClient,WebSocketHandler,URI)", + "org.springframework.web.socket.client.WebSocketConnectionManager.WebSocketConnectionManager#(WebSocketClient,WebSocketHandler,String,Object[])", + "org.springframework.web.socket.client.WebSocketConnectionManager.WebSocketConnectionManager#(WebSocketClient,WebSocketHandler,String,Object[])", + "org.springframework.aot.generate.GeneratedFiles.addFile#(Kind,String,ThrowingConsumer)", + "org.springframework.aot.generate.GeneratedFiles.addFile#(Kind,String,CharSequence)", + "org.springframework.aot.generate.GeneratedFiles.addResourceFile#(String,InputStreamSource)", + "org.springframework.aot.generate.GeneratedFiles.addResourceFile#(String,InputStreamSource)", + "org.springframework.asm.ClassReader.ClassReader#(String)", + "org.springframework.asm.ClassReader.ClassReader#(InputStream)", + "org.springframework.beans.factory.parsing.ImportDefinition.ImportDefinition#(String,Resource[],Object)", + "org.springframework.beans.factory.parsing.ImportDefinition.ImportDefinition#(String,Resource[],Object)", + "org.springframework.beans.factory.parsing.ImportDefinition.ImportDefinition#(String,Object)", + "org.springframework.beans.factory.parsing.ImportDefinition.ImportDefinition#(String)", + "org.springframework.beans.factory.support.PropertiesBeanDefinitionReader.loadBeanDefinitions#(EncodedResource,String)", + "org.springframework.beans.factory.support.PropertiesBeanDefinitionReader.loadBeanDefinitions#(EncodedResource)", + "org.springframework.beans.factory.support.PropertiesBeanDefinitionReader.loadBeanDefinitions#(Resource,String)", + "org.springframework.beans.factory.support.PropertiesBeanDefinitionReader.loadBeanDefinitions#(Resource)", + "org.springframework.beans.factory.xml.XmlReaderContext.XmlReaderContext#(Resource,ProblemReporter,ReaderEventListener,SourceExtractor,XmlBeanDefinitionReader,NamespaceHandlerResolver)", + "org.springframework.core.io.support.PropertySourceDescriptor.PropertySourceDescriptor#(List,boolean,String,Class,String)", + "org.springframework.core.io.support.PropertySourceDescriptor.PropertySourceDescriptor#(String[])", + "org.springframework.jdbc.core.SqlReturnResultSet.SqlReturnResultSet#(String,RowMapper)", + "org.springframework.jdbc.core.SqlReturnResultSet.SqlReturnResultSet#(String,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlReturnResultSet.SqlReturnResultSet#(String,RowCallbackHandler)", + "org.springframework.jdbc.core.SqlReturnResultSet.SqlReturnResultSet#(String,ResultSetExtractor)", + "org.springframework.jdbc.core.SqlReturnResultSet.SqlReturnResultSet#(String,ResultSetExtractor)", + "org.springframework.jdbc.core.metadata.CallParameterMetaData.CallParameterMetaData#(boolean,String,int,int,String,boolean)", + "org.springframework.jdbc.core.metadata.CallParameterMetaData.CallParameterMetaData#(boolean,String,int,int,String,boolean)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForStream#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForStream#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForStream#(String,Map,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForStream#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForStream#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForStream#(String,SqlParameterSource,RowMapper)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeObject#(Class,SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeObject#(Class,SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeObject#(Class,Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeObject#(Class,Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeObject#(Class,Object[])", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeObject#(Class,Object[])", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeFunction#(Class,SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeFunction#(Class,SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeFunction#(Class,Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeFunction#(Class,Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeFunction#(Class,Object[])", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.executeFunction#(Class,Object[])", + "org.springframework.jdbc.object.BatchSqlUpdate.BatchSqlUpdate#(DataSource,String,int[],int)", + "org.springframework.jdbc.object.BatchSqlUpdate.BatchSqlUpdate#(DataSource,String,int[],int)", + "org.springframework.jdbc.object.BatchSqlUpdate.BatchSqlUpdate#(DataSource,String,int[],int)", + "org.springframework.jdbc.object.BatchSqlUpdate.BatchSqlUpdate#(DataSource,String,int[])", + "org.springframework.jdbc.object.BatchSqlUpdate.BatchSqlUpdate#(DataSource,String,int[])", + "org.springframework.jdbc.object.BatchSqlUpdate.BatchSqlUpdate#(DataSource,String)", + "org.springframework.jdbc.object.SqlFunction.SqlFunction#(DataSource,String,int[],Class)", + "org.springframework.jdbc.object.SqlFunction.SqlFunction#(DataSource,String,int[],Class)", + "org.springframework.jdbc.object.SqlFunction.SqlFunction#(DataSource,String,int[],Class)", + "org.springframework.jdbc.object.SqlFunction.SqlFunction#(DataSource,String,int[])", + "org.springframework.jdbc.object.SqlFunction.SqlFunction#(DataSource,String,int[])", + "org.springframework.jdbc.object.SqlFunction.SqlFunction#(DataSource,String)", + "org.springframework.jdbc.object.SqlUpdate.SqlUpdate#(DataSource,String,int[],int)", + "org.springframework.jdbc.object.SqlUpdate.SqlUpdate#(DataSource,String,int[],int)", + "org.springframework.jdbc.object.SqlUpdate.SqlUpdate#(DataSource,String,int[])", + "org.springframework.jdbc.object.SqlUpdate.SqlUpdate#(DataSource,String,int[])", + "org.springframework.jdbc.object.SqlUpdate.SqlUpdate#(DataSource,String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTimestamp#(String,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTimestamp#(String,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTimestamp#(int,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTimestamp#(int,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTimestamp#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTimestamp#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTime#(String,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTime#(String,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTime#(int,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTime#(int,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTime#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getTime#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getDate#(String,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getDate#(String,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getDate#(int,Calendar)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getDate#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getDate#(int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.newSqlXmlValue#(String)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsSource#(ResultSet,int,Class)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsSource#(ResultSet,int,Class)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsSource#(ResultSet,String,Class)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsSource#(ResultSet,String,Class)", + "org.springframework.jms.connection.DelegatingConnectionFactory.createContext#(String,String,int)", + "org.springframework.jms.connection.DelegatingConnectionFactory.createContext#(String,String)", + "org.springframework.jms.connection.SingleConnectionFactory.createContext#(String,String,int)", + "org.springframework.jms.connection.SingleConnectionFactory.createContext#(String,String)", + "org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy.createContext#(String,String,int)", + "org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy.createContext#(String,String)", + "org.springframework.jms.connection.UserCredentialsConnectionFactoryAdapter.createContext#(String,String,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndNamedParam#(String,String[],Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndNamedParam#(String,String[],Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndNamedParam#(String,String[],Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndNamedParam#(String,String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndNamedParam#(String,String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndNamedParam#(String,String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedParam#(String,String[],Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedParam#(String,String[],Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedParam#(String,String[],Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedParam#(String,String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedParam#(String,String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedParam#(String,String,Object)", + "org.springframework.r2dbc.connection.SingleConnectionFactory.SingleConnectionFactory#(String,boolean)", + "org.springframework.scripting.bsh.BshScriptUtils.createBshObject#(String,Class[],ClassLoader)", + "org.springframework.scripting.bsh.BshScriptUtils.createBshObject#(String,Class[])", + "org.springframework.scripting.bsh.BshScriptUtils.createBshObject#(String)", + "org.springframework.transaction.interceptor.TransactionInterceptor.TransactionInterceptor#(PlatformTransactionManager,Properties)", + "org.springframework.util.DefaultPropertiesPersister.store#(Properties,OutputStream,String)", + "org.springframework.web.socket.client.AbstractWebSocketClient.execute#(WebSocketHandler,WebSocketHttpHeaders,URI)", + "org.springframework.web.socket.client.AbstractWebSocketClient.execute#(WebSocketHandler,String,Object[])", + "org.springframework.web.socket.client.AbstractWebSocketClient.execute#(WebSocketHandler,String,Object[])", + "org.springframework.web.socket.client.WebSocketClient.doHandshake#(WebSocketHandler,WebSocketHttpHeaders,URI)", + "org.springframework.web.socket.client.WebSocketClient.doHandshake#(WebSocketHandler,WebSocketHttpHeaders,URI)", + "org.springframework.web.socket.client.WebSocketClient.doHandshake#(WebSocketHandler,String,Object[])", + "org.springframework.web.socket.client.WebSocketClient.doHandshake#(WebSocketHandler,String,Object[])", + "org.springframework.web.socket.client.jetty.JettyWebSocketClient.executeInternal#(WebSocketHandler,HttpHeaders,URI,List,List,Map)", + "org.springframework.web.socket.client.jetty.JettyWebSocketClient.executeInternal#(WebSocketHandler,HttpHeaders,URI,List,List,Map)", + "org.springframework.web.socket.client.standard.AnnotatedEndpointConnectionManager.AnnotatedEndpointConnectionManager#(Class,String,Object[])", + "org.springframework.web.socket.client.standard.AnnotatedEndpointConnectionManager.AnnotatedEndpointConnectionManager#(Class,String,Object[])", + "org.springframework.web.socket.client.standard.AnnotatedEndpointConnectionManager.AnnotatedEndpointConnectionManager#(Object,String,Object[])", + "org.springframework.web.socket.client.standard.AnnotatedEndpointConnectionManager.AnnotatedEndpointConnectionManager#(Object,String,Object[])", + "org.springframework.web.socket.client.standard.EndpointConnectionManager.EndpointConnectionManager#(Class,String,Object[])", + "org.springframework.web.socket.client.standard.EndpointConnectionManager.EndpointConnectionManager#(Class,String,Object[])", + "org.springframework.web.socket.client.standard.EndpointConnectionManager.EndpointConnectionManager#(Endpoint,String,Object[])", + "org.springframework.web.socket.client.standard.EndpointConnectionManager.EndpointConnectionManager#(Endpoint,String,Object[])", + "org.springframework.web.socket.sockjs.client.SockJsClient.execute#(WebSocketHandler,WebSocketHttpHeaders,URI)", + "org.springframework.web.socket.sockjs.client.SockJsClient.execute#(WebSocketHandler,String,Object[])", + "org.springframework.web.socket.sockjs.client.SockJsClient.execute#(WebSocketHandler,String,Object[])", + "org.springframework.web.socket.sockjs.client.WebSocketClientSockJsSession.WebSocketClientSockJsSession#(TransportRequest,WebSocketHandler,CompletableFuture)", + "org.springframework.web.socket.sockjs.client.WebSocketClientSockJsSession.WebSocketClientSockJsSession#(TransportRequest,WebSocketHandler,SettableListenableFuture)", + "org.springframework.web.testfixture.servlet.MockHttpServletRequest.MockHttpServletRequest#(ServletContext,String,String)", + "org.springframework.web.testfixture.servlet.MockHttpServletRequest.MockHttpServletRequest#(String,String)", + "org.springframework.r2dbc.core.DatabaseClientExtensionsKt.bind#(GenericExecuteSpec,int,Object)", + "org.springframework.r2dbc.core.DatabaseClientExtensionsKt.bind#(GenericExecuteSpec,int,Object)", + "org.springframework.r2dbc.core.DatabaseClientExtensionsKt.bind#(GenericExecuteSpec,String,Object)", + "org.springframework.r2dbc.core.DatabaseClientExtensionsKt.bind#(GenericExecuteSpec,String,Object)", + "org.springframework.r2dbc.core.DatabaseClientExtensionsKt.bind#(GenericExecuteSpec,String,Object)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.and#(RequestPredicate,String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.or#(RequestPredicate,String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.GET#(String,RequestPredicate,SuspendFunction1)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.GET#(String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.HEAD#(String,SuspendFunction1)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.HEAD#(String,RequestPredicate,SuspendFunction1)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.HEAD#(String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.POST#(String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.PUT#(String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.PATCH#(String,SuspendFunction1)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.PATCH#(String,RequestPredicate,SuspendFunction1)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.PATCH#(String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.DELETE#(String)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.OPTIONS#(String,SuspendFunction1)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.OPTIONS#(String,RequestPredicate,SuspendFunction1)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.OPTIONS#(String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.and#(RequestPredicate,String)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.or#(RequestPredicate,String)", + "org.springframework.web.reactive.function.server.ServerResponseExtensionsKt.renderAndAwait#(BodyBuilder,String,String[])", + "org.springframework.web.reactive.function.server.ServerResponseExtensionsKt.renderAndAwait#(BodyBuilder,String,Map)", + "org.springframework.web.servlet.function.RouterFunctionDsl.and#(RequestPredicate,String)", + "org.springframework.web.servlet.function.RouterFunctionDsl.or#(RequestPredicate,String)", + "org.springframework.aop.aspectj.annotation.BeanFactoryAspectInstanceFactory.BeanFactoryAspectInstanceFactory#(BeanFactory,String,Class)", + "org.springframework.aot.generate.DefaultGenerationContext.DefaultGenerationContext#(ClassNameGenerator,GeneratedFiles,RuntimeHints)", + "org.springframework.aot.generate.DefaultGenerationContext.DefaultGenerationContext#(ClassNameGenerator,GeneratedFiles)", + "org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions#(String[])", + "org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions#(String,Set)", + "org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions#(String)", + "org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions#(Resource[])", + "org.springframework.beans.factory.xml.DefaultDocumentLoader.loadDocument#(InputSource,EntityResolver,ErrorHandler,int,boolean)", + "org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions#(InputSource,String)", + "org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions#(InputSource)", + "org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions#(EncodedResource)", + "org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions#(Resource)", + "org.springframework.core.ConfigurableObjectInputStream.ConfigurableObjectInputStream#(InputStream,ClassLoader)", + "org.springframework.core.io.ClassPathResource.ClassPathResource#(String,Class)", + "org.springframework.core.io.ClassPathResource.ClassPathResource#(String,ClassLoader)", + "org.springframework.core.io.ClassPathResource.ClassPathResource#(String)", + "org.springframework.core.io.FileSystemResource.FileSystemResource#(FileSystem,String)", + "org.springframework.core.io.FileSystemResource.FileSystemResource#(FileSystem,String)", + "org.springframework.core.io.FileSystemResource.FileSystemResource#(Path)", + "org.springframework.core.io.FileSystemResource.FileSystemResource#(File)", + "org.springframework.core.io.FileSystemResource.FileSystemResource#(String)", + "org.springframework.core.io.support.EncodedResource.EncodedResource#(Resource,Charset)", + "org.springframework.core.io.support.EncodedResource.EncodedResource#(Resource,String)", + "org.springframework.core.io.support.EncodedResource.EncodedResource#(Resource)", + "org.springframework.http.RequestEntity.method#(HttpMethod,String,Map)", + "org.springframework.http.RequestEntity.method#(HttpMethod,String,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.update#(String,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.update#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.update#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.update#(String,PreparedStatementSetter)", + "org.springframework.jdbc.core.JdbcTemplate.update#(PreparedStatementCreator,KeyHolder)", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.PreparedStatementCreatorFactory#(String,List)", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.PreparedStatementCreatorFactory#(String,List)", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.PreparedStatementCreatorFactory#(String,int[])", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.PreparedStatementCreatorFactory#(String,int[])", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.PreparedStatementCreatorFactory#(String)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildValueArray#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildValueArray#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildValueArray#(ParsedSql,SqlParameterSource,List)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildValueArray#(ParsedSql,SqlParameterSource,List)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildValueArray#(ParsedSql,SqlParameterSource,List)", + "org.springframework.jdbc.datasource.DataSourceUtils.resetConnectionAfterTransaction#(Connection,Integer)", + "org.springframework.jdbc.datasource.DataSourceUtils.resetConnectionAfterTransaction#(Connection,Integer,boolean)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.ResourceDatabasePopulator#(boolean,boolean,String,Resource[])", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.ResourceDatabasePopulator#(Resource[])", + "org.springframework.jdbc.support.JdbcUtils.getResultSetValue#(ResultSet,int)", + "org.springframework.jdbc.support.JdbcUtils.getResultSetValue#(ResultSet,int)", + "org.springframework.jdbc.support.JdbcUtils.getResultSetValue#(ResultSet,int,Class)", + "org.springframework.jdbc.support.JdbcUtils.getResultSetValue#(ResultSet,int,Class)", + "org.springframework.jms.core.JmsTemplate.browse#(String,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.browse#(Queue,BrowserCallback)", + "org.springframework.jms.core.JmsTemplate.sendAndReceive#(String,MessageCreator)", + "org.springframework.jms.core.JmsTemplate.receiveSelectedAndConvert#(String,String)", + "org.springframework.jms.core.JmsTemplate.receiveSelectedAndConvert#(String,String)", + "org.springframework.jms.core.JmsTemplate.receiveSelectedAndConvert#(Destination,String)", + "org.springframework.jms.core.JmsTemplate.receiveSelectedAndConvert#(Destination,String)", + "org.springframework.jms.core.JmsTemplate.receiveSelectedAndConvert#(String)", + "org.springframework.jms.core.JmsTemplate.receiveSelected#(String,String)", + "org.springframework.jms.core.JmsTemplate.receiveSelected#(String,String)", + "org.springframework.jms.core.JmsTemplate.receiveSelected#(Destination,String)", + "org.springframework.jms.core.JmsTemplate.receiveSelected#(String)", + "org.springframework.jms.core.JmsTemplate.send#(String,MessageCreator)", + "org.springframework.orm.hibernate5.HibernateTemplate.replicate#(String,Object,ReplicationMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.replicate#(String,Object,ReplicationMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.lock#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.lock#(String,Object,LockMode)", + "org.springframework.orm.hibernate5.HibernateTemplate.lock#(Object,LockMode)", + "org.springframework.orm.jpa.EntityManagerFactoryUtils.doGetTransactionalEntityManager#(EntityManagerFactory,Map,boolean)", + "org.springframework.orm.jpa.EntityManagerFactoryUtils.doGetTransactionalEntityManager#(EntityManagerFactory,Map)", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.ResourceDatabasePopulator#(boolean,boolean,String,Resource[])", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.ResourceDatabasePopulator#(Resource[])", + "org.springframework.scheduling.concurrent.ConcurrentTaskScheduler.scheduleWithFixedDelay#(Runnable,Duration)", + "org.springframework.scheduling.concurrent.ConcurrentTaskScheduler.scheduleAtFixedRate#(Runnable,Duration)", + "org.springframework.scheduling.concurrent.ConcurrentTaskScheduler.scheduleAtFixedRate#(Runnable,Instant,Duration)", + "org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler.scheduleAtFixedRate#(Runnable,Duration)", + "org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler.scheduleAtFixedRate#(Runnable,Instant,Duration)", + "org.springframework.scripting.support.RefreshableScriptTargetSource.RefreshableScriptTargetSource#(BeanFactory,String,ScriptFactory,ScriptSource,boolean)", + "org.springframework.web.client.RestTemplate.put#(URI,Object)", + "org.springframework.web.client.RestTemplate.put#(String,Object,Map)", + "org.springframework.web.client.RestTemplate.put#(String,Object,Map)", + "org.springframework.web.client.RestTemplate.put#(String,Object,Object[])", + "org.springframework.web.client.RestTemplate.put#(String,Object,Object[])", + "org.springframework.web.client.RestTemplate.postForLocation#(URI,Object)", + "org.springframework.web.client.RestTemplate.postForLocation#(String,Object,Map)", + "org.springframework.web.client.RestTemplate.postForLocation#(String,Object,Map)", + "org.springframework.web.client.RestTemplate.postForLocation#(String,Object,Object[])", + "org.springframework.web.client.RestTemplate.postForLocation#(String,Object,Object[])", + "org.springframework.web.client.RestTemplate.getForEntity#(String,Class,Map)", + "org.springframework.web.client.RestTemplate.getForEntity#(String,Class,Object[])", + "org.springframework.web.client.RestTemplate.getForObject#(String,Class,Map)", + "org.springframework.web.client.RestTemplate.getForObject#(String,Class,Object[])", + "org.springframework.web.client.RestTemplate.getForObject#(String,Class,Object[])", + "org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.contributeMethodArgument#(MethodParameter,Object,UriComponentsBuilder,Map,ConversionService)", + "org.springframework.web.reactive.socket.client.JettyWebSocketClient.execute#(URI,HttpHeaders,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.JettyWebSocketClient.execute#(URI,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.ReactorNetty2WebSocketClient.execute#(URI,HttpHeaders,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.ReactorNetty2WebSocketClient.execute#(URI,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.ReactorNettyWebSocketClient.execute#(URI,HttpHeaders,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.ReactorNettyWebSocketClient.execute#(URI,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.StandardWebSocketClient.execute#(URI,HttpHeaders,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.StandardWebSocketClient.execute#(URI,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.UndertowWebSocketClient.execute#(URI,HttpHeaders,WebSocketHandler)", + "org.springframework.web.reactive.socket.client.UndertowWebSocketClient.execute#(URI,WebSocketHandler)", + "org.springframework.web.servlet.handler.RequestMatchResult.RequestMatchResult#(String,String,PathMatcher)", + "org.springframework.web.servlet.handler.RequestMatchResult.RequestMatchResult#(PathPattern,PathContainer)", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder$MethodArgumentBuilder.MethodArgumentBuilder#(UriComponentsBuilder,Class,Method)", + "org.springframework.web.servlet.mvc.method.annotation.PathVariableMethodArgumentResolver.contributeMethodArgument#(MethodParameter,Object,UriComponentsBuilder,Map,ConversionService)", + "org.springframework.web.testfixture.http.client.MockClientHttpRequest.MockClientHttpRequest#(HttpMethod,URI)", + "org.springframework.web.testfixture.http.client.MockClientHttpRequest.MockClientHttpRequest#(HttpMethod,String,Object[])", + "org.springframework.web.testfixture.http.client.reactive.MockClientHttpRequest.MockClientHttpRequest#(HttpMethod,URI)", + "org.springframework.web.testfixture.http.client.reactive.MockClientHttpRequest.MockClientHttpRequest#(HttpMethod,String,Object[])", + "org.springframework.web.testfixture.http.client.reactive.MockClientHttpRequest.MockClientHttpRequest#(HttpMethod,String,Object[])", + "org.springframework.aot.nativex.FileNativeConfigurationWriter.FileNativeConfigurationWriter#(Path,String,String)", + "org.springframework.aot.nativex.FileNativeConfigurationWriter.FileNativeConfigurationWriter#(Path)", + "org.springframework.beans.factory.parsing.ReaderContext.ReaderContext#(Resource,ProblemReporter,ReaderEventListener,SourceExtractor)", + "org.springframework.context.annotation.TypeFilterUtils.createTypeFiltersFor#(AnnotationAttributes,Environment,ResourceLoader,BeanDefinitionRegistry)", + "org.springframework.context.support.GenericGroovyApplicationContext.load#(Class,String[])", + "org.springframework.context.support.GenericGroovyApplicationContext.load#(String[])", + "org.springframework.context.support.GenericGroovyApplicationContext.load#(Resource[])", + "org.springframework.context.support.GenericGroovyApplicationContext.GenericGroovyApplicationContext#(Class,String[])", + "org.springframework.context.support.GenericGroovyApplicationContext.GenericGroovyApplicationContext#(String[])", + "org.springframework.context.support.GenericGroovyApplicationContext.GenericGroovyApplicationContext#(Resource[])", + "org.springframework.context.support.GenericXmlApplicationContext.load#(Class,String[])", + "org.springframework.context.support.GenericXmlApplicationContext.load#(String[])", + "org.springframework.context.support.GenericXmlApplicationContext.load#(Resource[])", + "org.springframework.context.support.GenericXmlApplicationContext.GenericXmlApplicationContext#(Class,String[])", + "org.springframework.context.support.GenericXmlApplicationContext.GenericXmlApplicationContext#(String[])", + "org.springframework.context.support.GenericXmlApplicationContext.GenericXmlApplicationContext#(Resource[])", + "org.springframework.context.testfixture.index.CandidateComponentsTestClassLoader.CandidateComponentsTestClassLoader#(ClassLoader,Enumeration)", + "org.springframework.core.io.support.PropertiesLoaderUtils.fillProperties#(Properties,Resource)", + "org.springframework.core.io.support.PropertiesLoaderUtils.fillProperties#(Properties,Resource)", + "org.springframework.core.io.support.PropertiesLoaderUtils.fillProperties#(Properties,EncodedResource)", + "org.springframework.core.io.support.PropertiesLoaderUtils.fillProperties#(Properties,EncodedResource)", + "org.springframework.http.codec.ResourceHttpMessageWriter.addHeaders#(ReactiveHttpOutputMessage,Resource,MediaType,Map)", + "org.springframework.http.server.RequestPath.parse#(String,String)", + "org.springframework.http.server.RequestPath.parse#(URI,String)", + "org.springframework.http.server.RequestPath.parse#(URI,String)", + "org.springframework.jdbc.core.JdbcTemplate.execute#(String,CallableStatementCallback)", + "org.springframework.jdbc.core.JdbcTemplate.execute#(CallableStatementCreator,CallableStatementCallback)", + "org.springframework.jdbc.core.JdbcTemplate.execute#(String,PreparedStatementCallback)", + "org.springframework.jdbc.core.JdbcTemplate.execute#(PreparedStatementCreator,PreparedStatementCallback)", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.newPreparedStatementCreator#(String,Object[])", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.newPreparedStatementCreator#(String,Object[])", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.newPreparedStatementCreator#(Object[])", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.newPreparedStatementCreator#(List)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.initializeWithProcedureColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.initializeWithProcedureColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.initializeWithProcedureColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.initializeWithTableColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.initializeWithTableColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.initializeWithTableColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.OracleTableMetaDataProvider.initializeWithTableColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.OracleTableMetaDataProvider.initializeWithTableColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.metadata.OracleTableMetaDataProvider.initializeWithTableColumnMetaData#(DatabaseMetaData,String,String,String)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.batchUpdate#(String,SqlParameterSource[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.batchUpdate#(String,SqlParameterSource[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.batchUpdate#(String,Map[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.batchUpdate#(String,Map[])", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForRowSet#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForRowSet#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForRowSet#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForRowSet#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForMap#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForMap#(String,Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForMap#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.queryForMap#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.substituteNamedParameters#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.substituteNamedParameters#(String,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.substituteNamedParameters#(ParsedSql,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.substituteNamedParameters#(ParsedSql,SqlParameterSource)", + "org.springframework.jdbc.core.support.AbstractSqlTypeValue.setTypeValue#(PreparedStatement,int,int,String)", + "org.springframework.jdbc.core.support.AbstractSqlTypeValue.setTypeValue#(PreparedStatement,int,int,String)", + "org.springframework.jdbc.core.support.AbstractSqlTypeValue.setTypeValue#(PreparedStatement,int,int,String)", + "org.springframework.jdbc.core.support.SqlLobValue.setTypeValue#(PreparedStatement,int,int,String)", + "org.springframework.jdbc.core.support.SqlLobValue.setTypeValue#(PreparedStatement,int,int,String)", + "org.springframework.jdbc.core.support.SqlLobValue.setTypeValue#(PreparedStatement,int,int,String)", + "org.springframework.jdbc.core.support.SqlLobValue.setTypeValue#(PreparedStatement,int,int,String)", + "org.springframework.jdbc.datasource.ConnectionHolder.ConnectionHolder#(Connection,boolean)", + "org.springframework.jdbc.datasource.ConnectionHolder.ConnectionHolder#(Connection)", + "org.springframework.jdbc.datasource.ConnectionHolder.ConnectionHolder#(ConnectionHandle)", + "org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData#(DataSource,String)", + "org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData#(DataSource,String)", + "org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData#(DataSource,DatabaseMetaDataCallback)", + "org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData#(DataSource,DatabaseMetaDataCallback)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsCharacterStream#(PreparedStatement,int,Reader,int)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsCharacterStream#(PreparedStatement,int,Reader,int)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsCharacterStream#(PreparedStatement,int,Reader,int)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsAsciiStream#(PreparedStatement,int,InputStream,int)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsAsciiStream#(PreparedStatement,int,InputStream,int)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsAsciiStream#(PreparedStatement,int,InputStream,int)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setBlobAsBinaryStream#(PreparedStatement,int,InputStream,int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsCharacterStream#(ResultSet,int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsCharacterStream#(ResultSet,int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsCharacterStream#(ResultSet,String)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsCharacterStream#(ResultSet,String)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsBinaryStream#(ResultSet,int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsBinaryStream#(ResultSet,int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsBinaryStream#(ResultSet,String)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsBinaryStream#(ResultSet,String)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsString#(ResultSet,int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsString#(ResultSet,int)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsString#(ResultSet,String)", + "org.springframework.jdbc.support.xml.Jdbc4SqlXmlHandler.getXmlAsString#(ResultSet,String)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByCriteria#(DetachedCriteria,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByCriteria#(DetachedCriteria,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByCriteria#(DetachedCriteria,int,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByCriteria#(DetachedCriteria)", + "org.springframework.util.DefaultPropertiesPersister.load#(Properties,Reader)", + "org.springframework.util.DefaultPropertiesPersister.load#(Properties,InputStream)", + "org.springframework.util.FileSystemUtils.copyRecursively#(Path,Path)", + "org.springframework.util.FileSystemUtils.copyRecursively#(Path,Path)", + "org.springframework.util.FileSystemUtils.copyRecursively#(File,File)", + "org.springframework.util.FileSystemUtils.copyRecursively#(File,File)", + "org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders#(String,PlaceholderResolver)", + "org.springframework.util.PropertyPlaceholderHelper.replacePlaceholders#(String,Properties)", + "org.springframework.util.StreamUtils.copyToString#(InputStream,Charset)", + "org.springframework.web.method.support.CompositeUriComponentsContributor.CompositeUriComponentsContributor#(UriComponentsContributor[])", + "org.springframework.web.reactive.resource.AbstractResourceResolver.resolveResource#(ServerWebExchange,String,List,ResourceResolverChain)", + "org.springframework.web.reactive.resource.AbstractResourceResolver.resolveResource#(ServerWebExchange,String,List,ResourceResolverChain)", + "org.springframework.web.reactive.result.view.script.RenderingContext.RenderingContext#(ApplicationContext,Locale,Function,String)", + "org.springframework.web.servlet.resource.AbstractResourceResolver.resolveResource#(HttpServletRequest,String,List,ResourceResolverChain)", + "org.springframework.web.servlet.resource.AbstractResourceResolver.resolveResource#(HttpServletRequest,String,List,ResourceResolverChain)", + "org.springframework.web.servlet.view.script.RenderingContext.RenderingContext#(ApplicationContext,Locale,Function,String)", + "org.springframework.web.socket.server.standard.ServerEndpointRegistration.ServerEndpointRegistration#(String,Class)", + "org.springframework.web.socket.server.standard.ServerEndpointRegistration.ServerEndpointRegistration#(String,Endpoint)", + "org.springframework.web.socket.sockjs.support.AbstractSockJsService.handleRequest#(ServerHttpRequest,ServerHttpResponse,String,WebSocketHandler)", + "org.springframework.web.socket.sockjs.support.AbstractSockJsService.handleRequest#(ServerHttpRequest,ServerHttpResponse,String,WebSocketHandler)", + "org.springframework.web.testfixture.servlet.MockServletContext.MockServletContext#(String,ResourceLoader)", + "org.springframework.web.testfixture.servlet.MockServletContext.MockServletContext#(String,ResourceLoader)", + "org.springframework.web.testfixture.servlet.MockServletContext.MockServletContext#(ResourceLoader)", + "org.springframework.web.testfixture.servlet.MockServletContext.MockServletContext#(String)", + "org.springframework.web.util.DefaultUriBuilderFactory.expand#(String,Object[])", + "org.springframework.web.util.DefaultUriBuilderFactory.expand#(String,Map)", + "org.springframework.web.util.UriUtils.encodePath#(String,Charset)", + "org.springframework.web.util.UriUtils.encodePath#(String,String)", + "org.springframework.web.util.UriUtils.encodeAuthority#(String,Charset)", + "org.springframework.web.util.UriUtils.encodeAuthority#(String,String)", + "org.springframework.aot.generate.FileSystemGeneratedFiles.addFile#(Kind,String,InputStreamSource)", + "org.springframework.aot.generate.FileSystemGeneratedFiles.addFile#(Kind,String,InputStreamSource)", + "org.springframework.aot.generate.InMemoryGeneratedFiles.addFile#(Kind,String,InputStreamSource)", + "org.springframework.aot.hint.predicate.ResourceHintsPredicates.forResource#(TypeReference,String)", + "org.springframework.aot.hint.support.FilePatternResourceHintsRegistrar.FilePatternResourceHintsRegistrar#(List,List,List)", + "org.springframework.aot.hint.support.FilePatternResourceHintsRegistrar.FilePatternResourceHintsRegistrar#(List,List,List)", + "org.springframework.beans.factory.parsing.Location.Location#(Resource,Object)", + "org.springframework.beans.factory.parsing.Location.Location#(Resource)", + "org.springframework.beans.factory.xml.DefaultNamespaceHandlerResolver.DefaultNamespaceHandlerResolver#(ClassLoader,String)", + "org.springframework.beans.factory.xml.PluggableSchemaResolver.PluggableSchemaResolver#(ClassLoader,String)", + "org.springframework.core.env.CommandLinePropertySource.CommandLinePropertySource#(String,Object)", + "org.springframework.core.env.CommandLinePropertySource.CommandLinePropertySource#(Object)", + "org.springframework.core.env.SimpleCommandLinePropertySource.SimpleCommandLinePropertySource#(String,String[])", + "org.springframework.core.env.SimpleCommandLinePropertySource.SimpleCommandLinePropertySource#(String[])", + "org.springframework.core.io.InputStreamResource.InputStreamResource#(InputStream)", + "org.springframework.core.io.PathResource.PathResource#(URI)", + "org.springframework.core.io.PathResource.PathResource#(String)", + "org.springframework.core.io.PathResource.PathResource#(Path)", + "org.springframework.core.io.buffer.DataBufferUtils.readInputStream#(Callable,DataBufferFactory,int)", + "org.springframework.core.io.support.PropertiesLoaderUtils.loadAllProperties#(String,ClassLoader)", + "org.springframework.core.io.support.PropertiesLoaderUtils.loadAllProperties#(String,ClassLoader)", + "org.springframework.core.io.support.PropertiesLoaderUtils.loadAllProperties#(String)", + "org.springframework.core.io.support.ResourceRegion.ResourceRegion#(Resource,long,long)", + "org.springframework.core.io.support.SpringFactoriesLoader.forResourceLocation#(String,ClassLoader)", + "org.springframework.core.io.support.SpringFactoriesLoader.forResourceLocation#(String)", + "org.springframework.core.task.SimpleAsyncTaskExecutor.execute#(Runnable,long)", + "org.springframework.core.task.SimpleAsyncTaskExecutor.execute#(Runnable)", + "org.springframework.http.ZeroCopyHttpOutputMessage.writeWith#(File,long,long)", + "org.springframework.http.ZeroCopyHttpOutputMessage.writeWith#(File,long,long)", + "org.springframework.http.client.reactive.HttpComponentsClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.HttpComponentsClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.JdkClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.JdkClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.JettyClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.JettyClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.ReactorClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.ReactorClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.ReactorNetty2ClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.client.reactive.ReactorNetty2ClientHttpConnector.connect#(HttpMethod,URI,Function)", + "org.springframework.http.converter.ResourceHttpMessageConverter.addDefaultHeaders#(HttpOutputMessage,Resource,MediaType)", + "org.springframework.http.server.PathContainer.parsePath#(String,Options)", + "org.springframework.jdbc.config.SortedResourcesFactoryBean.SortedResourcesFactoryBean#(ResourceLoader,List)", + "org.springframework.jdbc.config.SortedResourcesFactoryBean.SortedResourcesFactoryBean#(List)", + "org.springframework.jdbc.core.CallableStatementCreatorFactory.CallableStatementCreatorFactory#(String,List)", + "org.springframework.jdbc.core.CallableStatementCreatorFactory.CallableStatementCreatorFactory#(String,List)", + "org.springframework.jdbc.core.CallableStatementCreatorFactory.CallableStatementCreatorFactory#(String)", + "org.springframework.jdbc.core.JdbcTemplate.queryForRowSet#(String,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForRowSet#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForRowSet#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForMap#(String,Object[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForMap#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.queryForMap#(String,Object[],int[])", + "org.springframework.jdbc.core.JdbcTemplate.JdbcTemplate#(DataSource,boolean)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.matchInParameterValuesWithCallParameters#(Object[])", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.matchInParameterValuesWithCallParameters#(Map)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.matchInParameterValuesWithCallParameters#(SqlParameterSource)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.processMetaData#(DataSource,List,String[])", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.processMetaData#(DataSource,List,String[])", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.processMetaData#(DataSource,List,String[])", + "org.springframework.jdbc.core.metadata.TableParameterMetaData.TableParameterMetaData#(String,int,boolean)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.MapSqlParameterSource#(Map)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.MapSqlParameterSource#(String,Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.MapSqlParameterSource#(String,Object)", + "org.springframework.jdbc.core.namedparam.SqlParameterSourceUtils.createBatch#(Map[])", + "org.springframework.jdbc.core.namedparam.SqlParameterSourceUtils.createBatch#(Collection)", + "org.springframework.jdbc.core.namedparam.SqlParameterSourceUtils.createBatch#(Object[])", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.execute#(SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.execute#(Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.execute#(Object[])", + "org.springframework.jdbc.datasource.DriverManagerDataSource.DriverManagerDataSource#(String,Properties)", + "org.springframework.jdbc.datasource.DriverManagerDataSource.DriverManagerDataSource#(String,String,String)", + "org.springframework.jdbc.datasource.DriverManagerDataSource.DriverManagerDataSource#(String,String,String)", + "org.springframework.jdbc.datasource.lookup.MapDataSourceLookup.MapDataSourceLookup#(String,DataSource)", + "org.springframework.jdbc.datasource.lookup.MapDataSourceLookup.MapDataSourceLookup#(Map)", + "org.springframework.jdbc.object.SqlQuery.findObjectByNamedParam#(Map)", + "org.springframework.jdbc.object.SqlQuery.findObjectByNamedParam#(Map,Map)", + "org.springframework.jdbc.object.SqlQuery.findObjectByNamedParam#(Map,Map)", + "org.springframework.jdbc.object.SqlQuery.executeByNamedParam#(Map)", + "org.springframework.jdbc.object.SqlQuery.executeByNamedParam#(Map,Map)", + "org.springframework.jdbc.object.SqlQuery.executeByNamedParam#(Map,Map)", + "org.springframework.jdbc.object.SqlUpdate.updateByNamedParam#(Map,KeyHolder)", + "org.springframework.jdbc.object.SqlUpdate.updateByNamedParam#(Map,KeyHolder)", + "org.springframework.jdbc.object.SqlUpdate.updateByNamedParam#(Map)", + "org.springframework.jdbc.object.StoredProcedure.execute#(ParameterMapper)", + "org.springframework.jdbc.object.StoredProcedure.execute#(Map)", + "org.springframework.jdbc.object.StoredProcedure.execute#(Object[])", + "org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate#(String,String,SQLException)", + "org.springframework.jdbc.support.AbstractFallbackSQLExceptionTranslator.translate#(String,String,SQLException)", + "org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.SQLErrorCodeSQLExceptionTranslator#(String)", + "org.springframework.jdbc.support.incrementer.AbstractColumnMaxValueIncrementer.AbstractColumnMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.AbstractColumnMaxValueIncrementer.AbstractColumnMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.AbstractColumnMaxValueIncrementer.AbstractColumnMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.AbstractIdentityColumnMaxValueIncrementer.AbstractIdentityColumnMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.AbstractIdentityColumnMaxValueIncrementer.AbstractIdentityColumnMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.AbstractIdentityColumnMaxValueIncrementer.AbstractIdentityColumnMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.HsqlMaxValueIncrementer.HsqlMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.HsqlMaxValueIncrementer.HsqlMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.HsqlMaxValueIncrementer.HsqlMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer.MySQLMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer.MySQLMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.MySQLMaxValueIncrementer.MySQLMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SqlServerMaxValueIncrementer.SqlServerMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SqlServerMaxValueIncrementer.SqlServerMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SqlServerMaxValueIncrementer.SqlServerMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SybaseAnywhereMaxValueIncrementer.SybaseAnywhereMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SybaseAnywhereMaxValueIncrementer.SybaseAnywhereMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SybaseAnywhereMaxValueIncrementer.SybaseAnywhereMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SybaseMaxValueIncrementer.SybaseMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SybaseMaxValueIncrementer.SybaseMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.incrementer.SybaseMaxValueIncrementer.SybaseMaxValueIncrementer#(DataSource,String,String)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsString#(PreparedStatement,int,String)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsString#(PreparedStatement,int,String)", + "org.springframework.jdbc.support.lob.TemporaryLobCreator.setClobAsString#(PreparedStatement,int,String)", + "org.springframework.jms.core.JmsMessagingTemplate.sendAndReceive#(String,Message)", + "org.springframework.jms.core.JmsMessagingTemplate.receiveAndConvert#(String,Class)", + "org.springframework.jms.core.JmsMessagingTemplate.send#(String,Message)", + "org.springframework.jms.support.destination.DynamicDestinationResolver.resolveDestinationName#(Session,String,boolean)", + "org.springframework.messaging.simp.stomp.ReactorNettyTcpStompClient.ReactorNettyTcpStompClient#(String,int)", + "org.springframework.orm.hibernate5.HibernateTemplate.merge#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.merge#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.persist#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.persist#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.persist#(Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.saveOrUpdate#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.saveOrUpdate#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.saveOrUpdate#(Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.save#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.save#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.save#(Object)", + "org.springframework.orm.jpa.EntityManagerFactoryUtils.getTransactionalEntityManager#(EntityManagerFactory,Map)", + "org.springframework.oxm.xstream.XStreamMarshaller.unmarshalInputStream#(InputStream,DataHolder)", + "org.springframework.oxm.xstream.XStreamMarshaller.unmarshalInputStream#(InputStream)", + "org.springframework.r2dbc.connection.ConnectionFactoryUtils.convertR2dbcException#(String,String,R2dbcException)", + "org.springframework.r2dbc.core.binding.MutableBindings.bind#(Object)", + "org.springframework.r2dbc.core.binding.MutableBindings.bind#(BindMarker,Object)", + "org.springframework.scheduling.concurrent.ConcurrentTaskExecutor.execute#(Runnable)", + "org.springframework.scheduling.quartz.SimpleThreadPoolTaskExecutor.execute#(Runnable,long)", + "org.springframework.scripting.bsh.BshScriptFactory.BshScriptFactory#(String,Class[])", + "org.springframework.scripting.support.StaticScriptSource.StaticScriptSource#(String)", + "org.springframework.web.client.ResponseErrorHandler.handleError#(URI,HttpMethod,ClientHttpResponse)", + "org.springframework.web.reactive.function.server.RouterFunctions.resources#(String,Resource)", + "org.springframework.web.reactive.resource.AbstractResourceResolver.resolveUrlPath#(String,List,ResourceResolverChain)", + "org.springframework.web.reactive.resource.AbstractResourceResolver.resolveUrlPath#(String,List,ResourceResolverChain)", + "org.springframework.web.reactive.resource.CachingResourceTransformer.transform#(ServerWebExchange,Resource,ResourceTransformerChain)", + "org.springframework.web.reactive.resource.CssLinkResourceTransformer.transform#(ServerWebExchange,Resource,ResourceTransformerChain)", + "org.springframework.web.reactive.result.view.RedirectView.RedirectView#(String,HttpStatusCode)", + "org.springframework.web.reactive.result.view.RedirectView.RedirectView#(String,HttpStatusCode)", + "org.springframework.web.reactive.result.view.RedirectView.RedirectView#(String)", + "org.springframework.web.reactive.result.view.RequestContext.getContextUrl#(String,Map)", + "org.springframework.web.reactive.result.view.RequestContext.getContextUrl#(String)", + "org.springframework.web.servlet.function.RouterFunctions.resources#(String,Resource)", + "org.springframework.web.servlet.function.RouterFunctions.resources#(String,Resource)", + "org.springframework.web.servlet.handler.MappedInterceptor.matches#(String,PathMatcher)", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.fromMappingName#(UriComponentsBuilder,String)", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.fromMethodCall#(UriComponentsBuilder,Object)", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.fromMethodCall#(Object)", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.fromController#(UriComponentsBuilder,Class)", + "org.springframework.web.servlet.resource.AbstractResourceResolver.resolveUrlPath#(String,List,ResourceResolverChain)", + "org.springframework.web.servlet.resource.CachingResourceTransformer.transform#(HttpServletRequest,Resource,ResourceTransformerChain)", + "org.springframework.web.servlet.resource.CssLinkResourceTransformer.transform#(HttpServletRequest,Resource,ResourceTransformerChain)", + "org.springframework.web.servlet.support.RequestContext.getContextUrl#(String,Map)", + "org.springframework.web.servlet.support.RequestContext.getContextUrl#(String,Map)", + "org.springframework.web.servlet.support.RequestContext.getContextUrl#(String)", + "org.springframework.web.servlet.support.RequestContextUtils.saveOutputFlashMap#(String,HttpServletRequest,HttpServletResponse)", + "org.springframework.web.servlet.support.RequestContextUtils.saveOutputFlashMap#(String,HttpServletRequest,HttpServletResponse)", + "org.springframework.web.servlet.view.InternalResourceView.InternalResourceView#(String,boolean)", + "org.springframework.web.servlet.view.InternalResourceView.InternalResourceView#(String)", + "org.springframework.web.servlet.view.JstlView.JstlView#(String,MessageSource)", + "org.springframework.web.servlet.view.JstlView.JstlView#(String)", + "org.springframework.web.socket.client.ConnectionManagerSupport.ConnectionManagerSupport#(URI)", + "org.springframework.web.socket.client.ConnectionManagerSupport.ConnectionManagerSupport#(String,Object[])", + "org.springframework.web.socket.client.ConnectionManagerSupport.ConnectionManagerSupport#(String,Object[])", + "org.springframework.web.socket.config.annotation.WebMvcStompWebSocketEndpointRegistration.WebMvcStompWebSocketEndpointRegistration#(String[],WebSocketHandler,TaskScheduler)", + "org.springframework.web.socket.sockjs.client.AbstractXhrTransport.executeSendRequest#(URI,HttpHeaders,TextMessage)", + "org.springframework.web.socket.sockjs.client.JettyXhrTransport.executeSendRequestInternal#(URI,HttpHeaders,TextMessage)", + "org.springframework.web.socket.sockjs.client.RestTemplateXhrTransport.executeSendRequestInternal#(URI,HttpHeaders,TextMessage)", + "org.springframework.web.testfixture.http.server.reactive.bootstrap.TomcatHttpServer.TomcatHttpServer#(String,Class)", + "org.springframework.web.testfixture.http.server.reactive.bootstrap.TomcatHttpServer.TomcatHttpServer#(String)", + "org.springframework.web.testfixture.servlet.MockAsyncContext.dispatch#(ServletContext,String)", + "org.springframework.web.testfixture.servlet.MockAsyncContext.dispatch#(String)", + "org.springframework.web.testfixture.servlet.MockPageContext.include#(String,boolean)", + "org.springframework.web.testfixture.servlet.MockPageContext.include#(String)", + "org.springframework.web.util.UriComponents.expand#(UriTemplateVariables)", + "org.springframework.web.util.UriComponents.expand#(Map)", + "org.springframework.web.util.UriComponentsBuilder.build#(Map)", + "org.springframework.web.util.UriComponentsBuilder.build#(Object[])", + "org.springframework.web.util.UriComponentsBuilder.build#(boolean)", + "org.springframework.web.util.UrlPathHelper.getLookupPathForRequest#(HttpServletRequest)", + "org.springframework.messaging.rsocket.RSocketRequesterExtensionsKt.connectTcpAndAwait#(Builder,String,int)", + "org.springframework.messaging.rsocket.RSocketRequesterExtensionsKt.connectTcpAndAwait#(Builder,String,int)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.resources#(String,Resource)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.resources#(String,Resource)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.resources#(String,Resource)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.resources#(String,Resource)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.resources#(Function1)", + "org.springframework.web.servlet.function.RouterFunctionDsl.resources#(String,Resource)", + "org.springframework.web.servlet.function.RouterFunctionDsl.resources#(String,Resource)", + "org.springframework.aot.agent.InstrumentedBridgeMethods.modulegetResourceAsStream#(Module,String)", + "org.springframework.aot.agent.InstrumentedBridgeMethods.classloadergetResources#(ClassLoader,String)", + "org.springframework.aot.agent.InstrumentedBridgeMethods.classloaderresources#(ClassLoader,String)", + "org.springframework.aot.agent.InstrumentedBridgeMethods.classloadergetResourceAsStream#(ClassLoader,String)", + "org.springframework.aot.agent.InstrumentedBridgeMethods.classloadergetResource#(ClassLoader,String)", + "org.springframework.aot.agent.InstrumentedBridgeMethods.classgetResourceAsStream#(Class,String)", + "org.springframework.aot.agent.InstrumentedBridgeMethods.classgetResource#(Class,String)", + "org.springframework.aot.generate.FileSystemGeneratedFiles.FileSystemGeneratedFiles#(Function)", + "org.springframework.aot.generate.FileSystemGeneratedFiles.FileSystemGeneratedFiles#(Path)", + "org.springframework.aot.generate.GeneratedFiles.addClassFile#(String,InputStreamSource)", + "org.springframework.aot.generate.InMemoryGeneratedFiles.getGeneratedFile#(Kind,String)", + "org.springframework.aot.generate.InMemoryGeneratedFiles.getGeneratedFileContent#(Kind,String)", + "org.springframework.aot.generate.InMemoryGeneratedFiles.getGeneratedFileContent#(Kind,String)", + "org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader.loadBeanDefinitions#(EncodedResource)", + "org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader.loadBeanDefinitions#(Resource)", + "org.springframework.beans.factory.xml.BeansDtdResolver.resolveEntity#(String,String)", + "org.springframework.beans.factory.xml.DelegatingEntityResolver.resolveEntity#(String,String)", + "org.springframework.beans.factory.xml.PluggableSchemaResolver.resolveEntity#(String,String)", + "org.springframework.beans.factory.xml.ResourceEntityResolver.resolveEntity#(String,String)", + "org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions#(Document,Resource)", + "org.springframework.beans.support.ResourceEditorRegistrar.ResourceEditorRegistrar#(ResourceLoader,PropertyResolver)", + "org.springframework.build.shadow.ShadowSource.relocate#(String,String)", + "org.springframework.context.testfixture.index.CandidateComponentsTestClassLoader.index#(ClassLoader,Resource[])", + "org.springframework.core.io.FileUrlResource.FileUrlResource#(String)", + "org.springframework.core.io.FileUrlResource.FileUrlResource#(URL)", + "org.springframework.core.io.UrlResource.from#(String)", + "org.springframework.core.io.UrlResource.from#(URI)", + "org.springframework.core.io.support.DefaultPropertySourceFactory.createPropertySource#(String,EncodedResource)", + "org.springframework.core.io.support.PropertiesLoaderUtils.loadProperties#(Resource)", + "org.springframework.core.io.support.PropertiesLoaderUtils.loadProperties#(EncodedResource)", + "org.springframework.core.io.support.SpringFactoriesLoader.loadFactoryNames#(Class,ClassLoader)", + "org.springframework.core.io.support.SpringFactoriesLoader.loadFactories#(Class,ClassLoader)", + "org.springframework.core.serializer.support.SerializationDelegate.serialize#(Object,OutputStream)", + "org.springframework.core.task.support.TaskExecutorAdapter.submit#(Runnable)", + "org.springframework.core.testfixture.io.ResourceTestUtils.qualifiedResource#(Class,String)", + "org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader#(Resource)", + "org.springframework.http.HttpHeaders.setContentDispositionFormData#(String,String)", + "org.springframework.http.HttpRange.toResourceRegions#(List,Resource)", + "org.springframework.http.MediaTypeFactory.getMediaType#(Resource)", + "org.springframework.http.client.AbstractClientHttpRequestFactoryWrapper.createRequest#(URI,HttpMethod)", + "org.springframework.http.client.HttpComponentsClientHttpRequestFactory.createRequest#(URI,HttpMethod)", + "org.springframework.http.client.OkHttp3ClientHttpRequestFactory.createRequest#(URI,HttpMethod)", + "org.springframework.http.client.SimpleClientHttpRequestFactory.createRequest#(URI,HttpMethod)", + "org.springframework.instrument.classloading.ResourceOverridingShadowingClassLoader.override#(String,String)", + "org.springframework.instrument.classloading.ResourceOverridingShadowingClassLoader.override#(String,String)", + "org.springframework.jdbc.core.ArgumentTypePreparedStatementSetter.ArgumentTypePreparedStatementSetter#(Object[],int[])", + "org.springframework.jdbc.core.ArgumentTypePreparedStatementSetter.ArgumentTypePreparedStatementSetter#(Object[],int[])", + "org.springframework.jdbc.core.BeanPropertyRowMapper.mapRow#(ResultSet,int)", + "org.springframework.jdbc.core.CallableStatementCreatorFactory.newCallableStatementCreator#(ParameterMapper)", + "org.springframework.jdbc.core.CallableStatementCreatorFactory.newCallableStatementCreator#(Map)", + "org.springframework.jdbc.core.ColumnMapRowMapper.mapRow#(ResultSet,int)", + "org.springframework.jdbc.core.JdbcTemplate.call#(CallableStatementCreator,List)", + "org.springframework.jdbc.core.JdbcTemplate.call#(CallableStatementCreator,List)", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.newPreparedStatementSetter#(Object[])", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.newPreparedStatementSetter#(List)", + "org.springframework.jdbc.core.SingleColumnRowMapper.mapRow#(ResultSet,int)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.createReturnResultSetParameter#(String,RowMapper)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.createReturnResultSetParameter#(String,RowMapper)", + "org.springframework.jdbc.core.metadata.CallMetaDataProviderFactory.createMetaDataProvider#(DataSource,CallMetaDataContext)", + "org.springframework.jdbc.core.metadata.CallMetaDataProviderFactory.createMetaDataProvider#(DataSource,CallMetaDataContext)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.createDefaultInParameter#(String,CallParameterMetaData)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.createDefaultInOutParameter#(String,CallParameterMetaData)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.createDefaultOutParameter#(String,CallParameterMetaData)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.HsqlTableMetaDataProvider.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.HsqlTableMetaDataProvider.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.OracleCallMetaDataProvider.createDefaultOutParameter#(String,CallParameterMetaData)", + "org.springframework.jdbc.core.metadata.PostgresCallMetaDataProvider.createDefaultOutParameter#(String,CallParameterMetaData)", + "org.springframework.jdbc.core.metadata.PostgresCallMetaDataProvider.createDefaultOutParameter#(String,CallParameterMetaData)", + "org.springframework.jdbc.core.metadata.PostgresTableMetaDataProvider.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.PostgresTableMetaDataProvider.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.getSimpleQueryForGetGeneratedKey#(String,String)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.matchInParameterValuesWithInsertColumns#(Map)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.matchInParameterValuesWithInsertColumns#(SqlParameterSource)", + "org.springframework.jdbc.core.metadata.TableMetaDataProviderFactory.createMetaDataProvider#(DataSource,TableMetaDataContext)", + "org.springframework.jdbc.core.metadata.TableMetaDataProviderFactory.createMetaDataProvider#(DataSource,TableMetaDataContext)", + "org.springframework.jdbc.core.namedparam.AbstractSqlParameterSource.registerTypeName#(String,String)", + "org.springframework.jdbc.core.namedparam.AbstractSqlParameterSource.registerTypeName#(String,String)", + "org.springframework.jdbc.core.namedparam.AbstractSqlParameterSource.registerSqlType#(String,int)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.NamedParameterJdbcTemplate#(JdbcOperations)", + "org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate.NamedParameterJdbcTemplate#(DataSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildSqlParameterList#(ParsedSql,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildSqlParameterList#(ParsedSql,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildSqlTypeArray#(ParsedSql,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.buildSqlTypeArray#(ParsedSql,SqlParameterSource)", + "org.springframework.jdbc.core.namedparam.SqlParameterSourceUtils.getTypedValue#(SqlParameterSource,String)", + "org.springframework.jdbc.core.namedparam.SqlParameterSourceUtils.getTypedValue#(SqlParameterSource,String)", + "org.springframework.jdbc.core.simple.AbstractJdbcCall.addDeclaredRowMapper#(String,RowMapper)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.returningResultSet#(String,RowMapper)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.SimpleJdbcCall#(JdbcTemplate)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.SimpleJdbcCall#(DataSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.executeBatch#(SqlParameterSource[])", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.executeBatch#(Map[])", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.executeAndReturnKeyHolder#(SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.executeAndReturnKeyHolder#(Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.executeAndReturnKey#(SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.executeAndReturnKey#(Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.execute#(SqlParameterSource)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.execute#(Map)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.SimpleJdbcInsert#(JdbcTemplate)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.SimpleJdbcInsert#(DataSource)", + "org.springframework.jdbc.core.support.AbstractInterruptibleBatchPreparedStatementSetter.setValues#(PreparedStatement,int)", + "org.springframework.jdbc.core.support.AbstractInterruptibleBatchPreparedStatementSetter.setValues#(PreparedStatement,int)", + "org.springframework.jdbc.core.support.JdbcBeanDefinitionReader.JdbcBeanDefinitionReader#(BeanDefinitionRegistry)", + "org.springframework.jdbc.datasource.AbstractDriverBasedDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.AbstractDriverBasedDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.DataSourceUtils.releaseConnection#(Connection,DataSource)", + "org.springframework.jdbc.datasource.DataSourceUtils.prepareConnectionForTransaction#(Connection,TransactionDefinition)", + "org.springframework.jdbc.datasource.DelegatingDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.DelegatingDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy.getConnection#(String,String)", + "org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy.getConnection#(String,String)", + "org.springframework.jdbc.datasource.SingleConnectionDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.SingleConnectionDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.getConnection#(String,String)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.getConnection#(String,String)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.setCredentialsForCurrentThread#(String,String)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.setCredentialsForCurrentThread#(String,String)", + "org.springframework.jdbc.datasource.embedded.AbstractEmbeddedDatabaseConfigurer.shutdown#(DataSource,String)", + "org.springframework.jdbc.datasource.init.CompositeDatabasePopulator.CompositeDatabasePopulator#(DatabasePopulator[])", + "org.springframework.jdbc.datasource.init.DatabasePopulatorUtils.execute#(DatabasePopulator,DataSource)", + "org.springframework.jdbc.datasource.init.DatabasePopulatorUtils.execute#(DatabasePopulator,DataSource)", + "org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource.getConnection#(String,String)", + "org.springframework.jdbc.datasource.lookup.MapDataSourceLookup.addDataSource#(String,DataSource)", + "org.springframework.jdbc.datasource.lookup.MapDataSourceLookup.addDataSource#(String,DataSource)", + "org.springframework.jdbc.object.SqlFunction.runGeneric#(Object[])", + "org.springframework.jdbc.object.SqlFunction.runGeneric#(int)", + "org.springframework.jdbc.object.SqlFunction.run#(Object[])", + "org.springframework.jdbc.object.SqlFunction.run#(int)", + "org.springframework.jdbc.support.CustomSQLExceptionTranslatorRegistry.registerTranslator#(String,SQLExceptionTranslator)", + "org.springframework.jdbc.support.SQLErrorCodesFactory.registerDatabase#(DataSource,String)", + "org.springframework.jdbc.support.SQLErrorCodesFactory.getErrorCodes#(DataSource)", + "org.springframework.jdbc.support.SQLErrorCodesFactory.getErrorCodes#(String)", + "org.springframework.jdbc.support.incrementer.AbstractDataFieldMaxValueIncrementer.AbstractDataFieldMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.AbstractDataFieldMaxValueIncrementer.AbstractDataFieldMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.AbstractSequenceMaxValueIncrementer.AbstractSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.AbstractSequenceMaxValueIncrementer.AbstractSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.Db2LuwMaxValueIncrementer.Db2LuwMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.Db2LuwMaxValueIncrementer.Db2LuwMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.Db2MainframeMaxValueIncrementer.Db2MainframeMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.Db2MainframeMaxValueIncrementer.Db2MainframeMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.H2SequenceMaxValueIncrementer.H2SequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.H2SequenceMaxValueIncrementer.H2SequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.HanaSequenceMaxValueIncrementer.HanaSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.HanaSequenceMaxValueIncrementer.HanaSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.HsqlSequenceMaxValueIncrementer.HsqlSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.HsqlSequenceMaxValueIncrementer.HsqlSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.MariaDBSequenceMaxValueIncrementer.MariaDBSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.MariaDBSequenceMaxValueIncrementer.MariaDBSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.OracleSequenceMaxValueIncrementer.OracleSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.OracleSequenceMaxValueIncrementer.OracleSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.PostgresSequenceMaxValueIncrementer.PostgresSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.PostgresSequenceMaxValueIncrementer.PostgresSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.SqlServerSequenceMaxValueIncrementer.SqlServerSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.incrementer.SqlServerSequenceMaxValueIncrementer.SqlServerSequenceMaxValueIncrementer#(DataSource,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getClobAsCharacterStream#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getClobAsCharacterStream#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getClobAsAsciiStream#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getClobAsAsciiStream#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getClobAsString#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getClobAsString#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getBlobAsBinaryStream#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getBlobAsBinaryStream#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getBlobAsBytes#(ResultSet,String)", + "org.springframework.jdbc.support.lob.AbstractLobHandler.getBlobAsBytes#(ResultSet,String)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getClobAsCharacterStream#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getClobAsCharacterStream#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getClobAsAsciiStream#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getClobAsAsciiStream#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getClobAsString#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getClobAsString#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getBlobAsBinaryStream#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getBlobAsBinaryStream#(ResultSet,int)", + "org.springframework.jdbc.support.lob.DefaultLobHandler.getBlobAsBytes#(ResultSet,int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getString#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getString#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getShort#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getShort#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getNString#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getNString#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getLong#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getLong#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getInt#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getInt#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getFloat#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getFloat#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getDouble#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getDouble#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getByte#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getByte#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getBoolean#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getBoolean#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getBigDecimal#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.getBigDecimal#(int)", + "org.springframework.jms.connection.DelegatingConnectionFactory.createTopicConnection#(String,String)", + "org.springframework.jms.connection.DelegatingConnectionFactory.createQueueConnection#(String,String)", + "org.springframework.jms.connection.DelegatingConnectionFactory.createConnection#(String,String)", + "org.springframework.jms.connection.SingleConnectionFactory.createTopicConnection#(String,String)", + "org.springframework.jms.connection.SingleConnectionFactory.createConnection#(String,String)", + "org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy.createTopicConnection#(String,String)", + "org.springframework.jms.connection.TransactionAwareConnectionFactoryProxy.createQueueConnection#(String,String)", + "org.springframework.jms.connection.UserCredentialsConnectionFactoryAdapter.createTopicConnection#(String,String)", + "org.springframework.jms.connection.UserCredentialsConnectionFactoryAdapter.createQueueConnection#(String,String)", + "org.springframework.jms.core.JmsTemplate.receiveAndConvert#(String)", + "org.springframework.jms.core.JmsTemplate.receive#(String)", + "org.springframework.jms.listener.adapter.JmsResponse.forQueue#(Object,String)", + "org.springframework.mail.javamail.ConfigurableMimeFileTypeMap.getContentType#(String)", + "org.springframework.mail.javamail.ConfigurableMimeFileTypeMap.getContentType#(File)", + "org.springframework.orm.hibernate5.HibernateTemplate.bulkUpdate#(String,Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.bulkUpdate#(String,Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.iterate#(String,Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.iterate#(String,Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndValueBean#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQueryAndValueBean#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQuery#(String,Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByNamedQuery#(String,Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.findByValueBean#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.findByValueBean#(String,Object)", + "org.springframework.orm.hibernate5.HibernateTemplate.find#(String,Object[])", + "org.springframework.orm.hibernate5.HibernateTemplate.find#(String,Object[])", + "org.springframework.orm.jpa.vendor.EclipseLinkJpaDialect.getJdbcConnection#(EntityManager,boolean)", + "org.springframework.orm.jpa.vendor.HibernateJpaDialect.getJdbcConnection#(EntityManager,boolean)", + "org.springframework.r2dbc.core.Parameter.fromOrEmpty#(Object,Class)", + "org.springframework.r2dbc.core.binding.BindMarkersFactory.indexed#(String,int)", + "org.springframework.r2dbc.core.binding.BindMarkersFactory.indexed#(String,int)", + "org.springframework.scripting.bsh.BshScriptFactory.getScriptedObject#(ScriptSource,Class[])", + "org.springframework.scripting.groovy.GroovyScriptFactory.getScriptedObject#(ScriptSource,Class[])", + "org.springframework.scripting.support.ResourceScriptSource.ResourceScriptSource#(Resource)", + "org.springframework.scripting.support.ResourceScriptSource.ResourceScriptSource#(EncodedResource)", + "org.springframework.ui.freemarker.SpringTemplateLoader.getReader#(Object,String)", + "org.springframework.ui.freemarker.SpringTemplateLoader.SpringTemplateLoader#(ResourceLoader,String)", + "org.springframework.util.AntPathMatcher.combine#(String,String)", + "org.springframework.util.ClassUtils.addResourcePathToPackagePath#(Class,String)", + "org.springframework.util.DefaultPropertiesPersister.loadFromXml#(Properties,InputStream)", + "org.springframework.util.DigestUtils.md5DigestAsHex#(InputStream)", + "org.springframework.util.DigestUtils.md5Digest#(InputStream)", + "org.springframework.util.FileCopyUtils.copyToByteArray#(InputStream)", + "org.springframework.util.FileCopyUtils.copyToByteArray#(File)", + "org.springframework.util.FileSystemUtils.deleteRecursively#(Path)", + "org.springframework.util.FileSystemUtils.deleteRecursively#(File)", + "org.springframework.util.ResourceUtils.toRelativeURL#(URL,String)", + "org.springframework.util.ResourceUtils.toRelativeURL#(URL,String)", + "org.springframework.util.ResourceUtils.toURI#(String)", + "org.springframework.util.ResourceUtils.toURI#(URL)", + "org.springframework.util.StringUtils.pathEquals#(String,String)", + "org.springframework.util.StringUtils.pathEquals#(String,String)", + "org.springframework.util.StringUtils.applyRelativePath#(String,String)", + "org.springframework.util.StringUtils.applyRelativePath#(String,String)", + "org.springframework.web.client.RestTemplate.optionsForAllow#(String,Map)", + "org.springframework.web.client.RestTemplate.optionsForAllow#(String,Object[])", + "org.springframework.web.client.RestTemplate.delete#(String,Map)", + "org.springframework.web.client.RestTemplate.delete#(String,Object[])", + "org.springframework.web.client.RestTemplate.headForHeaders#(String,Map)", + "org.springframework.web.client.RestTemplate.headForHeaders#(String,Object[])", + "org.springframework.web.context.support.ServletContextResource.ServletContextResource#(ServletContext,String)", + "org.springframework.web.reactive.config.PathMatchConfigurer.addPathPrefix#(String,Predicate)", + "org.springframework.web.reactive.function.client.ClientRequest.create#(HttpMethod,URI)", + "org.springframework.web.reactive.function.client.ClientRequest.method#(HttpMethod,URI)", + "org.springframework.web.reactive.function.server.RouterFunctions.resourceLookupFunction#(String,Resource)", + "org.springframework.web.reactive.function.server.RouterFunctions.resourceLookupFunction#(String,Resource)", + "org.springframework.web.reactive.resource.ResourceUrlProvider.getForUriString#(String,ServerWebExchange)", + "org.springframework.web.reactive.resource.TransformedResource.TransformedResource#(Resource,byte[])", + "org.springframework.web.reactive.result.condition.PatternsRequestCondition.PatternsRequestCondition#(List)", + "org.springframework.web.servlet.config.annotation.InterceptorRegistration.excludePathPatterns#(List)", + "org.springframework.web.servlet.config.annotation.RedirectViewControllerRegistration.RedirectViewControllerRegistration#(String,String)", + "org.springframework.web.servlet.config.annotation.RedirectViewControllerRegistration.RedirectViewControllerRegistration#(String,String)", + "org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.addResourceLocations#(Resource[])", + "org.springframework.web.servlet.config.annotation.ResourceHandlerRegistration.addResourceLocations#(String[])", + "org.springframework.web.servlet.config.annotation.ViewControllerRegistry.addStatusController#(String,HttpStatusCode)", + "org.springframework.web.servlet.config.annotation.ViewControllerRegistry.addRedirectViewController#(String,String)", + "org.springframework.web.servlet.config.annotation.ViewControllerRegistry.addRedirectViewController#(String,String)", + "org.springframework.web.servlet.config.annotation.ViewResolverRegistry.jsp#(String,String)", + "org.springframework.web.servlet.function.RouterFunctions.resourceLookupFunction#(String,Resource)", + "org.springframework.web.servlet.function.RouterFunctions.resourceLookupFunction#(String,Resource)", + "org.springframework.web.servlet.mvc.condition.PathPatternsRequestCondition.compareTo#(PathPatternsRequestCondition,HttpServletRequest)", + "org.springframework.web.servlet.resource.ResourceUrlProvider.getForRequestUrl#(HttpServletRequest,String)", + "org.springframework.web.servlet.resource.TransformedResource.TransformedResource#(Resource,byte[])", + "org.springframework.web.socket.config.annotation.AbstractWebSocketHandlerRegistration.addHandler#(WebSocketHandler,String[])", + "org.springframework.web.socket.config.annotation.ServletWebSocketHandlerRegistry.addHandler#(WebSocketHandler,String[])", + "org.springframework.web.socket.sockjs.client.AbstractXhrTransport.executeInfoRequest#(URI,HttpHeaders)", + "org.springframework.web.socket.sockjs.client.AbstractXhrTransport.connectAsync#(TransportRequest,WebSocketHandler)", + "org.springframework.web.socket.sockjs.client.Transport.connect#(TransportRequest,WebSocketHandler)", + "org.springframework.web.socket.sockjs.client.WebSocketTransport.connectAsync#(TransportRequest,WebSocketHandler)", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.options#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.options#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.delete#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.delete#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.patch#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.patch#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.put#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.put#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.post#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.post#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.head#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.head#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.get#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.MockServerHttpRequest.get#(String,Object[])", + "org.springframework.web.testfixture.http.server.reactive.bootstrap.AbstractHttpServer.registerHttpHandler#(String,HttpHandler)", + "org.springframework.web.testfixture.server.MockServerWebExchange.builder#(BaseBuilder)", + "org.springframework.web.testfixture.server.MockServerWebExchange.builder#(MockServerHttpRequest)", + "org.springframework.web.testfixture.server.MockServerWebExchange.from#(BaseBuilder)", + "org.springframework.web.testfixture.server.MockServerWebExchange.from#(MockServerHttpRequest)", + "org.springframework.web.testfixture.servlet.MockServletContext.addJspFile#(String,String)", + "org.springframework.web.util.DefaultUriBuilderFactory.DefaultUriBuilderFactory#(UriComponentsBuilder)", + "org.springframework.web.util.DefaultUriBuilderFactory.DefaultUriBuilderFactory#(String)", + "org.springframework.web.util.UriComponentsBuilder.buildAndExpand#(Object[])", + "org.springframework.web.util.UriComponentsBuilder.buildAndExpand#(Map)", + "org.springframework.web.util.UriComponentsBuilder.parseForwardedFor#(HttpRequest,InetSocketAddress)", + "org.springframework.web.util.UriComponentsBuilder.parseForwardedFor#(HttpRequest,InetSocketAddress)", + "org.springframework.web.util.UriTemplate.expand#(Object[])", + "org.springframework.web.util.UriTemplate.expand#(Map)", + "org.springframework.web.util.WebUtils.getRealPath#(ServletContext,String)", + "org.springframework.web.util.pattern.PathPatternRouteMatcher.match#(String,Route)", + "org.springframework.messaging.rsocket.RSocketRequesterExtensionsKt.connectWebSocketAndAwait#(Builder,URI)", + "org.springframework.messaging.rsocket.RSocketRequesterExtensionsKt.connectWebSocketAndAwait#(Builder,URI)", + "org.springframework.aot.hint.ResourceHints.registerResource#(Resource)", + "org.springframework.beans.factory.config.YamlProcessor.setResources#(Resource[])", + "org.springframework.beans.factory.groovy.GroovyBeanDefinitionReader.importBeans#(String)", + "org.springframework.beans.factory.support.AbstractBeanDefinition.setResource#(Resource)", + "org.springframework.beans.factory.support.AbstractBeanDefinitionReader.setResourceLoader#(ResourceLoader)", + "org.springframework.beans.factory.xml.ResourceEntityResolver.ResourceEntityResolver#(ResourceLoader)", + "org.springframework.beans.factory.xml.XmlBeanDefinitionReader.createReaderContext#(Resource)", + "org.springframework.beans.propertyeditors.FileEditor.setAsText#(String)", + "org.springframework.beans.propertyeditors.InputSourceEditor.setAsText#(String)", + "org.springframework.beans.propertyeditors.InputStreamEditor.setAsText#(String)", + "org.springframework.beans.propertyeditors.PathEditor.setAsText#(String)", + "org.springframework.beans.propertyeditors.PathEditor.PathEditor#(ResourceEditor)", + "org.springframework.beans.propertyeditors.ReaderEditor.setAsText#(String)", + "org.springframework.beans.propertyeditors.URIEditor.setAsText#(String)", + "org.springframework.beans.propertyeditors.URLEditor.setAsText#(String)", + "org.springframework.beans.propertyeditors.URLEditor.URLEditor#(ResourceEditor)", + "org.springframework.beans.testfixture.beans.GenericBean.setResourceList#(List)", + "org.springframework.context.aot.AbstractAotProcessor$Settings$Builder.classOutput#(Path)", + "org.springframework.context.aot.AbstractAotProcessor$Settings$Builder.resourceOutput#(Path)", + "org.springframework.context.aot.AbstractAotProcessor$Settings$Builder.sourceOutput#(Path)", + "org.springframework.context.support.AbstractApplicationContext.getResources#(String)", + "org.springframework.context.support.AbstractRefreshableConfigApplicationContext.setConfigLocations#(String[])", + "org.springframework.context.support.AbstractRefreshableConfigApplicationContext.setConfigLocation#(String)", + "org.springframework.context.support.AbstractResourceBasedMessageSource.addBasenames#(String[])", + "org.springframework.context.support.AbstractResourceBasedMessageSource.setBasenames#(String[])", + "org.springframework.context.support.AbstractResourceBasedMessageSource.setBasename#(String)", + "org.springframework.context.support.GenericApplicationContext.getResources#(String)", + "org.springframework.context.support.GenericApplicationContext.getResource#(String)", + "org.springframework.core.env.CommandLinePropertySource.getProperty#(String)", + "org.springframework.core.io.AbstractResource.createRelative#(String)", + "org.springframework.core.io.ClassPathResource.createRelative#(String)", + "org.springframework.core.io.DefaultResourceLoader.getResource#(String)", + "org.springframework.core.io.FileSystemResource.createRelative#(String)", + "org.springframework.core.io.FileSystemResource.getContentAsString#(Charset)", + "org.springframework.core.io.FileUrlResource.createRelative#(String)", + "org.springframework.core.io.PathResource.createRelative#(String)", + "org.springframework.core.io.Resource.getContentAsString#(Charset)", + "org.springframework.core.io.ResourceEditor.setAsText#(String)", + "org.springframework.core.io.UrlResource.createRelative#(String)", + "org.springframework.core.io.VfsResource.createRelative#(String)", + "org.springframework.core.io.VfsResource.VfsResource#(Object)", + "org.springframework.core.io.support.PathMatchingResourcePatternResolver.getResources#(String)", + "org.springframework.core.io.support.PathMatchingResourcePatternResolver.getResource#(String)", + "org.springframework.core.io.support.PropertiesLoaderSupport.setLocations#(Resource[])", + "org.springframework.core.io.support.PropertiesLoaderSupport.setLocation#(Resource)", + "org.springframework.core.io.support.PropertySourceProcessor.processPropertySource#(PropertySourceDescriptor)", + "org.springframework.core.io.support.ResourceArrayPropertyEditor.setValue#(Object)", + "org.springframework.core.io.support.ResourceArrayPropertyEditor.setAsText#(String)", + "org.springframework.core.io.support.ResourcePatternUtils.getResourcePatternResolver#(ResourceLoader)", + "org.springframework.core.serializer.support.SerializationDelegate.deserialize#(InputStream)", + "org.springframework.core.type.classreading.CachingMetadataReaderFactory.getMetadataReader#(Resource)", + "org.springframework.dao.support.DataAccessUtils.longResult#(Collection)", + "org.springframework.dao.support.DataAccessUtils.intResult#(Collection)", + "org.springframework.http.HttpHeaders.setOrigin#(String)", + "org.springframework.http.HttpHeaders.setLocation#(URI)", + "org.springframework.http.HttpHeaders.setHost#(InetSocketAddress)", + "org.springframework.http.HttpHeaders.setAccessControlAllowOrigin#(String)", + "org.springframework.http.HttpRange.toResourceRegion#(Resource)", + "org.springframework.http.ProblemDetail.setInstance#(URI)", + "org.springframework.http.ProblemDetail.setType#(URI)", + "org.springframework.http.RequestEntity.options#(String,Object[])", + "org.springframework.http.RequestEntity.delete#(String,Object[])", + "org.springframework.http.RequestEntity.patch#(String,Object[])", + "org.springframework.http.RequestEntity.put#(String,Object[])", + "org.springframework.http.RequestEntity.post#(String,Object[])", + "org.springframework.http.RequestEntity.head#(String,Object[])", + "org.springframework.http.RequestEntity.get#(String,Object[])", + "org.springframework.http.ResponseEntity.created#(URI)", + "org.springframework.http.client.SimpleClientHttpRequestFactory.setProxy#(Proxy)", + "org.springframework.http.client.observation.ClientRequestObservationContext.setUriTemplate#(String)", + "org.springframework.http.codec.multipart.DefaultPartHttpMessageReader.setFileStorageDirectory#(Path)", + "org.springframework.http.codec.multipart.FilePart.transferTo#(File)", + "org.springframework.http.converter.BufferedImageHttpMessageConverter.setCacheDir#(File)", + "org.springframework.instrument.classloading.ResourceOverridingShadowingClassLoader.getResources#(String)", + "org.springframework.instrument.classloading.ResourceOverridingShadowingClassLoader.getResourceAsStream#(String)", + "org.springframework.instrument.classloading.ResourceOverridingShadowingClassLoader.getResource#(String)", + "org.springframework.instrument.classloading.ResourceOverridingShadowingClassLoader.suppress#(String)", + "org.springframework.instrument.classloading.ShadowingClassLoader.getResources#(String)", + "org.springframework.instrument.classloading.ShadowingClassLoader.getResourceAsStream#(String)", + "org.springframework.instrument.classloading.ShadowingClassLoader.getResource#(String)", + "org.springframework.jdbc.core.ArgumentPreparedStatementSetter.setValues#(PreparedStatement)", + "org.springframework.jdbc.core.ArgumentPreparedStatementSetter.ArgumentPreparedStatementSetter#(Object[])", + "org.springframework.jdbc.core.ArgumentTypePreparedStatementSetter.setValues#(PreparedStatement)", + "org.springframework.jdbc.core.CallableStatementCreatorFactory.setResultSetType#(int)", + "org.springframework.jdbc.core.CallableStatementCreatorFactory.addParameter#(SqlParameter)", + "org.springframework.jdbc.core.JdbcTemplate.setMaxRows#(int)", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.setGeneratedKeysColumnNames#(String[])", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.setResultSetType#(int)", + "org.springframework.jdbc.core.PreparedStatementCreatorFactory.addParameter#(SqlParameter)", + "org.springframework.jdbc.core.RowCountCallbackHandler.processRow#(ResultSet)", + "org.springframework.jdbc.core.SqlReturnUpdateCount.SqlReturnUpdateCount#(String)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.processParameters#(List)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.initializeMetaData#(DataSource)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.setSchemaName#(String)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.setCatalogName#(String)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.setProcedureName#(String)", + "org.springframework.jdbc.core.metadata.CallMetaDataContext.setOutParameterNames#(List)", + "org.springframework.jdbc.core.metadata.Db2CallMetaDataProvider.metaDataSchemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.DerbyCallMetaDataProvider.metaDataSchemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.parameterNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.metaDataSchemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.metaDataCatalogNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.schemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.catalogNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericCallMetaDataProvider.procedureNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.metaDataSchemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.metaDataCatalogNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.schemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.catalogNameToUse#(String)", + "org.springframework.jdbc.core.metadata.GenericTableMetaDataProvider.tableNameToUse#(String)", + "org.springframework.jdbc.core.metadata.OracleCallMetaDataProvider.metaDataSchemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.OracleCallMetaDataProvider.metaDataCatalogNameToUse#(String)", + "org.springframework.jdbc.core.metadata.PostgresCallMetaDataProvider.metaDataSchemaNameToUse#(String)", + "org.springframework.jdbc.core.metadata.SqlServerCallMetaDataProvider.byPassReturnParameter#(String)", + "org.springframework.jdbc.core.metadata.SqlServerCallMetaDataProvider.parameterNameToUse#(String)", + "org.springframework.jdbc.core.metadata.SybaseCallMetaDataProvider.parameterNameToUse#(String)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.createInsertString#(String[])", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.setSchemaName#(String)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.setCatalogName#(String)", + "org.springframework.jdbc.core.metadata.TableMetaDataContext.setTableName#(String)", + "org.springframework.jdbc.core.namedparam.AbstractSqlParameterSource.getSqlType#(String)", + "org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource.getSqlType#(String)", + "org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource.getValue#(String)", + "org.springframework.jdbc.core.namedparam.BeanPropertySqlParameterSource.BeanPropertySqlParameterSource#(Object)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.getValue#(String)", + "org.springframework.jdbc.core.namedparam.MapSqlParameterSource.addValues#(Map)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.parseSqlStatementIntoString#(String)", + "org.springframework.jdbc.core.namedparam.NamedParameterUtils.parseSqlStatement#(String)", + "org.springframework.jdbc.core.namedparam.SqlParameterSource.getSqlType#(String)", + "org.springframework.jdbc.core.simple.AbstractJdbcCall.setSchemaName#(String)", + "org.springframework.jdbc.core.simple.AbstractJdbcCall.setCatalogName#(String)", + "org.springframework.jdbc.core.simple.AbstractJdbcCall.setInParameterNames#(Set)", + "org.springframework.jdbc.core.simple.AbstractJdbcCall.setProcedureName#(String)", + "org.springframework.jdbc.core.simple.AbstractJdbcInsert.setGeneratedKeyNames#(String[])", + "org.springframework.jdbc.core.simple.AbstractJdbcInsert.setGeneratedKeyName#(String)", + "org.springframework.jdbc.core.simple.AbstractJdbcInsert.setColumnNames#(List)", + "org.springframework.jdbc.core.simple.AbstractJdbcInsert.setCatalogName#(String)", + "org.springframework.jdbc.core.simple.AbstractJdbcInsert.setSchemaName#(String)", + "org.springframework.jdbc.core.simple.AbstractJdbcInsert.setTableName#(String)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.useInParameterNames#(String[])", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.withCatalogName#(String)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.withSchemaName#(String)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.withFunctionName#(String)", + "org.springframework.jdbc.core.simple.SimpleJdbcCall.withProcedureName#(String)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.usingGeneratedKeyColumns#(String[])", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.usingColumns#(String[])", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.withCatalogName#(String)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.withSchemaName#(String)", + "org.springframework.jdbc.core.simple.SimpleJdbcInsert.withTableName#(String)", + "org.springframework.jdbc.core.support.AbstractLobCreatingPreparedStatementCallback.doInPreparedStatement#(PreparedStatement)", + "org.springframework.jdbc.core.support.AbstractLobStreamingResultSetExtractor.extractData#(ResultSet)", + "org.springframework.jdbc.core.support.JdbcBeanDefinitionReader.loadBeanDefinitions#(String)", + "org.springframework.jdbc.core.support.JdbcBeanDefinitionReader.setDataSource#(DataSource)", + "org.springframework.jdbc.datasource.AbstractDriverBasedDataSource.setConnectionProperties#(Properties)", + "org.springframework.jdbc.datasource.AbstractDriverBasedDataSource.setSchema#(String)", + "org.springframework.jdbc.datasource.AbstractDriverBasedDataSource.setCatalog#(String)", + "org.springframework.jdbc.datasource.AbstractDriverBasedDataSource.setPassword#(String)", + "org.springframework.jdbc.datasource.AbstractDriverBasedDataSource.setUsername#(String)", + "org.springframework.jdbc.datasource.DataSourceTransactionManager.setDataSource#(DataSource)", + "org.springframework.jdbc.datasource.DataSourceTransactionManager.DataSourceTransactionManager#(DataSource)", + "org.springframework.jdbc.datasource.DataSourceUtils.getTargetConnection#(Connection)", + "org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection#(DataSource)", + "org.springframework.jdbc.datasource.DataSourceUtils.getConnection#(DataSource)", + "org.springframework.jdbc.datasource.DelegatingDataSource.setTargetDataSource#(DataSource)", + "org.springframework.jdbc.datasource.IsolationLevelDataSourceAdapter.setIsolationLevel#(int)", + "org.springframework.jdbc.datasource.IsolationLevelDataSourceAdapter.setIsolationLevelName#(String)", + "org.springframework.jdbc.datasource.JdbcTransactionObjectSupport.releaseSavepoint#(Object)", + "org.springframework.jdbc.datasource.JdbcTransactionObjectSupport.rollbackToSavepoint#(Object)", + "org.springframework.jdbc.datasource.JdbcTransactionObjectSupport.setPreviousIsolationLevel#(Integer)", + "org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy.setDefaultTransactionIsolationName#(String)", + "org.springframework.jdbc.datasource.LazyConnectionDataSourceProxy.LazyConnectionDataSourceProxy#(DataSource)", + "org.springframework.jdbc.datasource.SimpleConnectionHandle.SimpleConnectionHandle#(Connection)", + "org.springframework.jdbc.datasource.TransactionAwareDataSourceProxy.TransactionAwareDataSourceProxy#(DataSource)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.setSchema#(String)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.setCatalog#(String)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.setPassword#(String)", + "org.springframework.jdbc.datasource.UserCredentialsDataSourceAdapter.setUsername#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.setBlockCommentEndDelimiter#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.setBlockCommentStartDelimiter#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.setCommentPrefixes#(String[])", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.setCommentPrefix#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.setSeparator#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.addScripts#(String[])", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.addScript#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.setName#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder.EmbeddedDatabaseBuilder#(ResourceLoader)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory.setDatabaseName#(String)", + "org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactoryBean.setDatabaseCleaner#(DatabasePopulator)", + "org.springframework.jdbc.datasource.init.CompositeDatabasePopulator.populate#(Connection)", + "org.springframework.jdbc.datasource.init.DataSourceInitializer.setDatabaseCleaner#(DatabasePopulator)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.execute#(DataSource)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.populate#(Connection)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.setBlockCommentEndDelimiter#(String)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.setBlockCommentStartDelimiter#(String)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.setCommentPrefixes#(String[])", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.setCommentPrefix#(String)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.setSeparator#(String)", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.setScripts#(Resource[])", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.addScripts#(Resource[])", + "org.springframework.jdbc.datasource.init.ResourceDatabasePopulator.addScript#(Resource)", + "org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource.setDefaultTargetDataSource#(Object)", + "org.springframework.jdbc.datasource.lookup.AbstractRoutingDataSource.setTargetDataSources#(Map)", + "org.springframework.jdbc.datasource.lookup.BeanFactoryDataSourceLookup.getDataSource#(String)", + "org.springframework.jdbc.datasource.lookup.JndiDataSourceLookup.getDataSource#(String)", + "org.springframework.jdbc.datasource.lookup.MapDataSourceLookup.getDataSource#(String)", + "org.springframework.jdbc.datasource.lookup.MapDataSourceLookup.setDataSources#(Map)", + "org.springframework.jdbc.datasource.lookup.SingleDataSourceLookup.getDataSource#(String)", + "org.springframework.jdbc.object.BatchSqlUpdate.update#(Object[])", + "org.springframework.jdbc.object.BatchSqlUpdate.setBatchSize#(int)", + "org.springframework.jdbc.object.SqlQuery.SqlQuery#(DataSource,String)", + "org.springframework.jdbc.object.MappingSqlQueryWithParameters.MappingSqlQueryWithParameters#(DataSource,String)", + "org.springframework.jdbc.object.MappingSqlQuery.MappingSqlQuery#(DataSource,String)", + "org.springframework.jdbc.object.RdbmsOperation.setParameters#(SqlParameter[])", + "org.springframework.jdbc.object.RdbmsOperation.declareParameter#(SqlParameter)", + "org.springframework.jdbc.object.RdbmsOperation.setGeneratedKeysColumnNames#(String[])", + "org.springframework.jdbc.object.RdbmsOperation.setResultSetType#(int)", + "org.springframework.jdbc.object.RdbmsOperation.setMaxRows#(int)", + "org.springframework.jdbc.object.RdbmsOperation.setJdbcTemplate#(JdbcTemplate)", + "org.springframework.jdbc.object.SqlCall.SqlCall#(DataSource,String)", + "org.springframework.jdbc.object.StoredProcedure.declareParameter#(SqlParameter)", + "org.springframework.jdbc.support.CustomSQLErrorCodesTranslation.setErrorCodes#(String[])", + "org.springframework.jdbc.support.CustomSQLExceptionTranslatorRegistrar.setTranslators#(Map)", + "org.springframework.jdbc.support.CustomSQLExceptionTranslatorRegistry.findTranslatorForDatabase#(String)", + "org.springframework.jdbc.support.DatabaseStartupValidator.setValidationQuery#(String)", + "org.springframework.jdbc.support.DatabaseStartupValidator.setDataSource#(DataSource)", + "org.springframework.jdbc.support.JdbcAccessor.setDatabaseProductName#(String)", + "org.springframework.jdbc.support.JdbcTransactionManager.setDatabaseProductName#(String)", + "org.springframework.jdbc.support.JdbcTransactionManager.JdbcTransactionManager#(DataSource)", + "org.springframework.jdbc.support.JdbcUtils.convertUnderscoreNameToPropertyName#(String)", + "org.springframework.jdbc.support.JdbcUtils.commonDatabaseName#(String)", + "org.springframework.jdbc.support.SQLErrorCodeSQLExceptionTranslator.setDatabaseProductName#(String)", + "org.springframework.jdbc.support.SQLErrorCodes.setBadSqlGrammarCodes#(String[])", + "org.springframework.jdbc.support.SQLErrorCodes.setDatabaseProductNames#(String[])", + "org.springframework.jdbc.support.SQLErrorCodes.setDatabaseProductName#(String)", + "org.springframework.jdbc.support.SQLErrorCodesFactory.resolveErrorCodes#(DataSource)", + "org.springframework.jdbc.support.incrementer.AbstractColumnMaxValueIncrementer.setColumnName#(String)", + "org.springframework.jdbc.support.incrementer.AbstractDataFieldMaxValueIncrementer.setIncrementerName#(String)", + "org.springframework.jdbc.support.incrementer.DerbyMaxValueIncrementer.setDummyName#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.relative#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.absolute#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.findColumn#(String)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSet.ResultSetWrappingSqlRowSet#(ResultSet)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSetMetaData.getTableName#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSetMetaData.getColumnLabel#(int)", + "org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSetMetaData.getCatalogName#(int)", + "org.springframework.jms.config.AbstractJmsListenerEndpoint.setSelector#(String)", + "org.springframework.jms.config.AbstractJmsListenerEndpoint.setDestination#(String)", + "org.springframework.jms.core.JmsMessagingTemplate.receive#(String)", + "org.springframework.jms.core.JmsMessagingTemplate.setDefaultDestinationName#(String)", + "org.springframework.jms.core.JmsTemplate.setDefaultDestinationName#(String)", + "org.springframework.jms.core.support.JmsGatewaySupport.setJmsTemplate#(JmsTemplate)", + "org.springframework.jms.listener.AbstractMessageListenerContainer.setMessageSelector#(String)", + "org.springframework.jms.listener.AbstractMessageListenerContainer.setDestinationName#(String)", + "org.springframework.jms.listener.adapter.AbstractAdaptableMessageListener.setDefaultResponseTopicName#(String)", + "org.springframework.jms.listener.adapter.AbstractAdaptableMessageListener.setDefaultResponseQueueName#(String)", + "org.springframework.jms.listener.endpoint.JmsActivationSpecConfig.setMessageSelector#(String)", + "org.springframework.jmx.access.MBeanClientInterceptor.setServiceUrl#(String)", + "org.springframework.jmx.access.NotificationListenerRegistrar.setServiceUrl#(String)", + "org.springframework.jmx.export.metadata.ManagedResource.setPersistLocation#(String)", + "org.springframework.jmx.export.metadata.ManagedResource.setLogFile#(String)", + "org.springframework.jmx.export.naming.KeyNamingStrategy.setMappingLocations#(Resource[])", + "org.springframework.jmx.export.naming.KeyNamingStrategy.setMappingLocation#(Resource)", + "org.springframework.jmx.support.MBeanServerConnectionFactoryBean.setServiceUrl#(String)", + "org.springframework.mail.javamail.ConfigurableMimeFileTypeMap.setMappingLocation#(Resource)", + "org.springframework.mail.javamail.JavaMailSenderImpl.createMimeMessage#(InputStream)", + "org.springframework.messaging.simp.stomp.StompHeaderAccessor.setHost#(String)", + "org.springframework.messaging.simp.stomp.StompHeaders.setHost#(String)", + "org.springframework.orm.hibernate5.HibernateTemplate.deleteAll#(Collection)", + "org.springframework.orm.hibernate5.HibernateTemplate.enableFilter#(String)", + "org.springframework.orm.hibernate5.HibernateTemplate.loadAll#(Class)", + "org.springframework.orm.hibernate5.HibernateTemplate.executeWithNativeSession#(HibernateCallback)", + "org.springframework.orm.hibernate5.HibernateTemplate.execute#(HibernateCallback)", + "org.springframework.orm.hibernate5.HibernateTemplate.setMaxResults#(int)", + "org.springframework.orm.hibernate5.HibernateTemplate.setFilterNames#(String[])", + "org.springframework.orm.hibernate5.HibernateTransactionManager.HibernateTransactionManager#(SessionFactory)", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setHibernateProperties#(Properties)", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setMappingDirectoryLocations#(Resource[])", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setMappingJarLocations#(Resource[])", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setCacheableMappingLocations#(Resource[])", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setMappingLocations#(Resource[])", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setMappingResources#(String[])", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setConfigLocations#(Resource[])", + "org.springframework.orm.hibernate5.LocalSessionFactoryBean.setConfigLocation#(Resource)", + "org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.createNativeEntityManager#(Map)", + "org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.setJpaProperties#(Properties)", + "org.springframework.orm.jpa.AbstractEntityManagerFactoryBean.setPersistenceUnitName#(String)", + "org.springframework.orm.jpa.EntityManagerFactoryAccessor.setJpaPropertyMap#(Map)", + "org.springframework.orm.jpa.EntityManagerFactoryAccessor.setJpaProperties#(Properties)", + "org.springframework.orm.jpa.JpaTransactionManager.setJpaPropertyMap#(Map)", + "org.springframework.orm.jpa.JpaTransactionManager.setJpaProperties#(Properties)", + "org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.setJtaDataSource#(DataSource)", + "org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.setDataSource#(DataSource)", + "org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.setMappingResources#(String[])", + "org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.setPersistenceUnitRootLocation#(String)", + "org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.setPersistenceUnitName#(String)", + "org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean.setPersistenceXmlLocation#(String)", + "org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager.setDefaultJtaDataSource#(DataSource)", + "org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager.setDefaultDataSource#(DataSource)", + "org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager.setDataSources#(Map)", + "org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager.setMappingResources#(String[])", + "org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager.setDefaultPersistenceUnitRootLocation#(String)", + "org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager.setPersistenceXmlLocations#(String[])", + "org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager.setPersistenceXmlLocation#(String)", + "org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo.setPersistenceUnitRootUrl#(URL)", + "org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo.addJarFileUrl#(URL)", + "org.springframework.orm.jpa.persistenceunit.MutablePersistenceUnitInfo.addMappingFileName#(String)", + "org.springframework.orm.jpa.vendor.AbstractJpaVendorAdapter.setDatabasePlatform#(String)", + "org.springframework.orm.jpa.vendor.AbstractJpaVendorAdapter.setDatabase#(Database)", + "org.springframework.oxm.jaxb.Jaxb2Marshaller.setSchemas#(Resource[])", + "org.springframework.oxm.jaxb.Jaxb2Marshaller.setSchema#(Resource)", + "org.springframework.oxm.support.SaxResourceUtils.createInputSource#(Resource)", + "org.springframework.r2dbc.connection.init.CompositeDatabasePopulator.populate#(Connection)", + "org.springframework.r2dbc.connection.init.ConnectionFactoryInitializer.setDatabaseCleaner#(DatabasePopulator)", + "org.springframework.r2dbc.connection.init.ConnectionFactoryInitializer.setDatabasePopulator#(DatabasePopulator)", + "org.springframework.r2dbc.connection.init.ConnectionFactoryInitializer.setConnectionFactory#(ConnectionFactory)", + "org.springframework.r2dbc.connection.init.DatabasePopulator.populate#(ConnectionFactory)", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.populate#(Connection)", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.setBlockCommentEndDelimiter#(String)", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.setBlockCommentStartDelimiter#(String)", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.setSeparator#(String)", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.setScripts#(Resource[])", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.addScripts#(Resource[])", + "org.springframework.r2dbc.connection.init.ResourceDatabasePopulator.addScript#(Resource)", + "org.springframework.r2dbc.core.DatabaseClient.create#(ConnectionFactory)", + "org.springframework.r2dbc.core.Parameter.from#(Object)", + "org.springframework.r2dbc.core.binding.BindMarkers.next#(String)", + "org.springframework.r2dbc.core.binding.BindMarkersFactory.anonymous#(String)", + "org.springframework.r2dbc.core.binding.Bindings.apply#(BindTarget)", + "org.springframework.r2dbc.core.binding.MutableBindings.nextMarker#(String)", + "org.springframework.scheduling.concurrent.ConcurrentTaskExecutor.setConcurrentExecutor#(Executor)", + "org.springframework.scheduling.quartz.ResourceLoaderClassLoadHelper.getResourceAsStream#(String)", + "org.springframework.scheduling.quartz.ResourceLoaderClassLoadHelper.getResource#(String)", + "org.springframework.scheduling.quartz.SchedulerAccessor.setJobSchedulingDataLocations#(String[])", + "org.springframework.scheduling.quartz.SchedulerAccessor.setJobSchedulingDataLocation#(String)", + "org.springframework.scheduling.quartz.SchedulerFactoryBean.setNonTransactionalDataSource#(DataSource)", + "org.springframework.scheduling.quartz.SchedulerFactoryBean.setDataSource#(DataSource)", + "org.springframework.scheduling.quartz.SchedulerFactoryBean.setConfigLocation#(Resource)", + "org.springframework.scripting.support.StaticScriptSource.setScript#(String)", + "org.springframework.ui.freemarker.FreeMarkerConfigurationFactory.setTemplateLoaderPaths#(String[])", + "org.springframework.ui.freemarker.FreeMarkerConfigurationFactory.setTemplateLoaderPath#(String)", + "org.springframework.ui.freemarker.FreeMarkerConfigurationFactory.setConfigLocation#(Resource)", + "org.springframework.util.FileCopyUtils.copyToString#(Reader)", + "org.springframework.util.ResourceUtils.toURL#(String)", + "org.springframework.util.ResourceUtils.extractArchiveURL#(URL)", + "org.springframework.util.ResourceUtils.extractJarFileURL#(URL)", + "org.springframework.util.ResourceUtils.getURL#(String)", + "org.springframework.util.SerializationUtils.deserialize#(byte[])", + "org.springframework.util.StreamUtils.copyToByteArray#(InputStream)", + "org.springframework.util.StringUtils.cleanPath#(String)", + "org.springframework.util.StringUtils.getFilename#(String)", + "org.springframework.util.xml.XmlValidationModeDetector.detectValidationMode#(InputStream)", + "org.springframework.validation.beanvalidation.LocalValidatorFactoryBean.setMappingLocations#(Resource[])", + "org.springframework.web.accept.PathExtensionContentNegotiationStrategy.getMediaTypeForResource#(Resource)", + "org.springframework.web.accept.ServletPathExtensionContentNegotiationStrategy.getMediaTypeForResource#(Resource)", + "org.springframework.web.client.RestTemplate.setUriTemplateHandler#(UriTemplateHandler)", + "org.springframework.web.client.RestTemplate.setDefaultUriVariables#(Map)", + "org.springframework.web.context.support.GenericWebApplicationContext.setConfigLocations#(String[])", + "org.springframework.web.context.support.GenericWebApplicationContext.setConfigLocation#(String)", + "org.springframework.web.context.support.ServletContextResource.createRelative#(String)", + "org.springframework.web.cors.CorsConfiguration.checkOrigin#(String)", + "org.springframework.web.cors.CorsConfiguration.setAllowedOriginPatterns#(List)", + "org.springframework.web.cors.CorsConfiguration.addAllowedOrigin#(String)", + "org.springframework.web.cors.CorsConfiguration.setAllowedOrigins#(List)", + "org.springframework.web.multipart.MultipartFile.transferTo#(Path)", + "org.springframework.web.multipart.support.AbstractMultipartHttpServletRequest.getFile#(String)", + "org.springframework.web.multipart.support.StringMultipartFileEditor.setValue#(Object)", + "org.springframework.web.multipart.support.StringMultipartFileEditor.setAsText#(String)", + "org.springframework.web.reactive.config.ResourceHandlerRegistration.addResourceLocations#(String[])", + "org.springframework.web.reactive.config.ResourceHandlerRegistry.addResourceHandler#(String[])", + "org.springframework.web.reactive.config.WebFluxConfigurer.addResourceHandlers#(ResourceHandlerRegistry)", + "org.springframework.web.reactive.function.BodyInserters.fromResource#(Resource)", + "org.springframework.web.reactive.function.client.ClientRequest.from#(ClientRequest)", + "org.springframework.web.reactive.function.client.ClientRequestObservationContext.setRequest#(ClientRequest)", + "org.springframework.web.reactive.function.client.ClientRequestObservationContext.setUriTemplate#(String)", + "org.springframework.web.reactive.function.server.RequestPredicates.HEAD#(String)", + "org.springframework.web.reactive.function.server.RequestPredicates.GET#(String)", + "org.springframework.web.reactive.function.server.ServerResponse.permanentRedirect#(URI)", + "org.springframework.web.reactive.function.server.ServerResponse.temporaryRedirect#(URI)", + "org.springframework.web.reactive.function.server.ServerResponse.seeOther#(URI)", + "org.springframework.web.reactive.function.server.ServerResponse.created#(URI)", + "org.springframework.web.reactive.handler.SimpleUrlHandlerMapping.setUrlMap#(Map)", + "org.springframework.web.reactive.resource.ContentVersionStrategy.getResourceVersion#(Resource)", + "org.springframework.web.reactive.resource.PathResourceResolver.setAllowedLocations#(Resource[])", + "org.springframework.web.reactive.resource.ResourceWebHandler.setResourceResolvers#(List)", + "org.springframework.web.reactive.resource.ResourceWebHandler.setLocations#(List)", + "org.springframework.web.reactive.resource.ResourceWebHandler.setLocationValues#(List)", + "org.springframework.web.reactive.result.method.annotation.RequestMappingHandlerMapping.setPathPrefixes#(Map)", + "org.springframework.web.reactive.result.view.AbstractUrlBasedView.setUrl#(String)", + "org.springframework.web.reactive.result.view.RedirectView.setHosts#(String[])", + "org.springframework.web.reactive.result.view.Rendering.redirectTo#(String)", + "org.springframework.web.reactive.result.view.UrlBasedViewResolver.setRedirectViewProvider#(Function)", + "org.springframework.web.reactive.result.view.script.ScriptTemplateConfigurer.setResourceLoaderPath#(String)", + "org.springframework.web.reactive.result.view.script.ScriptTemplateConfigurer.setScripts#(String[])", + "org.springframework.web.reactive.result.view.script.ScriptTemplateConfigurer.setEngineName#(String)", + "org.springframework.web.reactive.result.view.script.ScriptTemplateConfigurer.setEngineSupplier#(Supplier)", + "org.springframework.web.reactive.result.view.script.ScriptTemplateConfigurer.setEngine#(ScriptEngine)", + "org.springframework.web.reactive.result.view.script.ScriptTemplateView.setResourceLoaderPath#(String)", + "org.springframework.web.reactive.result.view.script.ScriptTemplateView.setScripts#(String[])", + "org.springframework.web.reactive.result.view.script.ScriptTemplateView.ScriptTemplateView#(String)", + "org.springframework.web.server.ServerWebExchangeDecorator.transformUrl#(String)", + "org.springframework.web.server.adapter.DefaultServerWebExchange.transformUrl#(String)", + "org.springframework.web.server.adapter.ForwardedHeaderTransformer.apply#(ServerHttpRequest)", + "org.springframework.web.service.invoker.HttpRequestValues$Builder.setUriTemplate#(String)", + "org.springframework.web.service.invoker.HttpRequestValues$Builder.setUri#(URI)", + "org.springframework.web.servlet.FlashMap.addTargetRequestParams#(MultiValueMap)", + "org.springframework.web.servlet.FlashMap.setTargetRequestPath#(String)", + "org.springframework.web.servlet.FrameworkServlet.setContextConfigLocation#(String)", + "org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry.addResourceHandler#(String[])", + "org.springframework.web.servlet.config.annotation.ViewControllerRegistration.ViewControllerRegistration#(String)", + "org.springframework.web.servlet.config.annotation.ViewControllerRegistry.addViewController#(String)", + "org.springframework.web.servlet.config.annotation.WebMvcConfigurer.addResourceHandlers#(ResourceHandlerRegistry)", + "org.springframework.web.servlet.function.RequestPredicates.HEAD#(String)", + "org.springframework.web.servlet.function.RequestPredicates.GET#(String)", + "org.springframework.web.servlet.function.ServerResponse.permanentRedirect#(URI)", + "org.springframework.web.servlet.function.ServerResponse.temporaryRedirect#(URI)", + "org.springframework.web.servlet.function.ServerResponse.seeOther#(URI)", + "org.springframework.web.servlet.function.ServerResponse.created#(URI)", + "org.springframework.web.servlet.handler.AbstractHandlerMapping.getHandler#(HttpServletRequest)", + "org.springframework.web.servlet.handler.SimpleUrlHandlerMapping.setUrlMap#(Map)", + "org.springframework.web.servlet.mvc.method.RequestMappingInfo.paths#(String[])", + "org.springframework.web.servlet.mvc.method.annotation.MvcUriComponentsBuilder.relativeTo#(UriComponentsBuilder)", + "org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping.setPathPrefixes#(Map)", + "org.springframework.web.servlet.resource.PathResourceResolver.setAllowedLocations#(Resource[])", + "org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setResourceResolvers#(List)", + "org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setLocations#(List)", + "org.springframework.web.servlet.resource.ResourceHttpRequestHandler.setLocationValues#(List)", + "org.springframework.web.servlet.support.ServletUriComponentsBuilder.fromRequest#(HttpServletRequest)", + "org.springframework.web.servlet.support.ServletUriComponentsBuilder.fromRequestUri#(HttpServletRequest)", + "org.springframework.web.servlet.support.ServletUriComponentsBuilder.fromServletMapping#(HttpServletRequest)", + "org.springframework.web.servlet.support.ServletUriComponentsBuilder.fromContextPath#(HttpServletRequest)", + "org.springframework.web.servlet.tags.UrlTag.setValue#(String)", + "org.springframework.web.servlet.tags.form.FormTag.setServletRelativeAction#(String)", + "org.springframework.web.servlet.tags.form.FormTag.setAction#(String)", + "org.springframework.web.servlet.view.AbstractUrlBasedView.setUrl#(String)", + "org.springframework.web.servlet.view.RedirectView.setHosts#(String[])", + "org.springframework.web.servlet.view.ResourceBundleViewResolver.setBasenames#(String[])", + "org.springframework.web.servlet.view.UrlBasedViewResolver.setRedirectHosts#(String[])", + "org.springframework.web.servlet.view.XmlViewResolver.setLocation#(Resource)", + "org.springframework.web.servlet.view.groovy.GroovyMarkupConfigurer.setResourceLoaderPath#(String)", + "org.springframework.web.servlet.view.script.ScriptTemplateConfigurer.setResourceLoaderPath#(String)", + "org.springframework.web.servlet.view.script.ScriptTemplateConfigurer.setScripts#(String[])", + "org.springframework.web.servlet.view.script.ScriptTemplateConfigurer.setEngineName#(String)", + "org.springframework.web.servlet.view.script.ScriptTemplateConfigurer.setEngineSupplier#(Supplier)", + "org.springframework.web.servlet.view.script.ScriptTemplateConfigurer.setEngine#(ScriptEngine)", + "org.springframework.web.servlet.view.script.ScriptTemplateView.setResourceLoaderPath#(String)", + "org.springframework.web.servlet.view.script.ScriptTemplateView.setScripts#(String[])", + "org.springframework.web.servlet.view.script.ScriptTemplateView.setEngine#(ScriptEngine)", + "org.springframework.web.servlet.view.script.ScriptTemplateView.ScriptTemplateView#(String)", + "org.springframework.web.socket.client.WebSocketConnectionManager.setOrigin#(String)", + "org.springframework.web.socket.config.annotation.AbstractWebSocketHandlerRegistration.setAllowedOriginPatterns#(String[])", + "org.springframework.web.socket.config.annotation.AbstractWebSocketHandlerRegistration.setAllowedOrigins#(String[])", + "org.springframework.web.socket.config.annotation.SockJsServiceRegistration.setClientLibraryUrl#(String)", + "org.springframework.web.socket.config.annotation.WebMvcStompEndpointRegistry.addEndpoint#(String[])", + "org.springframework.web.socket.config.annotation.WebMvcStompWebSocketEndpointRegistration.setAllowedOriginPatterns#(String[])", + "org.springframework.web.socket.config.annotation.WebMvcStompWebSocketEndpointRegistration.setAllowedOrigins#(String[])", + "org.springframework.web.socket.server.support.OriginHandshakeInterceptor.setAllowedOrigins#(Collection)", + "org.springframework.web.socket.server.support.OriginHandshakeInterceptor.OriginHandshakeInterceptor#(Collection)", + "org.springframework.web.socket.sockjs.client.SockJsUrlInfo.getTransportUrl#(TransportType)", + "org.springframework.web.socket.sockjs.client.SockJsUrlInfo.SockJsUrlInfo#(URI)", + "org.springframework.web.socket.sockjs.support.AbstractSockJsService.setAllowedOrigins#(Collection)", + "org.springframework.web.socket.sockjs.support.AbstractSockJsService.setSockJsClientLibraryUrl#(String)", + "org.springframework.web.testfixture.http.client.MockClientHttpRequest.setURI#(URI)", + "org.springframework.web.testfixture.method.MvcAnnotationPredicates.headMapping#(String[])", + "org.springframework.web.testfixture.method.MvcAnnotationPredicates.optionsMapping#(String[])", + "org.springframework.web.testfixture.method.MvcAnnotationPredicates.deleteMapping#(String[])", + "org.springframework.web.testfixture.method.MvcAnnotationPredicates.putMapping#(String[])", + "org.springframework.web.testfixture.method.MvcAnnotationPredicates.getMapping#(String[])", + "org.springframework.web.testfixture.method.MvcAnnotationPredicates.requestMapping#(String[])", + "org.springframework.web.testfixture.servlet.MockHttpServletRequest.setRequestURI#(String)", + "org.springframework.web.testfixture.servlet.MockHttpServletRequest.getRequestDispatcher#(String)", + "org.springframework.web.testfixture.servlet.MockHttpServletRequest.setRemoteAddr#(String)", + "org.springframework.web.testfixture.servlet.MockHttpServletResponse.addIncludedUrl#(String)", + "org.springframework.web.testfixture.servlet.MockHttpServletResponse.setIncludedUrl#(String)", + "org.springframework.web.testfixture.servlet.MockHttpServletResponse.sendRedirect#(String)", + "org.springframework.web.testfixture.servlet.MockHttpServletResponse.encodeRedirectURL#(String)", + "org.springframework.web.testfixture.servlet.MockHttpServletResponse.encodeURL#(String)", + "org.springframework.web.testfixture.servlet.MockMultipartFile.transferTo#(File)", + "org.springframework.web.testfixture.servlet.MockMultipartHttpServletRequest.getFile#(String)", + "org.springframework.web.testfixture.servlet.MockMultipartHttpServletRequest.addFile#(MultipartFile)", + "org.springframework.web.testfixture.servlet.MockPageContext.forward#(String)", + "org.springframework.web.testfixture.servlet.MockPart.write#(String)", + "org.springframework.web.testfixture.servlet.MockRequestDispatcher.MockRequestDispatcher#(String)", + "org.springframework.web.testfixture.servlet.MockServletContext.getRealPath#(String)", + "org.springframework.web.testfixture.servlet.MockServletContext.getRequestDispatcher#(String)", + "org.springframework.web.testfixture.servlet.MockServletContext.getResourceAsStream#(String)", + "org.springframework.web.testfixture.servlet.MockServletContext.getResource#(String)", + "org.springframework.web.testfixture.servlet.MockServletContext.getResourcePaths#(String)", + "org.springframework.web.testfixture.servlet.MockServletContext.getMimeType#(String)", + "org.springframework.web.util.ContentCachingResponseWrapper.sendRedirect#(String)", + "org.springframework.web.util.DefaultUriBuilderFactory.uriString#(String)", + "org.springframework.web.util.DefaultUriBuilderFactory.setDefaultUriVariables#(Map)", + "org.springframework.web.util.ServletRequestPathUtils.getCachedPath#(ServletRequest)", + "org.springframework.web.util.UriComponentsBuilder.fragment#(String)", + "org.springframework.web.util.UriComponentsBuilder.replacePath#(String)", + "org.springframework.web.util.UriComponentsBuilder.pathSegment#(String[])", + "org.springframework.web.util.UriComponentsBuilder.path#(String)", + "org.springframework.web.util.UriComponentsBuilder.host#(String)", + "org.springframework.web.util.UriComponentsBuilder.schemeSpecificPart#(String)", + "org.springframework.web.util.UriComponentsBuilder.scheme#(String)", + "org.springframework.web.util.UriComponentsBuilder.uriComponents#(UriComponents)", + "org.springframework.web.util.UriComponentsBuilder.uri#(URI)", + "org.springframework.web.util.UriComponentsBuilder.fromOriginHeader#(String)", + "org.springframework.web.util.UriComponentsBuilder.fromHttpRequest#(HttpRequest)", + "org.springframework.web.util.UriComponentsBuilder.fromHttpUrl#(String)", + "org.springframework.web.util.UriComponentsBuilder.fromUriString#(String)", + "org.springframework.web.util.UriComponentsBuilder.fromUri#(URI)", + "org.springframework.web.util.UriComponentsBuilder.fromPath#(String)", + "org.springframework.web.util.UriTemplate.match#(String)", + "org.springframework.web.util.UriTemplate.matches#(String)", + "org.springframework.web.util.UriTemplate.UriTemplate#(String)", + "org.springframework.web.util.UrlPathHelper.getOriginatingQueryString#(HttpServletRequest)", + "org.springframework.web.util.UrlPathHelper.getOriginatingRequestUri#(HttpServletRequest)", + "org.springframework.web.util.UrlPathHelper.getRequestUri#(HttpServletRequest)", + "org.springframework.web.util.UrlPathHelper.getResolvedLookupPath#(ServletRequest)", + "org.springframework.web.util.UrlPathHelper.resolveAndCacheLookupPath#(HttpServletRequest)", + "org.springframework.web.util.WebUtils.getTempDir#(ServletContext)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.created#(URI)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.permanentRedirect#(URI)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.temporaryRedirect#(URI)", + "org.springframework.web.reactive.function.server.CoRouterFunctionDsl.seeOther#(URI)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.created#(URI)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.seeOther#(URI)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.temporaryRedirect#(URI)", + "org.springframework.web.reactive.function.server.RouterFunctionDsl.permanentRedirect#(URI)", + "org.springframework.web.reactive.function.server.ServerRequestExtensionsKt.remoteAddressOrNull#(ServerRequest)", + "org.springframework.web.servlet.function.RouterFunctionDsl.created#(URI)", + "org.springframework.web.servlet.function.RouterFunctionDsl.permanentRedirect#(URI)", + "org.springframework.web.servlet.function.RouterFunctionDsl.temporaryRedirect#(URI)", + "org.springframework.web.servlet.function.RouterFunctionDsl.seeOther#(URI)", + ] + ) + } +} + +from Call call +where + not call.getFile().getRelativePath().matches("%/test/%") and + call.getCallee() instanceof ApplicationMode +select call +// # application mode repos tr143 - all models +// "java.sql.Statement.execute#(String)", +// "jakarta.persistence.EntityManager.find#(Class,Object)", +// "org.hibernate.query.Query.executeUpdate#()", +// "jakarta.persistence.EntityManager.createQuery#(String)", +// "jakarta.persistence.EntityManager.createQuery#(CriteriaUpdate)", +// "jakarta.persistence.EntityManager.createQuery#(CriteriaQuery)", +// "java.sql.ResultSet.getString#(String)", "java.util.function.Function.apply#(URL)", +// "java.sql.Connection.prepareStatement#(String)", +// "java.sql.Connection.prepareStatement#(String,int)", +// "jakarta.persistence.TypedQuery.setParameter#(String,Object)", +// "java.sql.PreparedStatement.setString#(int,String)", +// "jakarta.persistence.Query.executeUpdate#()", +// "org.hibernate.query.Query.setParameter#(int,Object)", +// "java.sql.PreparedStatement.setObject#(int,Object)", +// "java.lang.Runtime.addShutdownHook#(Thread)", +// "jakarta.persistence.EntityManager.remove#(Object)", +// "java.lang.Class.getResourceAsStream#(String)", +// "java.lang.ClassLoader.getResourceAsStream#(String)", +// "java.lang.Class.getResourceAsStream#(String)", +// "jakarta.ws.rs.core.MultivaluedMap.getFirst#(String)", +// "jakarta.ws.rs.client.Invocation$Builder.header#(String,Object)", +// "jakarta.ws.rs.client.Invocation$Builder.header#(String,Object)", +// "org.apache.dubbo.rpc.cluster.router.state.StateRouter.route#(BitList,URL,Invocation,boolean,Holder)", +// "jakarta.persistence.criteria.CriteriaBuilder.function#(String,Class,Expression[])", +// "jakarta.ws.rs.client.SyncInvoker.get#()", +// "jakarta.persistence.EntityManager.createNativeQuery#(String)", +// "jakarta.persistence.EntityManager.createNativeQuery#(String)", +// "jakarta.persistence.EntityManager.createNativeQuery#(String,Class)", +// "com.alibaba.nacos.api.naming.NamingService.batchRegisterInstance#(String,String,List)", +// "java.lang.ClassLoader.getResource#(String)", +// "java.net.Socket.connect#(SocketAddress,int)", +// "java.net.InetSocketAddress.InetSocketAddress#(InetAddress,int)", +// "java.net.Socket.connect#(SocketAddress)", "java.sql.Connection.prepareCall#(String)", +// "java.lang.Class.getResource#(String)", "jakarta.ws.rs.core.UriBuilder.build#(Object[])", +// "jakarta.ws.rs.client.SyncInvoker.post#(Entity,Class)", +// "jakarta.ws.rs.client.SyncInvoker.post#(Entity)", +// "jakarta.ws.rs.client.SyncInvoker.post#(Entity)", "java.lang.Class.getResource#(String)", +// "java.sql.PreparedStatement.setDate#(int,Date)", +// "me.chanjar.weixin.common.util.http.RequestExecutor.execute#(String,String,WxType)", +// "me.chanjar.weixin.common.util.http.RequestExecutor.execute#(String,WxMpMaterial,WxType)", +// "org.apache.kafka.clients.consumer.KafkaConsumer.KafkaConsumer#(Map)", +// "java.sql.CallableStatement.getObject#(String,Class)", +// "javax.servlet.http.HttpServletResponse.setHeader#(String,String)", +// "javax.servlet.http.HttpServletResponse.setHeader#(String,String)", +// "org.apache.http.message.AbstractHttpMessage.setHeader#(String,String)", +// "java.net.URLConnection.getInputStream#()", +// "org.apache.dubbo.rpc.cluster.router.MockInvoker.MockInvoker#(URL,boolean)", +// "org.apache.dubbo.rpc.cluster.router.MockInvoker.MockInvoker#(URL)", +// "org.apache.dubbo.remoting.zookeeper.AbstractZookeeperClient.create#(String,boolean,boolean)", +// "java.io.File.listFiles#(FileFilter)", +// "java.sql.CallableStatement.setCharacterStream#(String,Reader,long)", +// "java.sql.CallableStatement.setObject#(String,Object)", +// "jakarta.persistence.EntityManager.createNamedQuery#(String)", +// "jakarta.persistence.criteria.CriteriaBuilder.like#(Expression,String)", +// "jakarta.persistence.criteria.CriteriaBuilder.like#(Expression,String)", +// "jakarta.ws.rs.core.UriBuilder.queryParam#(String,Object[])", +// "jakarta.ws.rs.client.Entity.form#(Form)", "java.io.File.listFiles#(FilenameFilter)", +// "okhttp3.mockwebserver.MockWebServer.url#(String)", +// "org.apache.http.client.methods.HttpRequestBase.setConfig#(RequestConfig)", +// "jodd.http.ProxyInfo.ProxyInfo#(ProxyType,String,int,String,String)", +// "redis.clients.jedis.JedisPool.JedisPool#(GenericObjectPoolConfig,String,int,int,String,int)", +// "io.restassured.specification.RequestSenderOptions.get#(String,Object[])", +// "io.restassured.specification.RequestSenderOptions.get#(String,Object[])", +// "org.apache.curator.framework.api.Pathable.forPath#(String)", +// "com.alibaba.druid.sql.repository.SchemaRepository.console#(String)", +// "org.apache.dubbo.rpc.cluster.router.mesh.route.StandardMeshRuleRouter.StandardMeshRuleRouter<>#(URL)", +// "org.apache.kafka.clients.producer.KafkaProducer.KafkaProducer#(Properties)", +// "apache.rocketmq.v2.Address$Builder.setHost#(String)", +// "org.apache.hc.client5.http.impl.async.CloseableHttpAsyncClient.execute#(SimpleHttpRequest,FutureCallback)", +// "java.lang.Runtime.exec#(String[])", +// "org.jboss.shrinkwrap.api.exporter.StreamExporter.exportTo#(File,boolean)", +// "java.io.BufferedWriter.BufferedWriter#(Writer)", +// "javax.cache.spi.CachingProvider.getCacheManager#(URI,ClassLoader)", +// "org.keycloak.authorization.client.util.HttpMethod.param#(String,String)", +// "org.keycloak.authorization.client.util.HttpMethod.param#(String,String)", +// "java.net.URL.getFile#()", "jakarta.ws.rs.core.UriInfo.getBaseUriBuilder#()", +// "org.wildfly.extras.creaper.core.online.OnlineManagementClient.execute#(String)", +// "org.jboss.shrinkwrap.api.Archive.add#(Asset,String)", "java.lang.Runtime.exec#(String)", +// "io.netty.util.DomainNameMappingBuilder.add#(String,SslContext)", +// "com.alibaba.druid.pool.DruidAbstractDataSource.setUrl#(String)", +// "com.alibaba.druid.sql.SQLUtils.parseStatements#(String,String)", +// "redis.clients.jedis.JedisPool.JedisPool#(GenericObjectPoolConfig,String,int,int,String,int)", +// "okio.Okio.source#(File)", "jodd.http.HttpRequest.post#(String)", +// "me.chanjar.weixin.cp.bean.WxCpAgentWorkBench$WxCpAgentWorkBenchBuilder.url#(String)", +// "me.chanjar.weixin.cp.bean.templatecard.HorizontalContent$HorizontalContentBuilder.url#(String)", +// "me.chanjar.weixin.cp.tp.service.impl.BaseWxCpTpServiceImpl.post#(String,String)", +// "okhttp3.Request$Builder.get#()", "jodd.http.HttpRequest.get#(String)", +// "okhttp3.Request$Builder.post#(RequestBody)", +// "okhttp3.RequestBody.create#(MediaType,String)", "org.redisson.Redisson.create#(Config)", +// "jodd.http.HttpConnectionProvider.useProxy#(ProxyInfo)", +// "io.grpc.ManagedChannelBuilder.forAddress#(String,int)", +// "io.restassured.specification.RequestSpecification.header#(String,Object,Object[])", +// "org.springframework.web.reactive.function.server.ServerResponse$HeadersBuilder.build#()", +// "com.alibaba.csp.sentinel.datasource.FileRefreshableDataSource.FileRefreshableDataSource>#(String,Converter)", +// "com.ecwid.consul.v1.ConsulClient.ConsulClient#(String,int)", +// "com.alibaba.csp.sentinel.datasource.redis.RedisDataSource.RedisDataSource>#(RedisConnectionConfig,String,String,Converter)", +// "org.apache.http.client.utils.URIBuilder.setPath#(String)", +// "org.apache.http.client.utils.URIBuilder.setScheme#(String)", +// "org.elasticsearch.client.support.AbstractClient.prepareUpdate#(String,String,String)", +// "org.apache.hadoop.hbase.client.HTable.getScanner#(Scan)", +// "org.apache.kudu.client.KuduClient.openTable#(String)", +// "com.alicloud.openservices.tablestore.DefaultTableStoreWriter.DefaultTableStoreWriter#(String,ServiceCredentials,String,String,WriterConfig,TableStoreCallback)", +// "org.apache.commons.io.FileUtils.listFiles#(File,IOFileFilter,IOFileFilter)", +// "org.apache.commons.io.FileUtils.forceMkdir#(File)", +// "org.apache.dubbo.config.ReferenceConfigBase.setUrl#(String)", +// "org.springframework.context.support.ClassPathXmlApplicationContext.ClassPathXmlApplicationContext#(String)", +// "com.alibaba.nacos.api.NacosFactory.createConfigService#(Properties)", +// "java.io.File.renameTo#(File)", "org.apache.dubbo.rpc.ServerService.getInvoker#(URL)", +// "java.net.URLEncoder.encode#(String,String)", +// "org.apache.commons.exec.PumpStreamHandler.PumpStreamHandler#(OutputStream,OutputStream,InputStream)", +// "org.rocksdb.RocksDB.open#(DBOptions,String,List,List)", +// "org.apache.kafka.streams.processor.api.MockProcessorContext.MockProcessorContext#(Properties,TaskId,File)", +// "javax.management.remote.JMXConnectorServerFactory.newJMXConnectorServer#(JMXServiceURL,Map,MBeanServer)", +// "java.net.HttpURLConnection.setRequestMethod#(String)", +// "java.nio.file.Paths.get#(String,String[])", +// "org.apache.commons.io.FileUtils.deleteDirectory#(File)", +// "java.sql.DatabaseMetaData.getExportedKeys#(String,String,String)", +// "java.sql.DatabaseMetaData.getPseudoColumns#(String,String,String,String)", +// "org.eclipse.jetty.http.HttpTester$Request.setURI#(String)", "java.io.File.mkdir#()", +// "java.io.FilePermission.FilePermission#(String,String)", +// "org.h2.mvstore.FileStore.open#(String,boolean)", +// "java.nio.file.Files.createTempFile#(String,String,FileAttribute[])", +// "java.sql.DatabaseMetaData.getProcedures#(String,String,String)", +// "java.sql.CallableStatement.setBinaryStream#(String,InputStream,long)", +// "org.postgresql.util.PGobject.setValue#(String)", +// "org.postgresql.util.PGobject.setType#(String)", +// "org.jboss.shrinkwrap.api.container.ResourceContainer.addAsResource#(File,ArchivePath)", +// "java.sql.CallableStatement.setString#(String,String)", +// "org.gradle.process.ExecSpec.args#(Object[])", +// "org.gradle.process.JavaExecSpec.args#(Object[])", +// "org.gradle.api.file.Directory.getAsFile#()", "java.io.File.createNewFile#()", +// "org.gradle.api.tasks.SourceTask.source#(Object[])", +// "org.gradle.testkit.runner.GradleRunner.withProjectDir#(File)", +// "javax.servlet.ServletContext.getResourceAsStream#(String)", +// "javax.servlet.http.HttpServletResponse.sendRedirect#(String)", +// "org.keycloak.saml.BaseSAML2BindingBuilder.relayState#(String)", +// "jakarta.servlet.http.HttpServletResponse.sendRedirect#(String)", +// "java.nio.file.Files.getFileAttributeView#(Path,Class,LinkOption[])", +// "liquibase.statement.core.UpdateStatement.UpdateStatement#(String,String,String)", +// "liquibase.database.jvm.JdbcConnection.prepareStatement#(String)", +// "liquibase.executor.Executor.execute#(SqlStatement)", +// "com.openshift.restclient.ClientBuilder.ClientBuilder#(String)", +// "javax.naming.ldap.InitialLdapContext.InitialLdapContext#(Hashtable,Control[])", +// "java.lang.Process.destroy#()", "jakarta.ws.rs.core.UriInfo.getBaseUri#()", +// "jakarta.mail.Part.setHeader#(String,String)", +// "jakarta.ws.rs.core.Response$ResponseBuilder.location#(URI)", +// "jakarta.servlet.ServletContext.getResourceAsStream#(String)", +// "jakarta.servlet.ServletRequest.getRequestDispatcher#(String)", +// "io.undertow.Undertow$Builder.addHttpsListener#(int,String,SSLContext)", +// "org.keycloak.saml.BaseSAML2BindingBuilder.redirectBinding#(Document)", +// "java.net.URI.getAuthority#()", +// "org.jfree.chart.ChartUtilities.saveChartAsPNG#(File,JFreeChart,int,int)", +// "java.net.URL.URL#(String,String,int,String)", +// "org.jboss.resteasy.plugins.providers.multipart.MultipartFormDataOutput.addFormData#(String,Object,MediaType)", +// "jakarta.ws.rs.client.WebTarget.path#(String)", +// "org.apache.http.impl.cookie.BasicClientCookie.BasicClientCookie#(String,String)", +// "jakarta.ws.rs.client.Client.target#(String)", +// "org.apache.ibatis.jdbc.AbstractSQL.HAVING#(String[])", +// "io.netty.resolver.AddressResolver.resolve#(SocketAddress)", +// "net.sf.jsqlparser.expression.BinaryExpression.setRightExpression#(Expression)", +// "net.sf.jsqlparser.schema.Column.Column#(String)", +// "net.sf.jsqlparser.parser.CCJSqlParserUtil.parse#(String)", +// "org.apache.ibatis.io.Resources.getResourceAsReader#(String)", +// "com.ecwid.consul.v1.ConsulClient.setKVValue#(String,String,String,PutParams)", +// "com.alibaba.nacos.api.config.ConfigService.removeConfig#(String,String)", +// "io.etcd.jetcd.ClientBuilder.endpoints#(String[])", +// "com.weibo.api.motan.config.AbstractServiceConfig.setExport#(String)", +// "com.alibaba.druid.pool.DruidAbstractDataSource.setValidationQuery#(String)", +// "java.net.Authenticator.requestPasswordAuthentication#(String,InetAddress,int,String,String,String,URL,RequestorType)", +// "java.net.HttpCookie.setDomain#(String)", "java.net.Proxy.Proxy#(Type,SocketAddress)", +// "okio.FileSystem.createDirectories#(Path)", "java.security.Provider.configure#(String)", +// "okhttp3.HttpUrl.newBuilder#()", "javax.imageio.ImageIO.read#(File)"