【发布时间】:2020-09-25 19:56:31
【问题描述】:
我需要一个需要生成“java.net.SocketException: Connection reset”错误的spring boot示例。
【问题讨论】:
标签: spring rest connection reset
我需要一个需要生成“java.net.SocketException: Connection reset”错误的spring boot示例。
【问题讨论】:
标签: spring rest connection reset
为什么整个spring-boot项目要抛出异常?
public static void main( String args[] ){
try{
doThrowSocketException();
}catch{
//Handle the exception
}
}
private void doThrowSocketException() throws SocketException{
throw new SocketException();
}
【讨论】: