摘要: 1. 把mysql5.7 解压到 电脑中! 打开cmd 进入到mysql bin文件中 无密码初始化 生成data mysqld --initialize-insecure mysql解压版默认没有my.ini文件 需要自己配置my.ini 安装 mysqld -install 设置密码 mysql 阅读全文
posted @ 2018-06-04 08:54 temporary 阅读(115) 评论(0) 推荐(0) 编辑
摘要: pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apac 阅读全文
posted @ 2018-06-03 14:28 temporary 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 第一步创建项目 然后 切换到Navigator视图 (在window--> Show View 下可以找到) 在 setings 下面设置项目的一些属性 (主要是jdk编译版本 web版本) 右键properties检查下Web Deployment Assembly设置有没有问题 如果WEB-IN 阅读全文
posted @ 2018-04-07 00:47 temporary 阅读(178) 评论(0) 推荐(0) 编辑
摘要: public class Solution { /* * @param triangle: a list of lists of integers * @return: An integer, minimum path sum */ public int minimumTotal(int[][] triangle) { // writ... 阅读全文
posted @ 2017-11-13 17:52 temporary 阅读(101) 评论(0) 推荐(0) 编辑
摘要: package com.esailcar.finance.common.persistence; import java.io.Serializable; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.sql.SQLException; import java.uti... 阅读全文
posted @ 2017-11-13 17:50 temporary 阅读(877) 评论(0) 推荐(0) 编辑
摘要: /** * Definition of TreeNode: * public class TreeNode { * public int val; * public TreeNode left, right; * public TreeNode(int val) { * this.val = val; * this.left ... 阅读全文
posted @ 2017-10-10 15:41 temporary 阅读(87) 评论(0) 推荐(0) 编辑
摘要: /** * Definition for ListNode. * public class ListNode { * int val; * ListNode next; * ListNode(int val) { * this.val = val; * this.next = null; * } * } */ ... 阅读全文
posted @ 2017-10-10 15:31 temporary 阅读(129) 评论(0) 推荐(0) 编辑
摘要: public class Solution { /** * @param num: an integer * @return: an integer, the number of ones in num */ /* 负数的二进制是其绝对值的补码(反码+1) 1 源码: 0001 1 反码: 1110 阅读全文
posted @ 2017-09-08 09:43 temporary 阅读(139) 评论(0) 推荐(0) 编辑
摘要: /** * Definition of TreeNode: * public class TreeNode { * public int val; * public TreeNode left, right; * public TreeNode(int val) { * this.val = val; * this.left ... 阅读全文
posted @ 2017-09-07 17:54 temporary 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 用户发送请求到DispatchServlet(前端控制器) DispatchServlet接收后调用HandlerMapping(处理器映射器) HandlerMapping根据传进的URL找到具体的处理器,处理生成器对和处理拦截器(比如权限控制) 并返回给DispatchServlet Dispa 阅读全文
posted @ 2017-08-07 00:27 temporary 阅读(126) 评论(0) 推荐(0) 编辑