* Introduction to JAX-WS[http://jira.baeldung.com/browse/BAEL-611]
* Introduction to JAX-WS[http://jira.baeldung.com/browse/BAEL-611]
* Removed unnecessary comment
* Introduction to JAX-WS[http://jira.baeldung.com/browse/BAEL-611]
Added Exception test cases
* Applied baeldung formatter in Eclipse
* Merged from https://github.com/eugenp/tutorials
Introduction to JAX-WS[http://jira.baeldung.com/browse/BAEL-611]
* Revert "Merged from https://github.com/eugenp/tutorials"
This reverts commit 74447a163b.
* Introduction to JAX-WS[http://jira.baeldung.com/browse/BAEL-611]
* Introduction to JAX-WS[http://jira.baeldung.com/browse/BAEL-611]
* Spring Security for a Java EE Application[http://jira.baeldung.com/browse/BAEL-884]
16 lines
277 B
Java
16 lines
277 B
Java
package com.baeldung.springSecurity.controller;
|
|
|
|
import javax.mvc.annotation.Controller;
|
|
import javax.ws.rs.GET;
|
|
import javax.ws.rs.Path;
|
|
|
|
@Path("/auth/login")
|
|
@Controller
|
|
public class LoginController {
|
|
|
|
@GET
|
|
public String login() {
|
|
return "login.jsp";
|
|
}
|
|
}
|