org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'MonitorServiceImpl'
SSH框架的web开发中,报了这么一个错误。根据提示:No bean named 'MonitorServiceImpl' is defined 就是说你的这个bean没有定义,spring找不到解决思路:1.是否正确使用注解将bean放入Spring容器中,如@Service2.判断bean所在的路径是否在Spring的扫描范围内3.bean的默认第一个字母小写(这也是我犯错误的原因...