编程技术 第1531页
Multithreading in Java for dummies (part 1)-拾光赋

Multithreading in Java for dummies (part 1)

Multithreading in Java for dummies (part 1),In this series we'll review several basic concepts to ramp up with concurrent programming in Java. I know, Internet is full of reference...
Create Executable Kotlin JARs, using Gradle-拾光赋

Create Executable Kotlin JARs, using Gradle

Create Executable Kotlin JARs, using Gradle,This article was originally posted in my blog Kotlin is great for creating small command-line utilities, which can be packaged and distr...
Cucumber and Spring Boot-拾光赋

Cucumber and Spring Boot

Cucumber and Spring Boot,I'm a big automated testing fan. Both work and personal, it just makes life easier. And I'm not just talking about unit testing. Integration/Acceptance/Ver...
Data classes in Kotlin-拾光赋

Data classes in Kotlin

Data classes in Kotlin,(Crazy busy day today, so simple article to meet my quota. Sorry) I mentioned before about Kotlin being significantly streamlined as compared to Java. And on...
Why I prefer Kotlin-拾光赋

Why I prefer Kotlin

Why I prefer Kotlin,I've been an enterprise Java developer for a little over 10 years, and I've been using Java for just over 16 years - back when Java 1.3 was the latest and great...
A Junior's Development Setup-拾光赋

A Junior’s Development Setup

A Junior's Development Setup,So after reading Karan Sharma's on his setup, I felt compelled to write a little post of my own. Who Am I and What Kind of Development Do I Do? I was a...
Review your auto-generated code-拾光赋

Review your auto-generated code

Review your auto-generated code,In this post I'll review several mistakes that, based on my experience, may be frequent that we make developing code in Java, and particularly using...
kity的头像-拾光赋kity9年前
02711
Source Code for Game of Life-拾光赋

Source Code for Game of Life

Source Code for Game of Life,Last week I blogged about the Game of Life. Well it took some searching through dead hard drives and old USB storage but I found the program I wrote, a...
JavaとApache MINAでお手軽にSSHサーバ作成-拾光赋

JavaとApache MINAでお手軽にSSHサーバ作成

JavaとApache MINAでお手軽にSSHサーバ作成, はじめに Apache MINAを使うとJavaで簡単にSSHサーバを作ることができます。 以下はEmbedding SSHD in 5 minutesを元にしたSSHサーバのソースです。...
kity的头像-拾光赋kity11年前
0297
SpockとS2JUnit4を混在できないのでspock-seasarを作った-拾光赋

SpockとS2JUnit4を混在できないのでspock-seasarを作った

SpockとS2JUnit4を混在できないのでspock-seasarを作った, はじめに SAStrutsなどSeasarベースのテストケースを作る時にS2JUnit4を使っているのですが、最近知ったSpockは簡潔に書くことができ...
kity的头像-拾光赋kity12年前
02215
Javaで短いFizzBuzz-拾光赋

Javaで短いFizzBuzz

Javaで短いFizzBuzz,数年前にAnarchy Golfに投稿したjavaのFizzBuzzです。 懐しくて公開しました。 class f{public static void main(String[]a){for(int i=0;++i<101;)System.out.println((...
kity的头像-拾光赋kity12年前
0338
Gradleでマルチプロジェクト-拾光赋

Gradleでマルチプロジェクト

Gradleでマルチプロジェクト,Gradleは単一プロジェクトだけではなく複数のプロジェクトをまとめて扱うことができて、マルチプロジェクトと呼んでいます。 マルチプロジェクトではいくつかのレイ...
kity的头像-拾光赋kity12年前
04210