1.spring多环境配置
在日常项目开发中,我们通常在配置文件中配置多个运行环境:
- application.yml
- application-dev.yml
- application-prod.yml
那么在运行时,怎么指定运行的配置文件呢?
可以在运行时,通过参数传递来改变运行的环境,前提需要明白,JAVA在加载配置文件时,加载的是application.yml文件,所以,针对于公共的配置信息可以在这个文件配置。
java jar 包运行可以通过传参,来指定配置值,所以我们修改一下application.yml 来接收传参:
# 默认使用配置 spring: profiles: active: ${spring.profiles.active}
然后在通过运行jar 包的方式来启动项目(需要用maven 打包):在运行时,决定用哪个配置文件通过
--spring.profiles.active=dev
指定。
java -jar certification-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev
2.MyBatisPlus 分页插件
只需要在项目中配置
@Configuration public class MyBatisPlusConfig { @Bean public PaginationInterceptor paginationInterceptor() { return new PaginationInterceptor(); } }
使用,直接在需要分页的地方传入IPage参数:
IPage<XX> queryByPage(IPage<XX> iPage, @Param("state") int state);
该方法执行完成后,查询数据会存储到 iPage
参数中,可以直接获取方法返回值。值得注意的是,这个方法必须有返回值。
3.springAop实现打印日志注解
package org.simulation; import java.lang.annotation.*; /** <!-- aop 依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency> <!-- 用于日志切面中,以 json 格式打印出入参 --> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.8.5</version> </dependency> */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) @Documented public @interface WebLog { /** * 日志描述信息 */ String description() default ""; }
package org.simulation; import com.google.gson.Gson; import org.aspectj.lang.JoinPoint; import org.aspectj.lang.ProceedingJoinPoint; import org.aspectj.lang.annotation.*; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.context.annotation.Profile; import org.springframework.stereotype.Component; import org.springframework.web.context.request.RequestContextHolder; import org.springframework.web.context.request.ServletRequestAttributes; import javax.servlet.http.HttpServletRequest; import java.lang.reflect.Method; @Aspect @Component @Profile({"dev", "test"}) public class WebLogAspect { private final static Logger logger = LoggerFactory.getLogger(WebLogAspect.class); /** * 换行符 */ private static final String LINE_SEPARATOR = System.lineSeparator(); /** * 以自定义 @WebLog 注解为切点 */ @Pointcut("@annotation(org.simulation.WebLog)") public void webLog() { } /** * 在切点之前织入 * * @param joinPoint * @throws Throwable */ @Before("webLog()") public void doBefore(JoinPoint joinPoint) throws Throwable { // 开始打印请求日志 ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); HttpServletRequest request = attributes.getRequest(); // 获取 @WebLog 注解的描述信息 String methodDescription = getAspectLogDescription(joinPoint); // 打印请求相关参数 logger.info("========================================== Start =========================================="); // 打印请求 url logger.info("URL : {}", request.getRequestURL().toString()); // 打印描述信息 logger.info("Description : {}", methodDescription); // 打印 Http method logger.info("HTTP Method : {}", request.getMethod()); // 打印调用 controller 的全路径以及执行方法 logger.info("Class Method : {}.{}", joinPoint.getSignature().getDeclaringTypeName(), joinPoint.getSignature().getName()); // 打印请求的 IP logger.info("IP : {}", request.getRemoteAddr()); // 打印请求入参 logger.info("Request Args : {}", new Gson().toJson(joinPoint.getArgs())); } /** * 在切点之后织入 */ @After("webLog()") public void doAfter() throws Throwable { // 接口结束后换行,方便分割查看 logger.info("=========================================== End ===========================================" + LINE_SEPARATOR); } /** * 环绕 */ @Around("webLog()") public Object doAround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable { long startTime = System.currentTimeMillis(); Object result = proceedingJoinPoint.proceed(); // 打印出参 logger.info("Response Args : {}", new Gson().toJson(result)); // 执行耗时 logger.info("Time-Consuming : {} ms", System.currentTimeMillis() - startTime); return result; } /** * 获取切面注解的描述 * * @param joinPoint 切点 * @return 描述信息 * @throws Exception */ public String getAspectLogDescription(JoinPoint joinPoint) throws Exception { String targetName = joinPoint.getTarget().getClass().getName(); String methodName = joinPoint.getSignature().getName(); Object[] arguments = joinPoint.getArgs(); Class targetClass = Class.forName(targetName); Method[] methods = targetClass.getMethods(); StringBuilder description = new StringBuilder(""); for (Method method : methods) { if (method.getName().equals(methodName)) { Class<?>[] clazzs = method.getParameterTypes(); if (clazzs.length == arguments.length) { description.append(method.getAnnotation(WebLog.class).description()); break; } } } return description.toString(); } }
原创文章,作者:,如若转载,请注明出处:https://blog.ytso.com/277324.html