摘要: web项目搭建 https://www.cnblogs.com/jxldjsn/p/8203859.html 阅读全文
posted @ 2018-11-27 22:18 一心二念 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 1 创建一个自定义注解 @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented @Inherited public @interface MyLog { String requestUrl(); } 2  阅读全文
posted @ 2018-11-27 15:01 一心二念 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 服务器的MySQL配置就不说了,直接说一些用到的基础命令 登陆 show databases; use 数据库; show tables; 执行sql即可; 一定要有分号 select * from t_user\G; 就是详情展示 剩下以后补充。。。。 阅读全文
posted @ 2018-11-27 09:36 一心二念 阅读(306) 评论(0) 推荐(0) 编辑