springboot
改变自己2022
这个作者很懒,什么都没留下…
展开
-
springboot实战--shiro安全框架的使用--thymeleaf--mybatis
shiro安全框架:两大核心功能:认证,授权需求描述有三个用户,root ,blog ,userroot拥有所有权限,blog只能进入blog ,user只能进入user登录页面前台登录界面,输入正确的用户名密码可以进入首页。密码错误用户不存在首页首页root登录效果。拥有操作博客,用户的权限。blog用户登录:只能看到有权限的...原创 2020-04-15 09:41:36 · 214 阅读 · 0 评论 -
springboot 发邮件
spring boot定制邮件发送步骤1导入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId>...原创 2020-04-14 08:07:18 · 123 阅读 · 0 评论 -
springboot异步任务简单操作
当我们有两个不相干的任务A,BA 调用了B ,B 需要执行很长时间,而A不用等待可以直接往后继续执行。那么我们可以把B设置为异步任务。B执行,同时A继续往后执行。步骤 开启异步 在入口处使用注解:@EnableAsync 标记异步 @Async对应方法或者类package com.wang.service;import org.springfra...原创 2020-04-12 15:19:10 · 207 阅读 · 0 评论 -
spring -security
spring security 是什么?一个安全框架。特性Java Authentication and Authorization Service (JAAS)全面的鉴权,授权,保护普通攻击,整合其他框架简化使用。maven导入:不需要版本,如果需要则自己也可以覆盖: <dependency> <groupId>...原创 2020-04-12 01:44:27 · 300 阅读 · 0 评论 -
springboot druid数据库整合
在我的web项目中引进druid。实现sql监控:1.导入依赖 <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <v...原创 2020-04-10 22:01:57 · 120 阅读 · 0 评论 -
spring boot web项目
建表sql: CREATE TABLE employee ( id INT(8) PRIMARY KEY AUTO_INCREMENT , lastName VARCHAR(25), email VARCHAR(64), gender INT(1), department_id INT, birthday DATE, CONSTRAINT ...原创 2020-04-10 20:46:21 · 1046 阅读 · 0 评论 -
springboot-mybatis 整合出现的莫名其妙的错误
springboot +mybatis实体类Books中的构造函数被重写了,但是没有空参的和全参构造。这时候操作数据库就会报如下莫名奇妙的异常。加上无参或者空参就没问题了。2020-04-10 15:33:22.772 ERROR 48424 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Serv...原创 2020-04-10 20:45:42 · 492 阅读 · 0 评论 -
spring boot 整合mybatis上手就出错,也是没谁了
springboot整合mybaits上手操作:我就想着前台到controller到数据库查所有的书返回给前台。1.新建项目导依赖数据库驱动,spring jdbc ,mybatis-springboot 支持 <dependency> <groupId>org.mybatis.spring.boot</grou...原创 2020-04-10 12:09:18 · 219 阅读 · 0 评论 -
springboot-data--简单上手
springboot操作数据库,只需要简单的几步即可实现:上手体验:1,新建项目导入starter<!-- spring data--> <groupId>org.springframework.boot</groupId> <artifactId>spring-...原创 2020-04-10 09:31:51 · 194 阅读 · 0 评论 -
springboot-项目-国际化
首页控制当index.html文件放到templates目录下面时,需要通过controller访问。增加一个配置类,继承接口WebMvcConfigurer ,实现addViewController()方法:满足http://localhost:8080/index.html可以访问。http://localhost:8080/ 这个其实不用,默认首页就是这样访问的。...原创 2020-04-09 09:29:42 · 195 阅读 · 0 评论 -
spring boot-thymeleaf
thymleaf官网:https://www.thymeleaf.org/spring boot 文档starter地址,当需要集成模块时:https://docs.spring.io/spring-boot/docs/2.2.6.RELEASE/reference/html/using-spring-boot.html#using-boot-starterthymel...原创 2020-04-08 16:45:02 · 101 阅读 · 0 评论 -
spring boot -静态资源
springboot中,默认的静态资源路径有:配置在ResourceProperties类中private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { "classpath:/META-INF/resources/","classpath:/resources/", "classpath:/static/",...原创 2020-04-08 16:15:16 · 137 阅读 · 0 评论 -
spring boot-01 认识spring boot和入门程序
认识spring boot :特性: Create stand-alone Spring applications Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files) Provide opinionated 'starter' dependencies to simpli...原创 2020-04-07 08:29:19 · 153 阅读 · 0 评论