摘要: <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configurat 阅读全文
posted @ 2020-04-09 13:26 自己的太阳 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 内容来自:https://www.bilibili.com/video/BV1JE411D7JF 阅读全文
posted @ 2020-04-09 09:52 自己的太阳 阅读(319) 评论(0) 推荐(0) 编辑
摘要: or 操作 ZymlPubDictionaryExample Example = new ZymlPubDictionaryExample(); Criteria c1 = Example.createCriteria(); Criteria c2 = Example.createCriteria( 阅读全文
posted @ 2020-04-07 09:07 自己的太阳 阅读(998) 评论(0) 推荐(0) 编辑
摘要: /* 置灰 */ * { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: grayscale 阅读全文
posted @ 2020-04-03 19:59 自己的太阳 阅读(133) 评论(0) 推荐(0) 编辑
摘要: import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import 阅读全文
posted @ 2020-04-03 10:17 自己的太阳 阅读(585) 评论(0) 推荐(0) 编辑
摘要: 检查 .sh 文件中是否含有 #chkconfig: 2345 80 90 #description:auto_run 如果没有的话,加入。 #将该文件移动到 /etc/init.d cp ***.sh /etc/init.d #添加为服务,并设置开机启动 chkconfig --add ***.s 阅读全文
posted @ 2020-04-03 09:39 自己的太阳 阅读(6140) 评论(0) 推荐(0) 编辑
摘要: #docker 启动mysql #!/bin/bash systemctl stop NetworkManager; service network restart; service docker start; docker start mysql; chmod +x 赋予执行权限。在该目录下执行 阅读全文
posted @ 2020-04-03 09:18 自己的太阳 阅读(468) 评论(0) 推荐(0) 编辑
摘要: -Xmx1024m -XX:MaxPermSize=1024m eclipse.ini 配置 -startup plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar --launcher.library plugins/org 阅读全文
posted @ 2020-04-03 08:48 自己的太阳 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 文章来源:https://www.cnblogs.com/xiaoxi/p/5695783.html 1、直接把表单的参数写在Controller相应的方法的形参中,适用于get方式提交,不适用于post方式提交。 /** * 1.直接把表单的参数写在Controller相应的方法的形参中 * @p 阅读全文
posted @ 2020-04-02 16:19 自己的太阳 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 一、是什么? 是Http的实体首部字段,用于说明请求或返回的消息主体是用何种方式编码,在request header和response header里都存在。 二、几个常用类型:1、application/x-www-form-urlencoded1)浏览器的原生form表单2) 提交的数据按照 k 阅读全文
posted @ 2020-04-02 16:06 自己的太阳 阅读(1200) 评论(0) 推荐(0) 编辑