たとえば、この `FileUploadBase`クラスを見つける方法は、どのJARまたは依存関係に属していますか?

…​.//…​
import org.apache.tomcat.util.http.fileupload.FileUploadBase;

@ExceptionHandler(FileUploadBase.FileSizeLimitExceededException.class)
public String handleError3(Exception e, RedirectAttributes redirectAttributes) {

redirectAttributes.addFlashAttribute("message", e.getCause().getMessage());
return "redirect:/uploadStatus";

}

=== 解決策

IntelliJ IDEAでは、クラス名をダブルクリックし、 `CTRL n`(win/**  nix)または` CMD n`(mac)を押して、クラスの詳細について小さなウィンドウを表示させます:

リンク://wp-content/uploads/2017/01/idea-find-class-in-jar.png[image://wp-content/uploads/2017/01/idea-find-class-in-jar。 png[idea-find-class-in-jar、幅= 1216、高さ= 267]]

**  Note ** この `FileUploadBase`は` tomcat-embed-core-8.5.6.jar`に属します

=== 参考文献

. リンク://eclipse/eclipse-how-to-know-this-class-belongs-to-which-jar/[Eclipse

 - このクラスがどのJARに属するかを知る方法]

link://tag/idea/[idea]link://tag/idea-tip/[idea tip]link://tag/jar/[jar]