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.
我正在分析一个jsp页面。在这个 jsp 页面中,我找到了以下代码。
在这里我可以理解客户是jsp bean。
<c:if test="${empty customer}"> /*----- ....*/ </c:if>
我想找到客户bean的定义及其与jsp的链接。我搜索了项目中的所有 tld。但是找不到。
有人可以指导我找到客户 bean 的定义(它是如何链接到 JSP 的)。
您可能找不到从 bean 到 jsp 的链接,在我看来,这种耦合是不必要的,或者更糟的是,很危险。最好customer通过 IDE 直接在项目中搜索 bean 来查找它。尝试在将 bean 绑定到 jsp 的 servlet 处查找引用。
customer