Commit 863d5059 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '1.5.x'

parents a7ee2b8e 07d9c3fe
/* /*
* Copyright 2012-2015 the original author or authors. * Copyright 2012-2017 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package sample.secure.oauth2.resource; package sample.secure.oauth2.actuator;
import java.util.UUID; import java.util.UUID;
...@@ -27,7 +27,7 @@ import org.springframework.web.bind.annotation.RestController; ...@@ -27,7 +27,7 @@ import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication @SpringBootApplication
@EnableResourceServer @EnableResourceServer
@RestController @RestController
public class SampleSecureOAuth2ResourceApplication { public class SampleSecureOAuth2ActuatorApplication {
@GetMapping("/") @GetMapping("/")
public Message home() { public Message home() {
...@@ -35,12 +35,10 @@ public class SampleSecureOAuth2ResourceApplication { ...@@ -35,12 +35,10 @@ public class SampleSecureOAuth2ResourceApplication {
} }
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(SampleSecureOAuth2ResourceApplication.class, args); SpringApplication.run(SampleSecureOAuth2ActuatorApplication.class, args);
} }
} class Message {
class Message {
private String id = UUID.randomUUID().toString(); private String id = UUID.randomUUID().toString();
...@@ -51,11 +49,13 @@ class Message { ...@@ -51,11 +49,13 @@ class Message {
} }
public String getId() { public String getId() {
return id; return this.id;
} }
public String getValue() { public String getValue() {
return value; return this.value;
}
} }
} }
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
* limitations under the License. * limitations under the License.
*/ */
package sample.secure.oauth2.resource; package sample.secure.oauth2.actuator;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
...@@ -45,7 +45,7 @@ import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppC ...@@ -45,7 +45,7 @@ import static org.springframework.test.web.servlet.setup.MockMvcBuilders.webAppC
*/ */
@RunWith(SpringRunner.class) @RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT) @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
public class SampleSecureOAuth2ResourceApplicationTests { public class SampleSecureOAuth2ActuatorApplicationTests {
@Autowired @Autowired
private WebApplicationContext context; private WebApplicationContext context;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment