随笔分类 -  SpringBoot

摘要:Idea的SpringBoot工程里遇到Could not autowire. No beans of ‘BookService’ type found。 解决办法: 换成@Resource spring中注解@Resource 与@Autowire 区别1.@Autowired按byType自动注 阅读全文
posted @ 2021-04-02 21:05 残星 阅读(1911) 评论(0) 推荐(0) 编辑
摘要:一、添加依赖 https://mvnrepository.com/ <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <versio 阅读全文
posted @ 2021-04-02 17:44 残星 阅读(68) 评论(0) 推荐(0) 编辑
摘要:SpringBoot默认加入了jackson-databind作为JSON处理器。 package com.example.pojo; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.a 阅读全文
posted @ 2021-04-02 17:01 残星 阅读(311) 评论(0) 推荐(0) 编辑
摘要:SpringBoot默认日志框架是 Logback, 使用 INFO 级别输出到控制台 日志级别:TRACE < DEBUG < INFO < WARN < ERROR < FATAL < OFF 如果要SpringBoot将控制台中的日志写到日志文件中,需要在application.propert 阅读全文
posted @ 2021-04-02 16:21 残星 阅读(300) 评论(0) 推荐(0) 编辑
摘要:org.thymeleaf.exceptions.TemplateInputException: Error resolving template [index], template might not exist or might not be accessible by any of the c 阅读全文
posted @ 2021-04-02 12:38 残星 阅读(1916) 评论(0) 推荐(0) 编辑
摘要:一、引入thymeleaf依赖 https://mvnrepository.com/ 1 <dependency> 2 <groupId>org.springframework.boot</groupId> 3 <artifactId>spring-boot-starter-thymeleaf</a 阅读全文
posted @ 2021-04-02 10:34 残星 阅读(117) 评论(0) 推荐(0) 编辑
摘要:1 <?xml version="1.0" encoding="UTF-8"?> 2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 阅读全文
posted @ 2021-03-26 12:27 残星 阅读(373) 评论(0) 推荐(0) 编辑
摘要:使用开发工具Intellij IDEA开始创建(注:直接创建SpringBoot项目这个功能在社区版IDEA上是没有的) 1、创建项目时选择Spring Initializr 2、输入项目基本信息 3、选择项目所需要添加的依赖,之后Intellij IDEA自动把选中的依赖添加 到项目的pom.xm 阅读全文
posted @ 2021-03-26 11:03 残星 阅读(45) 评论(0) 推荐(0) 编辑