摘要:
package com.boylegu.springboot_vue.config; import org.apache.log4j.Logger; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.annotation.After 阅读全文
摘要:
mybatis带条件的分页查询 <select id="queryApi" resultMap="ApiAlgorithm"> select id, system, api from config <if test="param.queryForm != null and param.queryFo 阅读全文
摘要:
1、Spring contextConfigLocation配置 如果是 <context-param>标签内的,如果没有提供值,默认会去/WEB-INF/config/applicationContext.xml <!-- avalible during applicatio --> <conte 阅读全文
摘要:
https://zhuanlan.zhihu.com/p/95742728?from_voters_page=true 看了很多就这个可以 阅读全文
摘要:
依赖: Mysql 8.0.11 Hibernate 5.2.6 Final 1、pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instan 阅读全文
摘要:
https://www.cnblogs.com/Coder-Pig/p/7340694.html 阅读全文
摘要:
1、@ExceptionHandler 进行局部的异常处理 package controller; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.sprin 阅读全文
摘要:
1、配置对全部资源的放行 <mvc:default-servlet-handler/> 2、对指定目录下的资源放行 <mvc:resources location="/images/" mapping="/images/**"/> <mvc:resources location="/css/" ma 阅读全文
摘要:
1、新建User.java package pojo; public class User { private String name; private String pwd; private String sex; public String getName() { return name; } 阅读全文
摘要:
1、首先将前面构建好的SpringMVC项目拷贝一份,具体如何使用Maven构建SpringMVC项目的地址为https://www.cnblogs.com/wylwyl/p/13273278.html 2、修改pom.xml文件,添加log4j2的依赖,加入的内容如下 <properties> < 阅读全文