View build.gradle
configurations { jmockit } | |
dependencies { | |
jmockit ('com.googlecode.jmockit:jmockit:1.7') | |
testCompile ('junit:junit:4.11') | |
} | |
test { | |
// jmockitがjunitよりも前にclasspathが通ってる必要があるので下記の対応を行っています |
View gist:5eb3b439410c99b28dd1517f4167cfc7
https://beroux.com/english/articles/kubernetes/?part=3 |
View HogeController.java
package jp.test.hoge.controller; | |
import jp.test.hoge.model.HogeModel; | |
import org.springframework.stereotype.Controller; | |
import org.springframework.web.bind.annotation.RequestMapping; | |
import org.springframework.web.bind.annotation.ResponseBody; | |
@Controller | |
public class HogeController { |
View jstemplate-sample.js
var myJson1 = {title:"タイトル_1_ですよ。",detail:"このデータはlistデータを持ってるのです。",list:[{listTitle:"1個目なのです",attrChecked:true,attrName:"name_1"},{listTitle:"2個目なのです",attrChecked:false,attrName:"name_2"}]}; | |
var myJson2 = {title:"タイトル_2_ですよ。",detail:"このデータはlistデータを持ってないのです。"}; | |
function showTitle(title) { | |
alert(title); | |
}; | |
function setTemplateData(type) { | |
// テンプレートの取得 | |
var t = jstGetTemplate('template'); |
View ReduceTest.java
import java.util.Arrays; | |
import java.util.Optional; | |
public class ReduceTest { | |
public static void main(String[] args) { | |
Optional<Sum> summary = Arrays.asList(new Sum(1, 10),new Sum(2, 15),new Sum(3, 5)).stream().reduce((sum1,sum2) -> { | |
if (Optional.ofNullable(sum1).isPresent() == false) { | |
System.out.println("Sum1 is empty."); | |
return sum2; |
View file0.java
package jp.hoge; | |
import java.util.HashMap; | |
import java.util.Map; | |
import javax.validation.Valid; | |
import javax.validation.constraints.NotNull; | |
import com.fasterxml.jackson.annotation.JsonProperty; |
View build.gradle
plugins { | |
id 'java' | |
id 'com.github.johnrengelman.shadow' version '1.2.0' | |
} | |
apply plugin: 'java' | |
apply plugin: 'maven' | |
apply plugin: 'application' |
View aws-init-setting.yml
- hosts: '{{host_name}}' | |
sudo: yes | |
roles: | |
- common | |
- aws/common | |
- aws/amazon-linux-init |
View file0.txt
ERROR [2015-02-27 11:01:38,781] io.dropwizard.jersey.errors.LoggingExceptionMapper: Error handling a request: ef46ad41b77903a3 | |
! com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table 'hoge.hibernate_sequence' doesn't exist | |
! at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[na:1.8.0_20] |
View file0.xml
<?xml version="1.0" encoding="UTF-8"?> | |
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog | |
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.0.xsd"> | |
<changeSet id="1" author="y.hoge"> | |
<createTable tableName="hoges"> | |
<column name="id" type="int(11)" autoIncrement="true"> | |
<constraints primaryKey="true" nullable="false" /> | |
</column> |
NewerOlder