Array as get parameter in Struts 2

白昼怎懂夜的黑 提交于 2019-11-29 14:12:55

You need to pass parameter pids multiple times:

http://localhost:8080/sm-shop/compare?pids=12&pids=23&pids=34

If you declared your pids property as array Struts2 will automatically map multiple parameters to array.

If you want to keep this(http://localhost:8080/sm-shop/compare?pids=12,23,34) url format either you have to add a custom converter or you can make pids a String in your action and parse the array by splitting it at commas.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!