அனைத்து மொழிகளும் ஃப்ரேம்வொர்க்குகளும்
Spring Boot Java
/pixel.gif க்கு வரும் ரெக்வெஸ்ட்களுக்கு empty GIF மூலம் பதிலளிக்கும், Spring Boot க்கான Java ஸ்னிப்பெட். GIF ஸ்டார்ட்அப்பில் ஒருமுறை மட்டுமே டீகோட் செய்யப்படுகிறது.
Spring Boot Java
package com.example.pixel;
import java.util.Base64;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.http.CacheControl;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class PixelApplication {
private static final byte[] GIF = Base64.getDecoder().decode("R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
@GetMapping("/pixel.gif")
ResponseEntity<byte[]> pixel() {
return ResponseEntity.ok()
.contentType(MediaType.IMAGE_GIF)
.cacheControl(CacheControl.noStore())
.body(GIF);
}
public static void main(String[] args) {
SpringApplication.run(PixelApplication.class, args);
}
}
இந்த ஸ்னிப்பெட்டை ரன் செய்து, அது திருப்பித் தந்த பைட்களை ஒப்பிட்டுப் பார்த்தோம்.
சரிபார்
curl -sI http://localhost:8080/pixel.gif
அதிகாரப்பூர்வ சைட்: Spring Boot