minor cleanup work

This commit is contained in:
eugenp 2015-05-30 18:22:29 +01:00
parent df2a789fa2
commit be4c05ad2d
8 changed files with 69 additions and 74 deletions

View File

@ -15,7 +15,6 @@
<version>1.2.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>

View File

@ -26,7 +26,7 @@ public class CustomEndpoint implements Endpoint<List<String>> {
}
public List<String> invoke() {
//Your logic to display the output
// Your logic to display the output
List<String> messages = new ArrayList<String>();
messages.add("This is message 1");
messages.add("This is message 2");

View File

@ -1,6 +1,5 @@
package org.baeldung.main;
import org.baeldung.service.LoginService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
@ -11,7 +10,7 @@ import org.springframework.web.bind.annotation.RestController;
@RestController
@EnableAutoConfiguration
@ComponentScan({"org.baeldung.endpoints", "org.baeldung.service", "org.baeldung.monitor.jmx"})
@ComponentScan({ "org.baeldung.endpoints", "org.baeldung.service", "org.baeldung.monitor.jmx" })
public class SpringBootActuatorApplication {
@Autowired

View File

@ -16,13 +16,10 @@ public class LoginServiceImpl implements LoginService {
public boolean login(String userName, char[] password) {
boolean success;
if (userName.equals("admin") && "secret".toCharArray().equals(password))
{
if (userName.equals("admin") && "secret".toCharArray().equals(password)) {
counterService.increment("counter.login.success");
success = true;
}
else
{
} else {
counterService.increment("counter.login.failure");
success = false;
}