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.
我正在处理直接创建 struts 1 动作的旧大段代码,因为它在其中放置了逻辑。
我希望找到直接在代码中创建动作类的实例。例如,假设我有 MoveAction、UpAction、DownAction。我如何使用正则表达式找到这些类的实例,这些类的实例是在哪里创建的?我需要类似的东西
new *Action()
那将不匹配 new ActionMessages()
您可以在 Eclipse IDE 中选择 Action 的构造函数,然后按ctrl+h查找项目中的所有事件
ctrl+h
public Action()/*select the constructor in the class file */{ }
new .*Action(应该匹配 "new " 后面跟任何直到 "Action("
new .*Action(