I have exactly the same problem. I want to create a simple Dataset in Java, but use a POJO class which I generated with ByteBuddy before. Then, I get the issue you described. It works, when I use a POJO class which is compiled within the JAR file i am executing with spark. See my code snippet here:
final GenericRowMapper genericRowMapper = new GenericRowMapper(dynamicType);
applyParquetDefaults(
spark.createDataset(new ArrayList<>(), kryo(dynamicType))
.map(genericRowMapper, genericRowMapper.getEncoder())
.writeTo(join(".", db, tableName))
).create();
Did you find any solution to your problem?