我需要使用spring将我的https网址重定向为小写 如何做任何一个建议解决方案..
我按照以下网址的步骤操作,它对我不起作用。
How can I have case insensitive URLS in Spring MVC with annotated mappings
我需要的是:如果我键入STACKOVERFLOW.COM并输入mean它会重定向到stackoverflow.com,但上面的url步骤不符合我的需要。
答案 0 :(得分:1)
已经有很多与此相关的问题我认为您可以在此处轻松找到解决方案:https://jira.spring.io/browse/SPR-13286
这里还有关于stackoverflow的另一个问题: case insensitive mapping for Spring MVC @RequestMapping annotations
要修改动态网址,您可以在收到.toLowerCase()
时使用var pin = new CustomPin ();
pin.MapPin.Label = "Test";
pin.MapPin.Position = new Position(32, 10);
pin.MapPin.Label = "1";
pin.MapPin.Address = "394 Pacific Ave, San Francisco CA";
pin.Id = "Xamarin";
var pin1 = new CustomPin ();
pin1.MapPin.Label = "Test2";
pin1.MapPin.Position = new Position(33, 10);
pin1.MapPin.Label = "2";
pin1.MapPin.Address = "394 Pacific Ave, San Francisco CA";
pin1.Id = "Xamarin";
mymap.CustomPins = new List<CustomPin> { pin,pin1 };
mymap.Pins.Add (pin.MapPin);
mymap.Pins.Add (pin1.MapPin);
获取动态网址时对其进行转换。
我希望它会对你有所帮助。