springboot笔记
springboot
易昂昜
这个作者很懒,什么都没留下…
展开
-
spring boot不使用内置tomcat
修改pom.xml:<packaging>war</packaging><dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> <scope>provided</scope></dependency>修原创 2021-02-27 15:28:54 · 1021 阅读 · 2 评论 -
springboot集成springscurity登录失败信息回显
前端通过<span id="passwordErr" class="errMsg" th:if="${param.error}" th:text="${session.SPRING_SECURITY_LAST_EXCEPTION.message}"></span>其中的th:if是必须的,参数param.error是当登录失败时页面URL地址会有一个默认后缀.error,我们可以更改这个后缀,通过在security中配置http.failureUrl()中更改错误地址,如更改为原创 2020-09-20 15:18:04 · 313 阅读 · 0 评论 -
springboot集成mybatis通用mapper,新增数据后获取该数据id
实体类中添加: @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id;插入方法中:用插入实体类的get方法即可获取。 .... msgStoreMapper.insertSelective(msgStore); return msgStore.getId();...原创 2020-10-23 14:34:21 · 1884 阅读 · 0 评论