Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 map 作为属性添加到 spring 的 servlet 并获取其值,例如请求或会话模型中的属性(${map['key']})。如何添加此地图?
找到一种方法作为拦截器。还有其他解决方案吗?
拦截器是预处理请求和全局应用逻辑的适当且预期的方式。它们类似于纯 servlet 环境中的过滤器,应该以同样的方式考虑。
创建您自己的拦截器并在其中为您的请求装饰或添加属性。