上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页
摘要: 1.首先我们下载mybatis包 <!--mybatis依赖包--><dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <versio 阅读全文
posted @ 2021-01-08 16:17 沫笙* 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 1.首先导入需要的包,由于spring的版本决定mysql包的版本,所以我们这里只能导入低版本的mysql-connector-java <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot- 阅读全文
posted @ 2021-01-08 10:19 沫笙* 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 1.首先我们来解决一个问题 关于出现的An error happened during template parsing (template: "class path resource [templates/index.html]")报错 一般这种情况只出现在视图层,也就是我们的thymeleaf中 阅读全文
posted @ 2021-01-07 15:30 沫笙* 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1.首先解决一下pom.xml中的这个报错 报错原因:因为是直接从网上拷贝过来粘贴在pom.xml中的可能格式会有冲突 把前面的空格都删了,重新排版就行 2.然后把我们的thymeleaf依赖导入进来 <dependency> <groupId>org.springframework.boot</g 阅读全文
posted @ 2021-01-06 16:00 沫笙* 阅读(407) 评论(0) 推荐(0) 编辑
摘要: 1.详情见下图 my: user: zhangsan age: 23spring: freemarker: allow-request-override: true allow-session-override: true cache: false check-template-location: 阅读全文
posted @ 2021-01-06 11:04 沫笙* 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1.首先导入jar包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-freemarker</artifactId></dependency> 2.查看导入的包,确定已经 阅读全文
posted @ 2021-01-05 17:45 沫笙* 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 1.一般存在两种,application.yml和application.properties,一般来说使用application.yml文件,因为很多重复的数据可以省略,也为了避免很多重复的内容造成代码冗余 2.配置文件路径,必须是在resources文件下 3.具体的代码如下: 4.结果如下: 阅读全文
posted @ 2021-01-05 10:14 沫笙* 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 出现报错Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) 1.首先查看库的字符集 选择库,点击右键选择改变数据库 2.修改表的字符集,选择表点击改变表,然后修改字符集 3 阅读全文
posted @ 2021-01-04 16:35 沫笙* 阅读(404) 评论(0) 推荐(0) 编辑
摘要: 1.首先找到项目的resources目录和static目录 2.然后把我们的一张图片丢在里面 3.重启之后查看 阅读全文
posted @ 2021-01-04 14:45 沫笙* 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个启动类 2.增加一个SpringBootApplication的注解,此注解中包括以下内容,包含的ComponentScan的默认路径是当前启动类统计或者子包下面 3.然后进行启动就可以访问同级别或者子包下面的所有接口了 4.备注:如果存在启动类是在其他路径下怎么办呢,如下图,这样是启动 阅读全文
posted @ 2021-01-04 11:52 沫笙* 阅读(3424) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 21 下一页