Here is what I'm trying to do with Docx4J 3.3.3
I would like to set values for 4 custom document properties in a DOCX file loading from byte in a database
Then force update the fields
Then export the docx file as a PDF.
Here is the code I'm using for the first 2 steps:
byte[] templateContent = template.content
InputStream inputStream = new ByteArrayInputStream(templateContent)
WordprocessingMLPackage wordMLPackage = Docx4J.load(inputStream)
//set document properties
DocPropsCustomPart docProps = ...