私はSpring MVCを使用しています。私はMyClassのの)(メインでそれをテストするときSpring MVCファイルが見つかりません例外
@Controller
public class MyController{
@RequestMapping(value = "/url", method = RequestMethod.GET)
public String readFile(Locale locale, Model model) {
MyClass.readFile();//File not found exception
....
}
}
読み取り動作しますが、私は、サーバーとの訪問でプロジェクトを実行すると:私のコントローラでは、私は、MyClassの
MyClass{
public static void readFile(){
File file = new FileReader("myPath/myFile.txt");
...
}
public static void main(String[] args) {
readFile();//No problem
}
}
コントローラから関数を呼び出し"/ url"、私はこれを持っています:
java.io.FileNotFoundException: myPath/myFile.txt (The system cannot find the path specified)
コントローラにパスをどのように指定しますか?
ありがとうございます。
おそらく、これはあなたにとって有用かもしれません。https://stackoverflow.com/questions/36371748/spring-boot-access-static-resources-missing-scr-main-resources – lenach87