I'm not sure that would be possible, Rick.
If you could, your path would have to be "../bbb/something", and the servlet spec doesn't say whether or not it is legal to use ../ to step back a folder.
Head First says that you can't use ../../ (or however many folders deep you are) to step out of the current context into a different one. HF doesn't say that ../ is completely illegal, however.
I have to lean towards the
philosophy of "If the spec doesn't say I can do it, I shouldn't try it" because, even if you get something not in the spec working in
Tomcat today, your app might break if you move it to another container tomorrow. For your scenario, you're best off using the full context path... or start mapping your servlets with postfixes instead of those virtual folders.