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.
我是 Liferay 的新手,我需要创建钩子来拦截文件并在保存到文件系统之前对其进行处理。是否可以使用钩子或我需要制作 ext?
我希望这能在一个钩子中工作。创建一个拦截的钩子DLFileEntryLocalService,例如addFileEntry。在该方法中完成您的工作,如果您想批准将其添加到数据库中,请调用super.addFileEntry(...)它将处理默认行为。
DLFileEntryLocalService
addFileEntry
super.addFileEntry(...)
您必须确定是否有更多方法可以将文档添加到库中。