If you want all you string fields be instances of java.lang.String
then you only have to configure the compiler:
java -jar /path/to/avro-tools-1.7.7.jar compile -string schema
or if you are using the Maven plugin
<plugin>
<groupId>org.apache.avro</groupId>
<artifactId>avro-maven-plugin</artifactId>
<version>1.7.7</version>
<configuration>
<stringType>String</stringType>
</configuration>
[...]
</plugin>
If you want one specific field to be of type java.lang.String then… you can’t. It is not supported by the compiler. You can use “java-class” with the reflect API but the compiler does not care.
If you want to learn more, you can set a breakpoint in SpecificCompiler line 372, Avro 1.7.7. You can see that before the call to addStringType()
the schema have the required information in the props
field. If you pass this schema to SpecificCompiler.javaType()
then it will do what you want. But then addStringType
replaces your schema by a static one. I will most likely ask the question on the mailing list since I don’t see the point.