`
文章列表
作为一名程序员,至少需要掌握3种语言: 一种是编译语言,诸如:C,C++,Java等 二种是脚本语言:诸如:Shell,Python,Ruby等。 三种是Javascript,它既可以做客户端语言,又可以做服务端语言! 至今,我为不能掌握一门脚本语言而苦恼。 看来我需要学学Python了! ------------------------------------------------------------------------------- 就在前几天,和一位浙江省高校的信息技术老师聊天,我得到了一个震惊的消息: 明年,浙江省信息技术教材将不会在使用晦涩难懂的VB语言,而是改学更简 ...
一、sql 问题 两张表,一张学生表,一张成绩表 查询:三门功课全部及格的学生。 学生表:user id name1 张三2 李四3 王五 成绩表:score iduser_idsubjectscore11yuwen3021shuxue8031waiyu7042yuwen7052shuxue8062waiyu9073yuwen5083shuxue6093waiyu70 二、答案 select b.name from( select a.name, count(*) as num from( ...
Same code with different results. import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import org.junit.Test; public class JUnitTestVSMain { static class MyBlockedRunnale implements Runnable{ @Override public void run() { try { for(int i = ...
Cookie是什么,有什么用,为什么要用到Cookie Cookie 是小甜饼的意思,用于茶余饭后的小点心。 在程序中,就是一小段文本信息,写在 http 协议的 header 中, 由于 http 协议是无状态的,在http的每次请求和发生过程中,都带着 cookie Request: GET /spec.html HTTP/1.1 Host: www.example.org Cookie: theme=light; sessionToken=abc123 ... Response: HTTP/1.0 200 OK Content-type: text/html S ...
https://docs.spring.io/spring/docs/3.0.0.M3/reference/html/ch04s04.html Bean scopes 1、singleton 默认范围。         一个 Spring IoC 容器中只有一个 bean.         注意:这与单例设计模式不是一个概念。 用法: <bean id="s" class="x.x.XService"/> <!-- the following is equivalent, though redundant (sing ...
三个月大数据研发学习计划实战解析 http://blog.csdn.net/GitChat/article/details/78341484 第一阶段(基础阶段) 1)Linux学习(跟鸟哥学就ok了)—–20小时 Linux操作系统介绍与安装。 Linux常用命令。 Linux常用软件安装。 Linux网络。 防 ...
最近项目用到了SpringBoot,对其没有xml配置就可以运行感到非常神奇。之前没有细细追究。 说到 SpringBoot,需要提一下: 一、Spring的历史版本与配置方式 1. Spring 1.x 完全是 xml 的配置。 缺点:随着项目的扩大,xml越来越多,而且需要对xml分类。 2. Spring 2.x 在 JDK 1.5 更新的时代,可以使用注解。Spring 2.X 开始使用注解。 那么问题是:使用xml?还是使用注解? 得出最佳实践: 应用的基本配置用xml,业务用注解。 3. Spring 3.x 推荐使用 java 代码的配置注解,取代 xml @Con ...
一、Java之5种创建对象的方式 ———————————————————————————————————————— 使用 new 关键字 调用了构造函数 使用 Class 类的 newInstance 方法 调用了构造函数 使用 Constructor 类的 newInstance 方法 调用了构造函数 使用 clone 方法 没有调用构造函数 使用反序列化 没有调用构造函数 1.使用new关键字 这是最常见也是最简单的创建对象的方式了。通过这种方式,我们可以调用任意的构造函数(无参的和带参数的)。 Employee emp1 = new Employee(); 2.使用C ...
Example to connect to the mysql database in java For connecting java application with the mysql database, you need to follow 5 steps to perform database connectivity. In this example we are using MySql as the database. So we need to know following informations for the mysql database: Driver clas ...
ECMAScript 2015 (ES6) : Feature Overview & Comparison https://github.com/rse/es6-features http://es6-features.org/ 引用 class let https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let function* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Sta ...
Refer to: http://www.csdn.net/article/2015-02-13/2823956-angular-vs-react 【编者按】Kumar Sanket为Toptal公司的全栈Web开发者/工程师,他在一篇文章《Why I Ditched Angular for React》中对Angular和React进行了对比,他表示Angular在快速开发大型Web项目上很 ...
http://www.ipaomi.com/2017/10/20/自学-python-最好的-入门-书籍-推荐(附-免费-在线阅读-下/ 请大家根据自己的实际情况对号入座,挑选适合自己的 Python 入门书籍: 完全没有任何编程基础:01 号书 少量编程基础,不求全,只希望能以最快的速度入门:02 号书 少量编程基础,有一定的英文阅读能力,喜欢多一些项目实例:03, 04 号书 没什么编程基础,但时间较充裕,希望学习得全面一些:05, 06 号书 有一定编程基础,而且时间较充裕,希望学习得全面一些:09 号书 已经掌握了基本的 Python 编程,希望学习更多 Python 编程的技巧: ...
Building a RESTful Web Service This guide walks you through the process of creating a "hello world" RESTful web service with Spring. What you’ll build You’ll build a service that will accept HTTP GET requests at: http://localhost:8080/greeting and respond with a JSON representation o ...
Difference between spring @Controller and @RestController annotation Can @Controller annotation be used for both Web MVC and REST applications? If yes, how can we differentiate if it is Web MVC or REST application. Answer: - @Controller is used to mark classes as Spring MVC Controller. - @Res ...
Spring MVC Framework and REST Spring’s annotation-based MVC framework simplifies the process of creating RESTful web services. The key difference between a traditional Spring MVC controller and the RESTful web service controller is the way the HTTP response body is created. While the traditional MVC ...
Global site tag (gtag.js) - Google Analytics