本文介紹Java運行環境的錯誤處理,包括錯誤類型和異常資訊。
錯誤類型
您的函數如果在執行過程中拋出異常,Function Compute會捕獲並返回異常資訊。
範例程式碼如下:
package example; import com.aliyun.fc.runtime.Context; import com.aliyun.fc.runtime.StreamRequestHandler; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; public class HelloFC implements StreamRequestHandler { @Override public void handleRequest(InputStream inputStream, OutputStream outputStream, Context context) throws IOException { throw new IOException("oops"); } }
調用函數時收到的響應如下所示。
{ "errorMessage" : "oops", "errorType" : "java.io.IOException", "errorCause" : "oops", "stackTrace" : [ "example.HelloFC.handleRequest(HelloFC.java:15)" ] }
如果您的函數在運行過程中主動退出,系統會返回一個通用的錯誤資訊。
範例程式碼如下:
package example; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import com.aliyun.fc.runtime.Context; import com.aliyun.fc.runtime.StreamRequestHandler; public class App implements StreamRequestHandler { @Override public void handleRequest(InputStream inputStream, OutputStream outputStream, Context context) throws IOException { System.exit(-1); } }
調用函數時收到的響應如下所示。
{ errorMessage: 'Process exited unexpectedly before completing request (duration: 43ms, maxMemoryUsage: 65MB)' }
異常資訊
異常資訊包含如下三個欄位:
欄位 | 類型 | 說明 |
errorMessage | String | 異常資訊。 |
errorType | String | 異常類型。 |
stackTrace | List | 異常堆棧。 |
更多錯誤類型,請參見基礎資訊。