如果我尝试以Java应用程序运行,我的代码运行正常。但是当我使用debug作为Java应用程序时,未发现异常文件被抛出。这是我的代码:
public class SecureGameServer {
public static final ApplicationContext ac= new ClassPathXmlApplicationContext("lion-server.xml");//Here I got the exception
//public static final ApplicationContext ac= new FileSystemXmlApplicationContext("src\\main\\resources\\lion-server.xml");This code doesnt work too
public static DefaultChannelGroup gameChannels;
public static void main(String[] args) throws Exception {
...
}
}
什么错了?该计划运作良好。但我无法调试它。
答案 0 :(得分:0)
由于名称ClassPathXmlApplicationContext
表示应用程序上下文文件lion-server.xml
必须位于类路径的某个位置。确保这种情况并且文件具有格式良好的XML。
由于您已包含Eclipse标记,因此该文件可位于您的资源文件夹中,例如src\main\resources
。
答案 1 :(得分:0)
哦,我发现异常是在URLClasspath上。我不知道为什么但是有断点。我刚按F8恢复了它。谢谢大家。