gpt4 book ai didi

java - Java 中的方法在 Eclipse 中显示错误,使用 Maven 构建正常

转载 作者:太空宇宙 更新时间:2023-11-04 06:26:41 25 4
gpt4 key购买 nike

我无法在 Eclipse 中消除此错误。该项目使用的是 Java 8,Eclipse 也是如此,所以我处于停滞状态,为什么我会收到下面这个错误。

The method setTomcatContextCustomizers(Collection<? extends TomcatContextCustomizer>) in the type TomcatEmbeddedServletContainerFactory is not applicable for the arguments (List<Object>)

tomcatFactory.setTomcatContextCustomizers(Arrays.asList(context -> {
JDBCStore store = new JDBCStore();
store.setDriverName(tomcatConfig.getStoreDriverName());
store.setConnectionURL(jdbcUrl);
store.setConnectionName(jdbcUser);
store.setConnectionPassword(jdbcPassword);
store.setSessionAppCol(tomcatConfig.getStoreSessionAppCol());
store.setSessionDataCol(tomcatConfig.getStoreSessionDataCol());
store.setSessionIdCol(tomcatConfig.getStoreSessionIdCol());
store.setSessionLastAccessedCol(tomcatConfig.getStoreSessionLastAccessedCol());
store.setSessionMaxInactiveCol(tomcatConfig.getStoreSessionMaxInactiveCol());
store.setSessionTable(tomcatConfig.getStoreSessionTable());
store.setSessionValidCol(tomcatConfig.getStoreSessionValidCol());
PersistentManager pm = new PersistentManager();
pm.setDistributable(true);
pm.setProcessExpiresFrequency(tomcatConfig.getPersistenceManagerProcessExpiresFrequency());
pm.setMaxIdleBackup(tomcatConfig.getPersistenceManagerMaxIdleBackup());
pm.setStore(store);
context.setManager(pm);
}));

最佳答案

您是否尝试过通过转到“项目”->“清理”来清理 Eclipse 工作区,然后通过"file"->“刷新”来刷新它?

当我遇到相同的行为并在 Eclipse 中显示错误但在使用 Maven 构建时却不起作用时,这通常对我有用。

关于java - Java 中的方法在 Eclipse 中显示错误,使用 Maven 构建正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26700929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com