Added RecordNamingStrategy and spring.cloud.stream.schema.avro.subjectNamingStrategy documentation

Renamed SubjectNamingStrategyImplementation - Improved documentation - Added required changes

Polishing
This commit is contained in:
Jose Antonio Iñigo Garrido
2019-04-25 10:32:04 +02:00
committed by Soby Chacko
parent e9baeea5a9
commit 414b4313c0
3 changed files with 22 additions and 21 deletions

View File

@@ -1994,6 +1994,10 @@ Default: `empty`
spring.cloud.stream.schema.avro.prefix:: The prefix to be used on the Content-Type header.
+
Default: `vnd`
spring.cloud.stream.schema.avro.subjectNamingStrategy:: Determines the subject name used to register the Avro schema in the schema registry. Two implementations are available, `org.springframework.cloud.stream.schema.avro.DefaultSubjectNamingStrategy`,
where the subject is the schema name, and `org.springframework.cloud.stream.schema.avro.QualifiedSubjectNamingStrategy`, which returns a fully qualified subject using the Avro schema namespace and name. Custom strategies can be created by implementing `org.springframework.cloud.stream.schema.avro.SubjectNamingStrategy`.
+
Default: `org.springframework.cloud.stream.schema.avro.DefaultSubjectNamingStrategy`
=== Apache Avro Message Converters