随笔分类 -  Spring Boot

摘要:1、 生成SSL证书(使用 Java jdk 自带的工具 keytool) 找到jdk的安装路径(注意:这里是我本地的路径...) ​ 假设你已经配置了 JDK的环境变量,可以 忽略这下面的这一步。 2、输入命令生成证书 keytool -genkeypair -alias server_https 阅读全文
posted @ 2020-12-24 15:45 追梦滴小蜗牛 阅读(1416) 评论(1) 推荐(0) 编辑
摘要:使用 idea 新建一个 demo 项目 pom.xml 在 templates 文件夹中 新增一个 index.html controller 层 启动后,进行访问得到的效果 访问项目中的静态资源 阅读全文
posted @ 2020-09-08 23:19 追梦滴小蜗牛 阅读(167) 评论(0) 推荐(0) 编辑
摘要:完整的异常提示信息: No qualifying bean of type 'org.springframework.transaction.TransactionManager' available: more than one 'primary' bean found among candida 阅读全文
posted @ 2020-08-10 16:12 追梦滴小蜗牛 阅读(8149) 评论(0) 推荐(0) 编辑
摘要:两个步骤: 1、启动类 没有 继承 SpringBootServletInitializer 类 2、记得将 springboot 自带的 tomcat 插件 打包时 排除掉 阅读全文
posted @ 2020-07-29 23:56 追梦滴小蜗牛 阅读(2049) 评论(0) 推荐(0) 编辑
摘要:解决方案: 在 pom.xml 添加依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>t 阅读全文
posted @ 2019-08-21 18:17 追梦滴小蜗牛 阅读(9456) 评论(0) 推荐(0) 编辑
摘要:本地安装 Redis Redis 安装:https://www.cnblogs.com/oukele/p/11373052.html 项目结构: SpringBootRedis 工程项目结构如下: controller - Controller 层 dao - 数据操作层 model - 实体层 s 阅读全文
posted @ 2019-08-20 00:30 追梦滴小蜗牛 阅读(4311) 评论(0) 推荐(0) 编辑
摘要:第一种方式 实体类 Student import javax.persistence.*; import java.io.Serializable; @Entity @Table(name="Student") public class Student implements Serializable 阅读全文
posted @ 2019-04-28 16:45 追梦滴小蜗牛 阅读(10482) 评论(0) 推荐(0) 编辑
摘要:话不多说,直接上代码 dao nativeQuery = true > 执行原生的SQL语法,也就是说这段sql拷贝到数据库中,然后就运行。 我们期望的结果: 取值: 取值结果: 结合实际点的使用 在service层中再进行一步处理 然后 在controller 进行 调用,得出来的json格式。。 阅读全文
posted @ 2019-04-28 11:05 追梦滴小蜗牛 阅读(2822) 评论(0) 推荐(0) 编辑
摘要:工具:idea、mariadb数据库 创建一个项目 ( student ) ........(使用idea创建一个springboot项目,这里我就不多说了) Maven 中的依赖 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http 阅读全文
posted @ 2019-04-13 15:09 追梦滴小蜗牛 阅读(2841) 评论(0) 推荐(0) 编辑
摘要:首先 需要在 application.properties 文件中添加这句 spring.mvc.static-path-pattern=/** 不然是使用不了的 还有一种办法就是 使用bootstrap的cdn地址,不怕麻烦的话,【斜脸笑】,建议还是使用以上方式 示例: 1 <!DOCTYPE h 阅读全文
posted @ 2019-03-24 21:47 追梦滴小蜗牛 阅读(5494) 评论(0) 推荐(0) 编辑
摘要:application.properties文件完整信息 #连接数据库 spring.datasource.driver-class-name=org.mariadb.jdbc.Driver spring.datasource.url=jdbc:mariadb://localhost:3306/em 阅读全文
posted @ 2019-03-22 11:57 追梦滴小蜗牛 阅读(3941) 评论(0) 推荐(0) 编辑
摘要:使用idea 新创建项目 然后 新创建 java 、resources 文件夹...... 图上是项目结构 java文件夹下的 文件夹 命名规范 com.nf147(组织名)+ oukele(作者) 然后将 自动生成类 放入 其中 ,运行 ,按照步骤进行操作 每操作完成一步 都需要 刷新一下 mav 阅读全文
posted @ 2019-03-13 19:28 追梦滴小蜗牛 阅读(808) 评论(0) 推荐(0) 编辑
摘要:package com.nf147.policy_project; import org.springframework.stereotype.Component; import javax.servlet.*; import javax.servlet.http.HttpServletRespon 阅读全文
posted @ 2019-02-15 16:08 追梦滴小蜗牛 阅读(444) 评论(0) 推荐(0) 编辑
摘要:详细错误信息: 我项目无法启动的原因: 原因是少一个 spring-boot-starter-data-jpa 依赖 我的解决方案: 添加 依赖 重新启动,项目可以正常启动了。 阅读全文
posted @ 2019-01-06 02:00 追梦滴小蜗牛 阅读(5552) 评论(0) 推荐(0) 编辑
摘要:(注意项目名不能有大写。。。。。。),把项目类型 改成 War 类型。(web项目) 使用 mybatis-generator 插件 生成 实体类 和 接口 在 resources 目录 中 新建一个 generatorConfig.xml 的文件 generatorConfig.xml 文件信息 阅读全文
posted @ 2019-01-06 00:51 追梦滴小蜗牛 阅读(1559) 评论(2) 推荐(0) 编辑
摘要:现在创建个项目: 勾上 自已 需要东西。(这里作为演示) 1 maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'} 关闭项目,重新打开。 等待,依赖下载完成。 在 templates 文件夹 中 加入 一个 index. 阅读全文
posted @ 2018-12-30 18:50 追梦滴小蜗牛 阅读(3966) 评论(0) 推荐(0) 编辑
摘要:项目级配置 在项目中找到如下文件 打开,添加上阿里云镜像 1 maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'} 阅读全文
posted @ 2018-12-29 09:36 追梦滴小蜗牛 阅读(1088) 评论(0) 推荐(0) 编辑