摘要:
一、邮件发送 流程: mbqplwpheeyvgdjh 首先需要开启POS3/SMTP服务,这是一个邮件传输协议 点击开启 导入依赖 <!--mail--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>sp 阅读全文
摘要:
一、Spring Security的基本配置 安全需要在设计网站之初就需要做好设计 可以做到: 功能权限 访问权限 菜单权限 这些权限虽然用拦截器过滤器也能实现,但是很麻烦,所以我们一般使用框架实现 几个重要类: WebSecurityConfigureAdapter:自定义Security策略 A 阅读全文
摘要:
一、WebSocket简介 为什么要什么websocket:https://blog.csdn.net/qq_42429911/article/details/88601279 用websocket可以做到: 在线股票网站 即使聊天 多人在线聊天 应用集群通信 系统性能即时检测 二、springbo 阅读全文
摘要:
整合mybatis 流程: 导入依赖: 除了mybaits还有mysql和jdbc依赖 <!--mybatis--> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-sta 阅读全文
摘要:
流程: 创建项目,勾选基本的几个开发工具还有webstarter 再创建包(service,control,config,dao,pojo) 再前往https://www.webjars.org/,选择bootstrap和jquery的依赖导入 注意:在导入jquery和bootstrap中如何导入 阅读全文
摘要:
一、视图层技术thymeleaf 我们一般都是基于3.x版本 1、流程: 导入依赖 <!--整合thymeleaf技术--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starte 阅读全文
摘要:
title: classpath路径 data: tags: - springmvc - IDEA categories: 解决问题 classpath路径有三个 java目录 resource目录 jar包 阅读全文