Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions spring-boot-project/spring-boot-cli/samples/http.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import groovyx.net.http.*
class Example implements CommandLineRunner {

@Autowired
ApplicationContext context;
ApplicationContext context

@RequestMapping("/")
@ResponseBody
Expand All @@ -16,7 +16,7 @@ class Example implements CommandLineRunner {
}

void run(String... args) {
def port = context.webServer.port;
def port = context.webServer.port
def world = new RESTClient("http://localhost:" + port).get(path:"/").data.text
print "Hello " + world
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ package org.test
class SpringIntegrationExample implements CommandLineRunner {

@Autowired
private ApplicationContext context;
private ApplicationContext context

@Bean
DirectChannel input() {
new DirectChannel();
new DirectChannel()
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.test

import static org.springframework.boot.groovy.GroovyTemplate.*;
import static org.springframework.boot.groovy.GroovyTemplate.*

@Component
class Example implements CommandLineRunner {
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-project/spring-boot-cli/samples/ui.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Example {
@RequestMapping("/")
public String helloWorld(Map<String,Object> model) {
model.putAll([title: "My Page", date: new Date(), message: "Hello World"])
return "home";
return "home"
}
}

Expand Down
6 changes: 3 additions & 3 deletions spring-boot-project/spring-boot-cli/samples/web.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
class Example {

@Autowired
private MyService myService;
private MyService myService

@RequestMapping("/")
@ResponseBody
public String helloWorld() {
return myService.sayWorld();
return myService.sayWorld()
}

}
Expand All @@ -16,6 +16,6 @@ class Example {
class MyService {

public String sayWorld() {
return "World!";
return "World!"
}
}