Whenever I run the IntelliJ autoformatter - it converts this:
@Autowired private CustomerDao customerDao;
i开发者_运维问答nto this:
@Autowired
private CustomerDao customerDao;
How can I stop it from doing that?
Navigate to Preferences → Editor → Code Style → Java → Wrapping and Braces tab, then locate the section Field annotations and check the option Do not wrap after single annotation.
In IntelliJ v14:
精彩评论