Skip to content

Instantly share code, notes, and snippets.

# jax-ws https clients
http://community.giga-works.com/java/jax-ws-client-https.html
# 証明書を未チェックでsoap通信する
https://blogs.yahoo.co.jp/dk521123/36516080.html
buildscript {
ext {
springBootVersion = '1.5.2.RELEASE'
}
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
}
@tigawa
tigawa / gist:74e58095ac3231a2dd9a8f9ef4a947d6
Created February 22, 2017 05:33
スレッドの割り込みについて
# 割り込みについて詳しくまとめられている。
https://www.jpcert.or.jp/java-rules/thi04-j.html
HttpURLConnectionのブロックをキャンセルしたい場合のことが書いてある。
http://d.hatena.ne.jp/tateisu/20100711/1278792519
@tigawa
tigawa / gist:e55ba46468d032d8524642c7a2181961
Created February 15, 2017 08:17
1件だけ要素があるリストを生成する。
Collections.singletonList(new Object())
@tigawa
tigawa / gist:3e219a99dfa7e7838694b1ddf6b0d961
Last active January 25, 2017 23:33
Streamから1発でStringに変換する方法
// Streamから1発でStringに変換する方法
String responseBody = IOUtils.toString(bufferedReader);
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style media="screen">
html {
height: 100%;
}
body {
@tigawa
tigawa / Month.java
Created April 24, 2016 04:54
列挙型のサンプル
package com.tigawa;
public enum Month {
Apr(4),
May(5),
Jun(6),
Jul(7),
Aug(8),
Sep(9),
Oct(10),
@tigawa
tigawa / CustomRepository.java
Last active November 15, 2015 01:19
複数検索項目、ページネーションに対応した custom Repositoryクラス ※動作検証していません
@Repository
public interface UserRepository extends
JpaRepository<User, Long>,
JpaSpecificationExecutor<User>,
UserRepositoryCustom {}
@Repository
public interface UserRepositoryCustom {
public List<User> findUsers(Map<String,Object> params);
}
@tigawa
tigawa / index.html
Last active October 26, 2015 16:14
bootstrap3 雛形
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
@tigawa
tigawa / gist:8f4d01852a69d29fd2d9
Last active August 29, 2015 14:14
access.logを解析するコマンド
cat access.log | awk '{print $5 " " $7 }' | egrep "[45]..$" | sort | uniq - c | sort -nr
# 出力結果
95 /favicon.ico 404
13 /help?topic=8 500
11 /login 403