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.
我正在尝试重构一些 jsps 以从中删除脚本。我有一个使用非常广泛的类,它使用ThreadLocal. 我的问题是我无法使用它来定义它,jsp:usedBean因为它在应该做的时候构造了一个新实例MyClass.getMyClass()。这是我的脚本中剩下的内容
ThreadLocal
jsp:usedBean
MyClass.getMyClass()
<% ContextDataBean contextData = ContextDataBean.getContextData(); %>
有没有一种方法可以在我jsp没有脚本的情况下加载这个类?
jsp