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.
在 Web 应用程序项目中,我使用 jsp 中的 @Page 导入来加载 URI 定义。
<%@page import="org.springframework.social.quickstart.config.Uris"%>
Uris.java 文件仅包含公共静态最终字符串。但是,当我修改它然后执行 mvn tomcat:run 或 mvnDebug tomcat:run 时,Web 应用程序不会考虑修改后的 Uris。
发现我通过克隆另一个项目开始了这个项目,并保留了相同的包名。
在 mvn tomcat:run 之前执行 mvn clean install 可以解决问题。
可能是由于我对jsp技术以及它如何与tomcat交互缺乏了解。如果您有更准确的解释和最佳实践指南,欢迎发表评论。