3

I was using some old CXF 2.x wsdl2java version and it used to generate Java properties like List deny for a <deny/> element:

class MyDto {
  List deny;

Then I switched to a higher version org.apache.cxf:cxf-codegen-plugin:2.6.16 and it started to generate them as List denies, adding the plural:

class MyDto {
  List denies;

I tried 3.x - it's still there. The problem with this change is it has introduced non obvious bugs into existing codebase. So I'd like to revert it back.

Question: How can I control the style Java properties are generated?

1

0

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.