Guest User

Untitled

a guest
Sep 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package com.inventories;
  2.  
  3. import ...
  4.  
  5. @SpringBootApplication
  6. public class InventoriesApplication {
  7.  
  8. public static void main(String[] args) {
  9. SpringApplication.run(InventoriesApplication.class, args);
  10. }
  11.  
  12. //To Support Cache API
  13. @Bean
  14. public Filter filter(){
  15. ShallowEtagHeaderFilter filter=new ShallowEtagHeaderFilter();
  16. return filter;
  17. }
  18. //End Support Cache API
  19. }
Add Comment
Please, Sign In to add comment