View thread-dump.txt
Attaching to process ID 419, please wait... | |
Debugger attached successfully. | |
Server compiler detected. | |
JVM version is 25.121-b13 | |
Deadlock Detection: | |
No deadlocks found. | |
Thread 2387: (state = BLOCKED) | |
- sun.misc.Unsafe.park(boolean, long) @bci=0 (Compiled frame; information may be imprecise) |
View Application.java
package com.example; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker; | |
import org.springframework.cloud.client.discovery.EnableDiscoveryClient; | |
import org.springframework.context.annotation.Import; | |
@EnableCircuitBreaker |
View ServiceConfiguration.java
package com.example; | |
import org.h2.server.web.WebServlet; | |
import org.springframework.boot.context.embedded.ServletRegistrationBean; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
@Configuration | |
public class ServiceConfiguration { | |
@Bean |
View stacktrace.txt
rg.springframework.http.converter.HttpMessageNotReadableException: Could not read document: Can not instantiate value of type [simple type, class org.gmjm.logistics.domain.Hub] from String value ('http://localhost:8080/hubs/1044'); no single-String constructor/factory method | |
at [Source: HttpInputOverHTTP@207155db; line: 2, column: 30] (through reference chain: org.gmjm.logistics.domain.Route["originHub"]); nested exception is com.fasterxml.jackson.databind.JsonMappingException: Can not instantiate value of type [simple type, class org.gmjm.logistics.domain.Hub] from String value ('http://localhost:8080/hubs/1044'); no single-String constructor/factory method | |
at [Source: HttpInputOverHTTP@207155db; line: 2, column: 30] (through reference chain: org.gmjm.logistics.domain.Route["originHub"]) | |
at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.readJavaType(AbstractJackson2HttpMessageConverter.java:224) ~[spring-web-4.2.4.RELEASE.jar:4.2.4.RELEASE] | |
at org.springframework.http.conver |
View build.gradle
buildscript { | |
ext { | |
springBootVersion = '1.3.2.RELEASE' | |
} | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") | |
} |
View SpringDataNeo4jDemoApplication.java
package org.gmjm; | |
import org.springframework.boot.SpringApplication; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
@SpringBootApplication | |
public class SpringDataNeo4jDemoApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(SpringDataNeo4jDemoApplication.class, args); |
View DemoNeo4jConfig.java
package org.gmjm; | |
import org.neo4j.ogm.session.Session; | |
import org.neo4j.ogm.session.SessionFactory; | |
import org.springframework.boot.autoconfigure.EnableAutoConfiguration; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.context.annotation.Scope; | |
import org.springframework.context.annotation.ScopedProxyMode; | |
import org.springframework.data.neo4j.config.Neo4jConfiguration; |
View GreedyHealingSolution.java
package com.gmjm.challenge1.solutions.gitter; | |
import java.util.ArrayList; | |
import java.util.HashMap; | |
import java.util.List; | |
import java.util.Map; | |
import com.gmjm.challenge1.Challenge.Node; | |
import com.gmjm.challenge1.ChallengeSolution; |
View logFinancialHistory.js
/** | |
* Retrieves all the rows in the active spreadsheet that contain data and logs the | |
* values for each row. | |
* For more information on using the Spreadsheet API, see | |
* https://developers.google.com/apps-script/service_spreadsheet | |
*/ | |
function readRows() { | |
var sheet = SpreadsheetApp.getActiveSheet(); | |
var rows = sheet.getDataRange(); | |
var numRows = rows.getNumRows(); |
View JavaEightTests.java
import java.util.Arrays; | |
import java.util.List; | |
import java.util.ArrayList; | |
import java.util.stream.*; | |
import java.io.BufferedReader; | |
import java.io.FileReader; | |
import java.io.File; | |
public class JavaEightTests | |
{ |
NewerOlder