background:
i need to create a hashmap on my jsp, using just jstl, if possible. after this, i need to pass this hashmap to custom tag, where the custom tag will get it like this:
public void setSomeVar(Map m){ ... }
1. is this even possible?
2. can anything other then a string be passed into a tag?
thank you.