摘要: 在忘记root密码的时候,可以这样 1. 关闭正在运行的MySQL服务。 2. 打开DOS窗口,转到mysql\bin目录。 3. 输入mysqld --skip-grant-tables 回车。--skip-grant-tables 的意思是启动MySQL服务的时候跳过权限表认证。 4. 再开一个 阅读全文
posted @ 2017-11-03 21:58 电影公众号 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 本文介绍如何在Linux服务器下配置springboot项目服务 1.新建一个.service文件(我这边命名为test.service,其中test为服务名) 内容如下 [Unit]Description=testAfter=syslog.target [Service]ExecStart=/ho 阅读全文
posted @ 2017-11-03 21:44 电影公众号 阅读(5195) 评论(0) 推荐(0) 编辑
摘要: 1.定义css样式<style type="text/css"> a.popup{position:relative;} a.popup span{display:none;position:absolute;top:-40px;left:2px;z-index: 99;border: 1px so 阅读全文
posted @ 2017-11-03 21:00 电影公众号 阅读(10278) 评论(0) 推荐(0) 编辑
摘要: public class Test { public static void main(String[] args) throws Exception { CityModel city1 = new CityModel(); city1.setCity_code(1); CityModel city 阅读全文
posted @ 2017-11-03 20:53 电影公众号 阅读(7662) 评论(0) 推荐(2) 编辑