I hereby claim:
- I am jwagenleitner on github.
- I am jwagenleitner (https://keybase.io/jwagenleitner) on keybase.
- I have a public key whose fingerprint is 3FFE FCBF 54AA E780 2068 3BC0 3166 F899 0A4D 8048
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
package org.foo; | |
import javax.tools.JavaCompiler; | |
import javax.tools.JavaFileObject; | |
import javax.tools.StandardJavaFileManager; | |
import javax.tools.ToolProvider; | |
import java.io.File; | |
import java.util.Arrays; | |
class JCTest { |
Grails application running at http://localhost:8080 in environment: production | |
ERROR org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/].[grailsDispatcherServlet] - Servlet.service() for servlet [grailsDispatcherServlet] in context with path [] threw exception [Could not resolve view with name '/index' in servlet with name 'grailsDispatcherServlet'] with root cause | |
javax.servlet.ServletException: Could not resolve view with name '/index' in servlet with name 'grailsDispatcherServlet' | |
at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1227) ~[spring-webmvc-4.2.1.RELEASE.jar!/:4.2.1.RELEASE] | |
at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1027) ~[spring-webmvc-4.2.1.RELEASE.jar!/:4.2.1.RELEASE] | |
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:971) ~[spring-webmvc-4.2.1.RELEASE.jar!/:4.2.1.RELEASE] | |
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet. |
/* | |
* Copyright 2013 the original author or authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |
@GrabResolver(name='groovy-wslite', root='https://oss.sonatype.org/content/groups/public', m2Compatible=true) | |
@Grab(group='com.github.groovy-wslite', module='groovy-wslite', version='2.0.0-SNAPSHOT', changing=true) | |
import wslite.rest.* | |
RESTClient github = new RESTClient('https://api.github.com/') | |
def response = github.get(path: 'users/jwagenleitner') | |
assert 'jwagenleitner' == response.json.login |