When running the format from the xml editor, the xml appears to be misformated. For instance the following before format:
<bean id="tilesConfigurer"
class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property name="definitions">
<list>
<value>/WEB-INF/jsp/layouts/layouts.xml</value>
<value>/WEB-INF/jsp/adapter/views.xml</value>
<value>/WEB-INF/jsp/adapter/daily/views.xml</value>
</list>
</property>
Then ctrl-shift-f or right click source->format the output is produced
<bean
id="tilesConfigurer"
class="org.springframework.web.servlet.view.tiles2.TilesConfigurer">
<property
name="definitions">
<list>
<value>/WEB-INF/jsp/layouts/layouts.xml
</value>
<value>/WEB-INF/jsp/adapter/views.xml
</value>
<value>/WEB-INF/jsp/adapter/daily/views.xml
</value>
</list>
</property>
</bean>
I would not expect whitespace added to the end of the content in the
<value></value>
tags.
Does anyone know if there is a way to change this behavior? I’m so use to ctrl-shift-f then ctrl-s that I end up causing issues in my spring configuration files.
thanks,
Aaron