上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页
摘要: 1.建立http连接返回html页面: public static String doRequest(String url,String method) { //创建httpClient对象 CloseableHttpClient client=HttpClientBuilder.create(). 阅读全文
posted @ 2019-11-29 11:34 Cool_Yang 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: Java代码操作mongoDB 阅读全文
posted @ 2019-11-29 11:22 Cool_Yang 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1.安装jdk: sudo apt-get install openjdk-8-jdk 2.获取kafka安装包: wget http://mirror.bit.edu.cn/apache/kafka/2.3.1/kafka_2.11-2.3.1.tgz 3.解压安装包: tar -zxvf kaf 阅读全文
posted @ 2019-11-26 19:37 Cool_Yang 阅读(2222) 评论(0) 推荐(1) 编辑
摘要: 1.表act_employee 2.表act_part 3.求:展示以下结果 SQL语句编写: SELECT a.`name`, a.salary, b.`name` FROM act_employee a, act_part b WHERE a.part_id = b.id AND a.salar 阅读全文
posted @ 2019-11-13 20:12 Cool_Yang 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 重载【overload】: 重载时只能通过不同的参数样式。例如,不同的参数类型,不同的参数个数,不同的参数顺序(当然,同一方法内的几个参数类型必须不一样,例如可以是fun(int, float), 但是不能为fun(int, int)); 同一个类 相同方法名 参数列表不同【顺序不同 | 个数不同 阅读全文
posted @ 2019-11-11 20:28 Cool_Yang 阅读(118) 评论(0) 推荐(0) 编辑
摘要: Java代码: package com.linked; class B{ public int data; //数据 public B before=null; //前驱 public B after=null; //后继 public B(){ } public B(int data,B befo 阅读全文
posted @ 2019-11-07 21:07 Cool_Yang 阅读(250) 评论(0) 推荐(0) 编辑
摘要: Java代码: package com.linked; class A{ public int data; public A next=null; public A(){ } public A(int data,A next){ this.data=data; this.next=next; } } 阅读全文
posted @ 2019-11-07 20:46 Cool_Yang 阅读(220) 评论(0) 推荐(0) 编辑
摘要: Idea new一个项目: 1. 2. 3. 4. 5.完成基本创建,创建controller层代码 6.运行:http://localhost:8080/test 阅读全文
posted @ 2019-10-23 14:12 Cool_Yang 阅读(157) 评论(0) 推荐(0) 编辑
摘要: SpringBoot整合Mybatis 1.引入maven依赖包: 实体层,dao层,mapper文件可通过你想工程生成 2.创建实体user (core.pojo包下) 3.创建UserMapper.xml (resources.mapper包下) 4.创建dao层接口 (core.dao包下) 阅读全文
posted @ 2019-10-23 11:22 Cool_Yang 阅读(179) 评论(0) 推荐(0) 编辑
摘要: springmvc对JSON数据支持 JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。JSON采用完全独立于语言的文本格式,这些特性使JSON成为理想的数据交换语言。 JSON可以将 JavaScript 对象中表示的一组数据转换为字符串,然后就可以在函 阅读全文
posted @ 2019-10-23 10:10 Cool_Yang 阅读(598) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页