在运行时更改弹簧外壳中的提示

发布于 2025-01-19 18:57:46 字数 106 浏览 0 评论 0原文

是否可以在弹簧壳应用程序中更改提示?对于默认情况下,似乎提示是:

shell:>

可以在运行时更改此文本吗?

谢谢

is it possible to change the prompt in a spring shell application? For default it seems that the prompt is:

shell:>

Is is possible to change this text at runtime?

THX

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

帅的被狗咬 2025-01-26 18:57:46

谢谢您的回答!我忽略了这个功能。我创建了这个类,将其放入我的配置包中,它对我很有用:

package de.myapp.spring.configuration;

@Configuration
@ComponentScan("de.myapp.spring.shell")
public class ShellApplicationConfiguration implements PromptProvider {

    @Override
    public final AttributedString getPrompt() {

        return new AttributedString("myapp:>");

    }

}

Thank you for the answer! I've overlooked this feature. I created this class, put it into my configuration-package and it works good for me:

package de.myapp.spring.configuration;

@Configuration
@ComponentScan("de.myapp.spring.shell")
public class ShellApplicationConfiguration implements PromptProvider {

    @Override
    public final AttributedString getPrompt() {

        return new AttributedString("myapp:>");

    }

}
诗化ㄋ丶相逢 2025-01-26 18:57:46

对我有用的:

import org.springframework.context.annotation.Configuration;
import org.springframework.shell.jline.PromptProvider;
import org.jline.utils.AttributedString;

@Configuration
public class SpringShellConfiguration implements PromptProvider {
    @Override
    public final AttributedString getPrompt() {
        return new AttributedString("myapp:> ");
    }

}

参考:
https://docs。 spring.io/spring-shell/docs/current/api/org/springframework/shell/jline/PromptProvider.html

What worked for me:

import org.springframework.context.annotation.Configuration;
import org.springframework.shell.jline.PromptProvider;
import org.jline.utils.AttributedString;

@Configuration
public class SpringShellConfiguration implements PromptProvider {
    @Override
    public final AttributedString getPrompt() {
        return new AttributedString("myapp:> ");
    }

}

Reference:
https://docs.spring.io/spring-shell/docs/current/api/org/springframework/shell/jline/PromptProvider.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文