gpt4 book ai didi

Java SpEL EL1043E : Unexpected token. 预期为 'rparen())' 但实际为 'comma(,)'

转载 作者:行者123 更新时间:2023-11-29 07:27:32 41 4
gpt4 key购买 nike

我尝试学习 SpEL,但我的一个脚本不起作用。我的脚本是:

changePages(#{T(StoryContent).pages}, (x, y) -> x.replaceAll(y, x.substring(0, 1) + '...' + x.substring(x.length() - 1, x.length())))

Java 代码:

     public void validate(Story story, List<StoryRule> rules) throws NoSuchMethodException, SecurityException {
StoryContent storyContent = storyContentRepository.findOne(story.getContentId());
story.setStatus(SchedulerStatus.VALIDATION);
storyRepository.save(story);
ExpressionParser parser = new SpelExpressionParser();
StandardEvaluationContext inventorContext = new StandardEvaluationContext(storyContent);
inventorContext.registerFunction("changePages", ValidationByRuleServiceImpl.class
.getDeclaredMethod("changePages", new Class[] { List.class, BiFunction.class }));
try {
rules.stream().map(StoryRule::getScript)
.forEach(script -> parser.parseExpression(script).getValue(inventorContext));
if (!storyContent.getTitle().equals(story.getName()))
story.setName(storyContent.getTitle());
story.setStatus(SchedulerStatus.PUBLISHED);
storyContentRepository.save(storyContent);
} catch (Exception e) {
LOG.error(e.getMessage());
story.setStatus(SchedulerStatus.ERROR);
} finally {
storyRepository.save(story);
}
}
private void changePages(List<String> pages, BiFunction<String, String, String> function) {
pages.forEach(System.out::println);
}

错误是:

Expression [changePages(T(StoryContent).pages, (x, y) -> x.replaceAll(y, x.substring(0, 1) + '...' + x.substring(x.length() - 1, x.length())))] @37: EL1043E: Unexpected token. Expected 'rparen())' but was 'comma(,)'

我从数据库中获取了 SpEL 脚本列表。

我不知道哪里出了问题,是我的脚本还是我的 java 代码?

最佳答案

SpEL 不是 Java,它是一种不同的语言;首字母缩写词代表 Spring Expression Language

它不理解 Java8 lambda,所以无法解析 (x, y) -> ...

但是,您可以将 lambda 注册为 SpEL 函数,请参阅 my answer here .

关于Java SpEL EL1043E : Unexpected token. 预期为 'rparen())' 但实际为 'comma(,)',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48840934/

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