上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 37 下一页
摘要: resultType和resultMap功能类似 ,都是返回对象信息 ,但是resultMap要更强大一些 ,可自定义。因为resultMap要配置一下,表和类的一一对应关系,所以说就算你的字段名和你的实体类的属性名不一样也没关系,都会给你映射出来,但是,resultType就比较鸡肋了,必须字段名 阅读全文
posted @ 2018-04-27 09:46 发疯的man 阅读(58240) 评论(3) 推荐(8) 编辑
摘要: 简单记录一下,和描述一下常用的业务场景。好记性不如烂笔头。 pom.xml <!--整合redis--> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> </dependency> 场景1:浏览 阅读全文
posted @ 2018-04-27 00:06 发疯的man 阅读(907) 评论(0) 推荐(0) 编辑
摘要: 参考连接:https://blog.csdn.net/qq_17776287/article/details/53536761 linux下有很多服务,如何查看服务是否启动,以mysql为例子 检察mysql是否安装 这里只贴链接 因为我也是一步一步按照教程走的 当然不会一步成功 中间遇到许多坑 但 阅读全文
posted @ 2018-04-25 18:03 发疯的man 阅读(2109) 评论(0) 推荐(0) 编辑
摘要: 重启网卡 编辑hosts:vim /etc/hosts 重启网卡:service network restart 查看linux的版本 cat /etc/redhat-release Linux目录结构 权限命令 权限是Linux中的重要概念 每个文件\目录等都具有权限 通过ls -l命令可以查看某 阅读全文
posted @ 2018-04-25 16:14 发疯的man 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 参考原贴地址:https://blog.csdn.net/clementad/article/details/47339519 在同一个类中,一个方法调用另外一个有注解(比如@Async,@Transational)的方法,注解是不会生效的。 比如,下面代码例子中,有两方法,一个有@Transati 阅读全文
posted @ 2018-04-24 20:56 发疯的man 阅读(378) 评论(0) 推荐(0) 编辑
摘要: springboot给我们封装好了邮件功能,非常简单,只需要稍微配置下就ok。 引入jar <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactI 阅读全文
posted @ 2018-04-21 21:53 发疯的man 阅读(9194) 评论(6) 推荐(1) 编辑
摘要: 参考原博:https://www.cnblogs.com/eaglezb/p/6073739.html 查看已经开放的端口: 开启端口 命令含义: –zone #作用域 –add-port=80/tcp #添加端口,格式为:端口/通讯协议 –permanent #永久生效,没有此参数重启后失效 重启 阅读全文
posted @ 2018-04-21 10:02 发疯的man 阅读(9605) 评论(0) 推荐(0) 编辑
摘要: 现在阿里云改版了,估计前些日子勒索病毒的原因,你在阿里云上面买的服务器。就算centos的防火墙端口开放了,你也无法访问,因为还要登录阿里云开放端口。 下面是步骤: 阅读全文
posted @ 2018-04-21 09:43 发疯的man 阅读(7049) 评论(0) 推荐(0) 编辑
摘要: 以前只知道Nginx的location块中的root用法,用起来总是感觉满足不了自己的一些想法。然后终于发现了alias这个东西。 先看toot的用法 这样配置的结果就是当客户端请求 /request_path/image/cat.png 的时候, Nginx把请求映射为/local_path/im 阅读全文
posted @ 2018-04-20 23:59 发疯的man 阅读(1687) 评论(1) 推荐(1) 编辑
摘要: 最近在使用spring-boot整合多模块,但是在父pom中打包maven install时总会报错:Failed to execute goal org.springframework.boot:spring-boot-maven-plugin,导致错误的原因是父pom.xml中引入了如下配置: 阅读全文
posted @ 2018-04-18 22:54 发疯的man 阅读(38927) 评论(2) 推荐(2) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 37 下一页