BAEL-89 Some final code changes for the article

This commit is contained in:
tschiman 2016-11-27 16:02:24 -07:00
parent 510dbeac24
commit aecc8503f2
3 changed files with 2 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<artifactId>spring-session</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<packaging>jar</packaging>
<parent>
<groupId>org.springframework.boot</groupId>

View File

@ -6,7 +6,7 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
public class SessionController {
@RequestMapping("/")
public String helloTomcatAdmin() {
public String helloAdmin() {
return "hello admin";
}
}

View File

@ -83,5 +83,4 @@ public class SessionControllerTest {
return new HttpEntity<>(headers);
}
}