在Java代码中使用Hybris执行Groovy脚本的可能性(无hAC)

9bfwbjaz  于 2022-11-01  发布在  Java
关注(0)|答案(2)|浏览(181)

我想知道是否有一种方法可以用Hybris执行groovy脚本。我知道如何用Hybris管理控制台(hAC)执行groovy脚本,但我需要一种解决方案来从java代码执行这样的脚本。最好使用修补框架的@SystemSetup,但不是必需的。(https://help.sap.com/docs/SAP_COMMERCE/d0224eca81e249cb821f2cdf45a82ace/5db22427a1d541669bc4d12793a7b672.html?locale=en-US
我正在寻找一种类似于Impex导入的方法(例如,从核心扩展):

@SystemSetup(extension = SampleCoreConstants.EXTENSIONNAME)
public class CoreSystemSetup extends AbstractSystemSetup {

public static final String IMPORT_ACCESS_RIGHTS = "accessRights";

@SystemSetup(type = Type.ESSENTIAL, process = Process.ALL)
public void createEssentialData(final SystemSetupContext context)
{
    importImpexFile(context, "/samplecore/import/common/file-name.impex");
}

@Override
@SystemSetupParameterMethod
public List<SystemSetupParameter> getInitializationOptions()
{
    final List<SystemSetupParameter> params = new ArrayList<>();

    params.add(createBooleanSystemSetupParameter(IMPORT_ACCESS_RIGHTS, "Import Users & Groups", true));

    return params;
}

这里与SQL相同:https://www.stackextend.com/hybris/run-native-sql-query-hybris/
因此,任何人谁可以帮助我解决(或一个明确的答案,如果这是可能的或不)是受欢迎的。
谢谢你!

92dk7w1h

92dk7w1h1#

可以在代码中运行groovy,甚至在SystemSetup中也可以。
您可以使用processing扩展中提供的hybris服务(spring bean)de.hybris.platform.scripting.engine.ScriptingLanguagesService
在代码中,这可能类似于

final ClassPathResource resource = new ClassPathResource("location.groovy");
final ResourceScriptContent content = new ResourceScriptContent(resource);

ScriptExecutable groovyScript = scriptingLanguagesService.getExecutableByContent(content);

ScriptExecutionResult result = groovyScript.execute();

这将在类路径中的给定位置执行一个脚本。如果类路径中的文件中没有groovy,则可以使用其他Content类型。例如:简单脚本内容

twh00eeo

twh00eeo2#

有许多要执行的groovy脚本。

第一种方式:

import org.springframework.core.io.Resource;
import org.springframework.core.io.FileSystemResource;

final Resource resource = new FileSystemResource("/Users/zeus/scripts/setMimesForMedias.groovy");

// Let's assume we have scriptingLanguagesService injected by the Spring
final ScriptContent scriptContent = new ResourceScriptContent(resource);
final ScriptExecutable executable = scriptingLanguagesService.getExecutableByContent(scriptContent);

// now we can execute script
final ScriptExecutionResult result = executable.execute();

// to obtain result of execution 
System.out.println(result.getScriptResult());

**WAY 2:**我们可以用下面简单的方法来实现。

下面是示例代码:

import groovy.lang.Binding;
import groovy.lang.GroovyShell;

GroovyShell groovy = new GroovyShell(new Binding());
groovy.setVariable("text","Hello World!"); // you can variables here as many you needed
groovy.evaluate("println text"); // you can pass file as well instead of text

**方法3:**如果您想要OOB类,ScriptingJobPerformable是您可以从中引用的OOB类。

final ScriptExecutable executable = scriptingLanguagesService.getExecutableByURI(dynamicScriptingJob.getScriptURI());

    LOG.info("### Starting executing script : " + dynamicScriptingJob.getScriptURI() + " ###");
    final Map<String, Object> params = ImmutableMap.<String, Object>builder()//
                                                                             .put("cronjob", cronJob) //
                                                                             .put("log", LOG) //
                                                                             .build();
    final ScriptExecutionResult result = executable.execute(params);

详细说明请参阅Scripting Engine

相关问题