摘要: 在虚拟机上安装mysql走了不少弯路,在此备份。。。 首先感谢下这几篇博客提供的帮助: https://www.cnblogs.com/pythonal/p/6141516.html http://blog.csdn.net/typa01_kk/article/details/49059729 ht 阅读全文
posted @ 2017-12-26 18:48 无才可去补苍天 阅读(7346) 评论(0) 推荐(0) 编辑
摘要: [root@wshCentOS ~]# which java/usr/bin/java[root@wshCentOS ~]# ls -lrt /usr/bin/javalrwxrwxrwx. 1 root root 22 12月 26 15:20 /usr/bin/java -> /etc/alte 阅读全文
posted @ 2017-12-26 17:00 无才可去补苍天 阅读(370) 评论(0) 推荐(0) 编辑
摘要: <%java.util.Properties prop = new java.util.Properties();java.io.InputStream in;in = getClass().getClassLoader().getResourceAsStream("conf/XXX.propert 阅读全文
posted @ 2017-12-09 14:10 无才可去补苍天 阅读(799) 评论(0) 推荐(0) 编辑
摘要: select `DEFINER` from information_schema.VIEWS; 阅读全文
posted @ 2017-12-09 14:07 无才可去补苍天 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 在后台写好自己的方法; 打开shiro验证,设置url访问; 提供包调用http方式连接后台获取数据: pom提供依赖: 阅读全文
posted @ 2017-10-21 11:44 无才可去补苍天 阅读(320) 评论(0) 推荐(0) 编辑
摘要: <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <configuration> <descriptorRefs> <descriptorRef>jar-with-depe 阅读全文
posted @ 2017-10-21 11:37 无才可去补苍天 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 自己作死,navicat不恰当的操作导致了表死锁,操作如下: 给表新加字段:name 没有选择允许为空,但是有没有设置初始值,所以运行的结果就是数据库表里有了name不允许为空但是确实为空的记录; 然后针对表select 操作一般OK,只要涉及修改就死锁; 使用:show processlist;这 阅读全文
posted @ 2017-09-21 21:25 无才可去补苍天 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 1.千万不要自己新建data,使用命令:mysqld --initialize会自动生成一大堆文件 2.没有ini文件就自己新建: 阅读全文
posted @ 2017-09-21 15:06 无才可去补苍天 阅读(90) 评论(0) 推荐(0) 编辑
摘要: <head> <input type="hidden" name="aplStatus" id="aplStatus" value="${aplStatus}" /></head>两个后台传值写在head里 阅读全文
posted @ 2017-09-21 10:30 无才可去补苍天 阅读(916) 评论(0) 推荐(0) 编辑
摘要: 在mapping文件中实现动态sql,如果想达到if else的效果可以使用:choose, when, otherwise <choose> <when test="title != null"></when>//可以多个 <otherwise><otherwise> </choose> 定制wh 阅读全文
posted @ 2017-09-21 09:44 无才可去补苍天 阅读(4254) 评论(0) 推荐(1) 编辑