* move security content from spring-security-rest-full * swagger update * move query language to new module * rename spring-security-rest-full to spring-rest-full * group persistence modules * group testing modules * try fix conflict * cleanup * group and cleanup
14 lines
332 B
Java
Executable File
14 lines
332 B
Java
Executable File
package com.baeldung.springSecurity;
|
|
|
|
import javax.ws.rs.ApplicationPath;
|
|
import javax.ws.rs.core.Application;
|
|
|
|
/**
|
|
* Application class required by JAX-RS. If you don't want to have any
|
|
* prefix in the URL, you can set the application path to "/".
|
|
*/
|
|
@ApplicationPath("/")
|
|
public class ApplicationConfig extends Application {
|
|
|
|
}
|