SYMBOL INDEX (69 symbols across 13 files) FILE: src/main/java/playground/Application.java class Application (line 42) | @SpringBootApplication method main (line 47) | public static void main(String[] args) throws Exception { method addCorsMappings (line 51) | @Override method handlerMapping (line 56) | @Bean method handlerAdapter (line 67) | @Bean method webSocketService (line 72) | @Bean FILE: src/main/java/playground/CorsController.java class CorsController (line 26) | @RestController method noCors (line 29) | @GetMapping("/cors/no") method corsConfig (line 34) | @GetMapping("/cors/config") method corsaAnotation (line 39) | @CrossOrigin FILE: src/main/java/playground/EchoWebSocketHandler.java class EchoWebSocketHandler (line 30) | public class EchoWebSocketHandler implements WebSocketHandler { method handle (line 32) | @Override FILE: src/main/java/playground/JacksonController.java class JacksonController (line 30) | @RestController method view (line 36) | @GetMapping(path = "/jackson/view") method viewWithMono (line 42) | @GetMapping(path = "/jackson/view-with-mono") method viewWithFlux (line 48) | @GetMapping(path = "/jackson/view-with-flux") method viewWithObservable (line 54) | @GetMapping(path = "/jackson/view-with-observable") method full (line 60) | @GetMapping(path = "/jackson/full") type MyJacksonView1 (line 66) | private interface MyJacksonView1 {} type MyJacksonView2 (line 68) | private interface MyJacksonView2 {} class JacksonViewBean (line 70) | private static class JacksonViewBean { method JacksonViewBean (line 72) | public JacksonViewBean(String withView1, String withView2, String wi... method getWithView1 (line 86) | public String getWithView1() { method setWithView1 (line 90) | public void setWithView1(String withView1) { method getWithView2 (line 94) | public String getWithView2() { method setWithView2 (line 98) | public void setWithView2(String withView2) { method getWithoutView (line 102) | public String getWithoutView() { method setWithoutView (line 106) | public void setWithoutView(String withoutView) { FILE: src/main/java/playground/Person.java class Person (line 25) | @Document method Person (line 35) | public Person() { method Person (line 38) | public Person(String firstname, String lastname) { method Person (line 43) | public Person(String id, String firstname, String lastname) { method getId (line 50) | @Id method setId (line 55) | public void setId(String id) { method getFirstname (line 59) | public String getFirstname() { method setFirstname (line 63) | public void setFirstname(String firstname) { method getLastname (line 67) | public String getLastname() { method setLastname (line 71) | public void setLastname(String lastname) { method equals (line 75) | @Override method hashCode (line 98) | @Override method toString (line 106) | @Override FILE: src/main/java/playground/ResourceController.java class ResourceController (line 26) | @RestController method index (line 29) | @GetMapping(path = "/", produces = MediaType.TEXT_HTML_VALUE) method resource (line 34) | @GetMapping(path = "/file") FILE: src/main/java/playground/SseController.java class SseController (line 30) | @RestController method string (line 35) | @GetMapping("/sse/string") method person (line 42) | @GetMapping("/sse/person") method event (line 49) | @GetMapping("/sse/event") method receive (line 60) | @PostMapping("/sse/receive/{val}") method send (line 65) | @GetMapping("/sse/send") FILE: src/main/java/playground/mongo/MongoConfiguration.java class MongoConfiguration (line 37) | @Profile("mongo") method objectMapper (line 45) | @Bean method mongoClient (line 50) | @Override method getDatabaseName (line 55) | @Override method initData (line 60) | @Bean FILE: src/main/java/playground/mongo/PersonReactiveController.java class PersonReactiveController (line 35) | @Profile("mongo") method PersonReactiveController (line 41) | public PersonReactiveController(PersonReactiveCrudRepository repositor... method create (line 45) | @PostMapping("/mongo") method list (line 50) | @GetMapping("/mongo") method findById (line 55) | @GetMapping("/mongo/{id}") FILE: src/main/java/playground/mongo/PersonReactiveCrudRepository.java type PersonReactiveCrudRepository (line 24) | public interface PersonReactiveCrudRepository extends ReactiveCrudReposi... FILE: src/main/java/playground/mongo/PersonRxJava1Controller.java class PersonRxJava1Controller (line 34) | @Profile("mongo") method PersonRxJava1Controller (line 40) | public PersonRxJava1Controller(PersonRxJava1CrudRepository repository) { method create (line 44) | @PostMapping("/rxjava/mongo") method list (line 49) | @GetMapping("/rxjava/mongo") method findById (line 54) | @GetMapping("/rxjava/mongo/{id}") FILE: src/main/java/playground/mongo/PersonRxJava1CrudRepository.java type PersonRxJava1CrudRepository (line 25) | public interface PersonRxJava1CrudRepository extends RxJava1CrudReposito... FILE: src/main/resources/static/common.js function addEvent (line 1) | function addEvent(evnt, elem, func) { function print (line 12) | function print(message) {