├── .gitignore ├── Jenkinsfile ├── Readme.md ├── pom.xml └── src ├── main ├── java │ └── hello │ │ ├── Application.java │ │ ├── Greeting.java │ │ ├── GreetingController.java │ │ ├── HelloMessage.java │ │ ├── NotificationTest.java │ │ ├── PGConn.java │ │ ├── ScheduledUpdatesOnTopic.java │ │ ├── SchedulerConfig.java │ │ ├── SecurityConfig.java │ │ └── WebSocketConfig.java └── resources │ └── static │ ├── Springboot WS PG.gif │ ├── app.js │ ├── index.html │ └── main.css └── test └── java └── hello └── GreetingIntegrationTests.java /.gitignore: -------------------------------------------------------------------------------- 1 | target -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/Readme.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/hello/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/Application.java -------------------------------------------------------------------------------- /src/main/java/hello/Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/Greeting.java -------------------------------------------------------------------------------- /src/main/java/hello/GreetingController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/GreetingController.java -------------------------------------------------------------------------------- /src/main/java/hello/HelloMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/HelloMessage.java -------------------------------------------------------------------------------- /src/main/java/hello/NotificationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/NotificationTest.java -------------------------------------------------------------------------------- /src/main/java/hello/PGConn.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/PGConn.java -------------------------------------------------------------------------------- /src/main/java/hello/ScheduledUpdatesOnTopic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/ScheduledUpdatesOnTopic.java -------------------------------------------------------------------------------- /src/main/java/hello/SchedulerConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/SchedulerConfig.java -------------------------------------------------------------------------------- /src/main/java/hello/SecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/SecurityConfig.java -------------------------------------------------------------------------------- /src/main/java/hello/WebSocketConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/java/hello/WebSocketConfig.java -------------------------------------------------------------------------------- /src/main/resources/static/Springboot WS PG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/resources/static/Springboot WS PG.gif -------------------------------------------------------------------------------- /src/main/resources/static/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/resources/static/app.js -------------------------------------------------------------------------------- /src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/resources/static/index.html -------------------------------------------------------------------------------- /src/main/resources/static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/main/resources/static/main.css -------------------------------------------------------------------------------- /src/test/java/hello/GreetingIntegrationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjanprj/SpringBootWSPostgresNotify/HEAD/src/test/java/hello/GreetingIntegrationTests.java --------------------------------------------------------------------------------