Introduction: After switching the Subversion server address, a problem occurred that failed to submit the code correctly Org.apache.subversion.javahl.ClientException:svn:E200007:Commit failed ( Details follow), how to solve it.
1. Background information
The Subversion server address was switched on the machine because of the project needs, but there was an error that could not be committed at the time of the code submission on the new Subversion server address.
2. Analysis of error messages
Specific error message:
Org.apache.subversion.javahl.ClientException:svn:E200007:Commit failed (Details follow):
Svn:E200007:CHECKOUT Can only is performed on a-version resource [at this time].
Svn:E175002:CHECKOUT request failed on '/svn/bsettle/!svn/rvr/3/code/bsettle/src/main/java/com/bsettle/basic/ Controller/basicdatacontroller.java '
Org.apache.subversion.javahl.ClientException:svn:E200007:Commit failed (Details Follow):
Svn:E200007:CHECKOUT can only is performed on a version resource [at this time].
Svn:E175002:CHECKOUT request failed on '/svn/bsettle/!svn/rvr/3/code/bsettle/src/main/java/com/bsettle/basic/ Controller/basicdatacontroller.java '
Error messages that appear in eclipse:
Based on the error messages that appear above, it is possible to know that information cannot be submitted to the destination server because Checkoutcan only is performed on a version resource[at this time.
The first rule is to exclude the problems caused by the client of the subversion itself, and eclipse itself is not a problem, and it is all working correctly.
That can only be due to the problem of switching Subversion server, unable to commit, is it due to cache local permissions or address information mismatch caused it.
3. Resolution of the problem
Then clear the local cache, right-click the item--> team-> Referesh/clearup [refresh/purge].
Haha, then you can successfully submit the code, the original problem is the different SVN server address of the local cache caused the problem.
4. Summary
The bold assumption, the exclusion analysis, the reasoning argumentation, solves the problem.