Skip to content

Instantly share code, notes, and snippets.

View avinash10584's full-sized avatar
🏠
Working from home

Avinash Singh avinash10584

🏠
Working from home
View GitHub Profile
@avinash10584
avinash10584 / application-cluster.yml
Created June 18, 2020 16:03
application-cluster.yml
server:
port: 4024
servlet:
context-path: /app
spring:
application:
name: todolist-redis
cache:
type: redis
@avinash10584
avinash10584 / application-sentinel.yml
Created June 18, 2020 21:23
application-sentinel.yml
server:
port: 4024
servlet:
context-path: /app
spring:
application:
name: todolist-redis
cache:
type: redis
@avinash10584
avinash10584 / application-cluster.yml
Created June 19, 2020 05:47
application-cluster.yml
server:
port: 4024
servlet:
context-path: /app
spring:
application:
name: todolist-redis
cache:
type: redis
@avinash10584
avinash10584 / Application.java
Created June 19, 2020 16:01
Application.java
@EnableCaching
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}