لدي نقطة نهاية راحة مصممة في حذاء الربيع. يتم استخدام Tomcat كخادم مضمن. يستغرق معلمة استعلام.
- عندما أمرر معلمة الاستعلام كمعلمة 1٪ uFF07 ، يقرأ catcat داخليًا المعلمة على أنها خالية
- عندما أمرر معلمة طلب البحث كمعلمة 1٪ FF07 ، يقرأ catcat بعض الأحرف.
تقرأ أداة catcat حرف "٪" فقط عندما يتبعها رقمان سداسيًا عشريًا ، إذا تم وضع u بعد معلمة تحليل catcat "٪" null
مع الرسالة
Character decoding failed. Parameter [name] with value [param1%uFF07] has been ignored. Note that the name and value quoted here may be corrupted due to the failed decoding. Use debug level logging to see the original, non-corrupted values. Note: further occurrences of Parameter errors will be logged at DEBUG level.
هنا هو رمز تحكم التمهيد الربيع
@RestController
public class GreetingController {
private static final String template = "Hello, %s!";
private final AtomicLong counter = new AtomicLong();
@RequestMapping("/greeting")
public Greeting greeting(@RequestParam(value = "name", required = false) String name) {
return new Greeting(counter.incrementAndGet(), String.format(template, name));
}
}