package com.lcl.demo.sbDemo.livable.configuration.annotation;
import java.lang.reflect.Method;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
import org.springframework.web.context.request.RequestContextHolder;
import org.springframework.web.context.request.ServletRequestAttributes;
@Component
@Aspect
public class MyAspect {
@Pointcut("@annotation(com.lcl.demo.sbDemo.livable.configuration.annotation.MyAnnotation)")
public void myAspect(){}
@Before("myAspect()")
public void doBeforeMyAspect(JoinPoint joinPoint){
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
Map<String, String[]> paraMap = request.getParameterMap();
//根据joinPoint获取方法上的注入值
String operate = getControllerOperate(joinPoint);
boolean isSave = getControllerIsSave(joinPoint);
//根据request获取请求中的参数值
String name = paraMap.get("name")!=null?paraMap.get("name")[0]:"游客";
String record = "[姓名]:"+name + " [操作]:"+operate + " [存储]:"+isSave;
System.err.println("执行记录=:"+record);
//根据isSave决定是否存入数据库。
}
/**
* 获取注解中对方法的描述信息 用于Controller层注解
*
* @param joinPoint 切点
* @return 方法描述
* @throws Exception
*/
public static String getControllerOperate(JoinPoint joinPoint) {
String operate = "";
try {
String targetName = joinPoint.getTarget().getClass().getName();
String methodName = joinPoint.getSignature().getName();
Object[] arguments = joinPoint.getArgs();
Class<?> targetClass = Class.forName(targetName);
Method[] methods = targetClass.getMethods();
for (Method method : methods) {
if (method.getName().equals(methodName)) {
Class<?>[] clazzs = method.getParameterTypes();
if (clazzs.length == arguments.length) {
operate = method.getAnnotation(MyAnnotation. class).operate();
break;
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return operate;
}
/**
* 获取注解中对方法的描述信息 用于Controller层注解
*
* @param joinPoint 切点
* @return 方法描述
* @throws Exception
*/
public static boolean getControllerIsSave(JoinPoint joinPoint) {
boolean isSave = false;
try {
String targetName = joinPoint.getTarget().getClass().getName();
String methodName = joinPoint.getSignature().getName();
Object[] arguments = joinPoint.getArgs();
Class<?> targetClass = Class.forName(targetName);
Method[] methods = targetClass.getMethods();
for (Method method : methods) {
if (method.getName().equals(methodName)) {
Class<?>[] clazzs = method.getParameterTypes();
if (clazzs.length == arguments.length) {
isSave = method.getAnnotation(MyAnnotation. class).isSave();
break;
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
return isSave;
}
}
没有合适的资源?快使用搜索试试~ 我知道了~
简易后台管理系统
共346个文件
gif:156个
js:60个
class:23个
2星 需积分: 50 57 下载量 8 浏览量
2018-11-06
21:55:09
上传
评论 4
收藏 1.72MB ZIP 举报
温馨提示
使用步骤 1.下载后解压。导入项目。 2.执行init中的sql。主要是要把系统用户建立起来。 3.运行项目,前台输入http://localhost:8080 可前往登录页。 4.帐号 admin 密码 123456 登录。 登录进去之后就自己玩啦。
资源推荐
资源详情
资源评论
收起资源包目录
简易后台管理系统 (346个子文件)
MyAspect.class 4KB
UserController.class 4KB
MyFileUtil.class 3KB
LoginController.class 3KB
WebMvcConfig.class 2KB
UploadController.class 2KB
LoginFilter.class 2KB
SysUser.class 2KB
BaseErrorController.class 2KB
SysUserController.class 2KB
UserServiceImpl.class 1KB
SysUserServiceImpl.class 1KB
SbDemoApplicationTests.class 1KB
UserMapperProvider.class 1KB
PathUtil.class 989B
MyShcheduledTask.class 935B
ServletInitializer.class 926B
SysUserMapper.class 926B
SbDemoApplication.class 878B
UserMapper.class 877B
MyAnnotation.class 567B
UserService.class 527B
ISysUserService.class 447B
.classpath 1KB
mvnw.cmd 5KB
org.eclipse.wst.common.component 659B
org.eclipse.wst.jsdt.ui.superType.container 49B
bootstrap.min.css 100KB
bootstrap.min.css 100KB
layui.css 68KB
layui.css 68KB
jquery.datetimepicker.css 19KB
jquery.datetimepicker.css 19KB
layer.css 14KB
layer.css 14KB
layer.css 14KB
layer.css 14KB
layui.mobile.css 10KB
layui.mobile.css 10KB
laydate.css 7KB
laydate.css 7KB
layer.css 5KB
layer.css 5KB
code.css 1KB
code.css 1KB
iconfont.eot 40KB
iconfont.eot 40KB
glyphicons-halflings-regular.eot 20KB
glyphicons-halflings-regular.eot 20KB
59.gif 10KB
59.gif 10KB
22.gif 10KB
22.gif 10KB
24.gif 8KB
24.gif 8KB
13.gif 7KB
13.gif 7KB
16.gif 7KB
16.gif 7KB
39.gif 6KB
39.gif 6KB
64.gif 6KB
64.gif 6KB
63.gif 6KB
63.gif 6KB
50.gif 6KB
50.gif 6KB
loading-0.gif 6KB
loading-0.gif 6KB
loading-0.gif 6KB
loading-0.gif 6KB
4.gif 6KB
4.gif 6KB
1.gif 5KB
1.gif 5KB
42.gif 5KB
42.gif 5KB
71.gif 5KB
71.gif 5KB
21.gif 5KB
21.gif 5KB
20.gif 5KB
20.gif 5KB
29.gif 5KB
29.gif 5KB
70.gif 4KB
70.gif 4KB
5.gif 4KB
5.gif 4KB
17.gif 4KB
17.gif 4KB
27.gif 4KB
27.gif 4KB
9.gif 4KB
9.gif 4KB
44.gif 4KB
44.gif 4KB
11.gif 4KB
11.gif 4KB
8.gif 4KB
共 346 条
- 1
- 2
- 3
- 4
资源评论
- Azurexuoxi2019-01-03打算下载试一下。。。。
抓娃小兵
- 粉丝: 235
- 资源: 17
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功