这是我在运行Spring Boot程序时遇到的错误。
我的项目结构如下:
Student.java
只是模型类
和StudentRepo。java我有
public interface StudentRepo extends JpaRepository<Student, Long>{
}
学生ervice.java
@Service
@Transactional
public class StudentService {
@Autowired
private StudentRepo st;
public List<Student> findAll()
{
return st.findAll();
}
}
和文件TestServiceApplication.java
@SpringBootApplication
public class TestServiceApplication implements CommandLineRunner{
private StudentService stu;
public static void main(String[] args) {
SpringApplication.run(TestServiceApplication.class, args);
}
@Override
public void run(String... args) throws Exception {
// TODO Auto-generated method stub
List<Student> li = stu.findAll();
li.forEach(System.out :: println);
}
}
当我运行时,会出现如下错误
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
2021-03-11 15:11:54.458 ERROR 22348 --- [ main] o.s.boot.SpringApplication : Application run failed
java.lang.IllegalStateException: Failed to execute CommandLineRunner
请帮帮我。谢谢大家。
IMO存在一些相互冲突的依赖关系。除此之外,您的代码中似乎存在一些问题:
....
@Autowired //missing
private StudentService stu;
....
别忘了扫描包裹。
@SpringBootApplication(scanBasePackages = {
"com.example.demo"
})
我从SpringBoot开始,我必须做一个HelloWold,但要启用SSL。我运行了我的程序,得到了以下结果: 谁能帮我解决这个问题? 物业: 主要内容: 完整堆栈跟踪: 我试图修复它,但仍然出现同样的错误。我希望有人能帮助我,我真的想把这个拿走一段时间了。我又用不同的方式做了一次,但都是一样的,或者我犯了不同的错误。
我的自动配置文件在Spring Boot应用程序中不起作用。我在下面附上我的配置应用程序文件: 引发的异常如下。我怎样才能修复它?
尝试使用Intellij与Maven一起运行Java时出现此错误: 启动ApplicationContext时出错。要显示条件报告,请在启用“调试”的情况下重新运行应用程序。2018-04-24 01:23:18.949错误22389---[主]o.s.boot。SpringApplication:应用程序运行失败 感谢您的帮助! 主要内容: XML: 接口类: 布局: SQL: 尝试运行应用程序
我还没有任何代码,我只想配置项目 My
每当我开始一个spring boot项目时,我总是会遇到这个错误,这个问题已经在stakeoverflow上被问了多次,我已经尝试了所有的解决方案,但没有一个对我有效。我的第一个问题是这个错误的原因是什么,以及如何修复它。 过滤器应用程序。Java语言 过滤器连接器。Java语言 过滤器服务。Java语言 FilterDao.java
启动ApplicationContext时出错。要显示条件报告,请在启用“调试”的情况下重新运行应用程序。 4.0.0组织。springframework。boot spring boot starter父代2.6.6 Kodramio northwind 0.0.1-SNAPSHOT northwind spring boot演示项目