Skip to content

Instantly share code, notes, and snippets.

View m-doi's full-sized avatar

土井 正宏 m-doi

  • BIGLOBE ,Ltd
View GitHub Profile
@m-doi
m-doi / convert.py
Created October 5, 2017 16:24
event2state
#!/usr/bin/python
# coding: UTF-8
def convert(node, rec_set):
if node == None:
return (rec_set[1], rec_set[2], "", "") # いきなり休会とか退会がくることは考慮しない
if node[0] == rec_set[1]:
return node
if rec_set[1] == "signup":
return (rec_set[1], rec_set[2], "", "")
package com.doilux.either;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.util.Arrays;
import java.util.function.Function;
import java.util.stream.Stream;
package com.doilux.generics;
import java.util.List;
import java.util.function.Function;
import java.util.stream.Collectors;
public class Odai {
public static void printA(List<Int> l) {
#!/bin/bash
rm -f ./out.jpg
convert \
-pointsize 20 \
-annotate +100+80 "コードかいてる場合じゃねえ!!" \
-font "/Library/Fonts/ヒラギノ明朝 Pro W6.otf" \
-fill black \
./ootoro600-400.jpg \

1 Day 1 JIRA :SPR-13486

https://jira.spring.io/browse/SPR-13486?jql=project%20%3D%20SPR%20AND%20issuetype%20%3D%20%22New%20Feature%22

Support multiple composed annotations on a single annotated element Status Quo The findMergedAnnotation*(...) and getMergedAnnotation*(...) methods in AnnotatedElementUtils only support a single target annotation and therefore a single composed annotation. However, there are certain scenarios for which it would be beneficial to retrieve multiple composed annotations on a single annotated element. As a concrete example, see SPR-13475 which requests support for @Cacheable, @CacheEvict, and CachePut as merged composed annotations. Deliverables Introduce support in AnnotatedElementUtils for processing multiple composed annotations above a single annotated element.