#概要
Springboot(maven)を用いてコードを作成しているが、ビルドエラーが起きてしまう。
エラー内容は以下の通り。
Javaに関する知識が浅く質問内容が曖昧で申し訳ありませんがどなたか力を貸していただけないでしょうか。
#エラー内容
non-static variable weatherRepository cannot be referenced from a static context
#ソースコード
Java
1public class App { 2 @Autowired 3 WeatherRepository weatherRepository; 4 5 public static void main(String... strings) throws Exception { 6 7 ///省略 8 9 weatherRepository.save(new Weather(location_id,name,temp,humid));
Java
1 2public interface WeatherRepository extends JpaRepository<Weather, Integer> { 3 4}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。