如何在spring-boot应用程序中启用togglz-console

时间:2016-04-01 09:35:09

标签: spring-boot jersey togglz

我的spring-boot + jersey应用程序集成了togglz。我在下面添加了以下依赖项。

// togglz
compile('org.togglz:togglz-servlet:'+togglzVersion)
compile('org.togglz:togglz-cdi:'+togglzVersion)
compile('javax.enterprise:cdi-api:2.0-EDR1')
compile('org.togglz:togglz-spring-web:'+togglzVersion)
compile("org.togglz:togglz-spring-boot-starter:"+togglzVersion)
compile("org.togglz:togglz-console:"+togglzVersion)
compile("org.togglz:togglz-spring-security:"+togglzVersion)
compile("com.github.heneke.thymeleaf:thymeleaf-extras-togglz:1.0.1.RELEASE")

在我的启动课程中,我添加了以下代码:

@Bean
public FeatureProvider featureProvider() {
    return new EnumBasedFeatureProvider(AppFeatures.class);
}

启动应用程序后,我可以看到此链接中的json数据:http://localhost:8080/togglz。 但我无法访问http://localhost:8080/togglz-console。我收到“无法加载资源:服务器响应状态为403(禁止”错误。

我可以在下面看到登录我的日志文件但我无法访问togglz-console / *。

o.s.b.c.e.ServletRegistrationBean        : Mapping servlet: 'togglzConsoleServlet' to [/togglz-console/*]
下面的

是我的togglz属性文件:

# togglz
togglz:
    feature-enums: com.cooltoo.backend.features.AppFeatures # Comma-separated list of fully-qualified feature enum class names.
    features:
        SMS_CODE: false
    console:
        enabled: true # Enable admin console.
        path: /togglz-console # The path of the admin console when enabled.

我在这里想念的是什么?

2 个答案:

答案 0 :(得分:3)

Step1 添加以下依赖项:

   <!-- Togglz Admin Console -->
    <dependency>
       <groupId>org.togglz</groupId>
       <artifactId>togglz-console</artifactId>
       <version>2.3.0.RC1</version>
   </dependency>

Step2 在application.yml或application.properties中添加以下内容

togglz:
  console:
    enabled: true # Enable admin console.

togglz.console.enabled: true # Enable admin console.

Step3

配置控制台路径
togglz:
    console:
     path: /togglz-console # The path of the admin console when enabled.

对于身份验证:添加一个虚拟UserProvider,为每个用户分配管理员权限:

public class MyTogglzConfiguration implements TogglzConfig {
        @Override
        public UserProvider getUserProvider() {
            return new UserProvider() {
                @Override
                public FeatureUser getCurrentUser() {
                    return new SimpleFeatureUser("admin", true);
                }
            };
        }
    }

如果您要对用户进行身份验证,而不是上述虚拟用户,请按照此documentation

实施您自己的UserProvider

答案 1 :(得分:1)

请在您的application.yml或application.properties中添加以下内容:

togglz:
  console:
    enabled: true
    path: /togglz-console
    use-management-port: false

togglz.console.enabled: true
togglz.console.path: /togglz-console
togglz.console.use-management-port: false

将togglz.console.use-management-port设置为false会始终在应用程序端口上运行管理控制台。