配置svn服务
sc create svn binpath= ""svnserve.exe安装目录" --service -r svn配置库所在目录" displayname= "服务名称" depend=Tcpip start=auto
比如: sc create svn binpath= ""C:\Program Files (x86)\Subversion\bin\svnserve.exe" --service -r D:\svn" displayname= "Subversion Server" depend= Tcpip start= auto
解压缩后报错:
Description Resource Path Location Type Access restriction: xxx
解决方案:右键项目 → properties → Java Build path → Libraries → 删除JRE System Library → 重新add JRE System Library即可。
各种JDK版本不一致
Description Resource Path Location Type
Java compiler level does not match the version of the installed Java project facet.****
Unknown Faceted Project Problem (Java Version Mismatch)
检查以下JDK配置版本, 并把版本配置一致即可:
- eclipse → preference → Java → Installed JRE 的JDK版本
- eclipse → preference → Java → Compiler → Compiler Compilance Level 版本
- 项目 → properties → java Compiler → Compiler Compilance Level 版本
- 项目 → properties → (MyEclipse → ) project Facets → Java 版本
在Spring的applicationContext报警告,于是乎在开头添加<!DOCTYPE xml>
,但是Tomcat启动报错:Document root element "beans", must match DOCTYPE root "xml".
警告内容:
解决方案:待研究。。。