在过去的三个月里,我开始研究 Stax Parser。我曾经在调试时看到 stax 事件中的数据或文本。这曾经在我的任务中帮助我很多。但从过去 2 天开始,出现了奇怪的行为。当我调试项目时,我只能看到这样的事件...[Stax Event #1]、[Stax Event #4]、[Stax Event #1]、[Stax Event #4]
This is giving me hard time debugging. I am woodStox stax and java 1.6.
These are dependencies i am using
<dependency>
<groupId>javax.xml</groupId>
<artifactId>jsr173</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.woodstox</groupId>
<artifactId>wstx-asl</artifactId>
<version>4.0.6</version>
</dependency>
<dependency>
<groupId>stax</groupId>
<artifactId>stax-api</artifactId>
<version>1.0.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.stream</groupId>
<artifactId>sjsxp</artifactId>
<version>1.0.2</version>
</dependency>
Do i need to change my settings to get back to normal behavior.