摘要:
SpringBoot整合SpringSecurity:https://www.bilibili.com/video/BV1KE411i7bC?p=1SpringBoot整合Shiro框架:https://www.bilibili.com/video/BV1NE411i7S8?p=1SpringBoo 阅读全文
摘要:
1、SpringBoot网址:https://spring.io/projects/spring-bootSpring Initializr. 在线生成初始化SpringBoot项目:https://start.spring.io/2、Thymeleaf依赖:<dependency><groupId 阅读全文
摘要:
1、src\main\resources\i18n创建:lan.properties、lan_zh_CN.properties、lan_en_US.properties,默认、中文、英文。password=密码 和 password=password核心配置文件application.yml ser 阅读全文
摘要:
两种上传方式都可以依赖pom.xml <!-- https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload --> <dependency> <groupId>commons-fileupload</groupId 阅读全文
摘要:
拦截器,return true 是放行 package com.jay.interceptors; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.Mo 阅读全文
摘要:
我的idea版本是2019.1.4,下载的tomcat是9.0.50,这个idea版本用不了tomcat10,版本不匹配,可以下最新的2021.2。1、先安装tomcat,默认端口8080,还有一个-1要改掉,我写的是默认端口是8888 那个-1我改成了99992、配置tomcat的环境变量,新建变 阅读全文
摘要:
1、代码 package com.jay.controller; import com.jay.pojo.User; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; impo 阅读全文
摘要:
1、pom.xml引入包 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </depende 阅读全文
摘要:
A child container failed during start,我遇到的原因是引用javax.servlet-api的时候没有加scope <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-ap 阅读全文
摘要:
参考文档:http://mybatis.org/spring/zh/index.html1、引入包 <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</v 阅读全文