Not sure I fully understand the question, and I haven't used the WizardController, but I'll give it a go:
Can I use bind to more than one object
I think you can only use it with your command object. But you can bind to attributes of that object.
like employee and jobs? where can I set this objects to send to the form?
Seems like jobs would likely be a collection or array attribute of employee? In which case I'd think you'd set up the jobs as an attribute of the employee wherever you set up the employee - e.g. formBackingObject. As long as your employee has a get method for jobs, you can access the jobs collection in jsp el as ${employee.jobs}, and use it with spring:bind
Chris Harris
Carlisle, UK