摘要:
问题: Springboot应用静态资源不能访问,例如html, css, js, jpg等文件不能访问。页面显示: Whitelabel Error Page This application has no explicit mapping for /error, so you are seein 阅读全文
摘要:
问题: SpringBoot JSP页面不解析 解决: 在pom.xml中,包tomcat-embed-jasper scope不能为required,应修改为provided。 <dependency> <groupId>org.apache.tomcat.embed</groupId> <art 阅读全文
摘要:
问题: 在一个类中使用注解@Autowired引用一个接口,报错误” NoSuchBeanDefinitionException: No qualifying bean of type”。 原因: 该接口对应的实现类没有任何注解,加上@Component或@Service注解后,该问题解决。 阅读全文