http://oreilly.com/catalog/9780596005634/ Mine has 2004 in the book copyright note.
Yes, it is passing the value properly. I tested it using <c:out value="${param.title}" /> on a
test processing page and it shows up fine.
Using the <jsp:setProperty ... property="*"> like this on a Bean is supposed to set all properties automatically if it follows the proper bean getter/setter structure, which my bean does. All other text fields pass through perfectly fine, just the select doesn't.
Looking around more, I might have found something. I'm wondering it it's passing it through not as a single value, but some sort of Map or List, since select has the possibility of having multiple values. Not yet sure how I'd get the value then.