在我的应用程序中集成FF4j
时,我遇到了很多问题。最后在recommendation之后集成了它。
推荐的简短描述是:
删除百里香叶的自动配置;
添加ff4j-web使用的旧百里香叶2.1.4.RELEASE版本
编写类似FF4JWebConfiguration的配置类:
@Configuration
@ConditionalOnClass({ConsoleServlet.class, FF4jDispatcherServlet.class})
@AutoConfigureAfter(FF4JConfiguration.class)
public class FF4JWebConfiguration extends SpringBootServletInitializer {
@Bean
public ServletRegistrationBean servletRegistrationBean(ConsoleServlet ff4jConsoleServlet) {
return new ServletRegistrationBean(ff4jConsoleServlet, "/ff4j-console");
}
@Bean
@ConditionalOnMissingBean
public ConsoleServlet getFF4jServlet(FF4j ff4j) {
ConsoleServlet ff4jConsoleServlet = new ConsoleServlet();
ff4jConsoleServlet.setFf4j(ff4j);
return ff4jConsoleServlet;
}
@Bean
public ServletRegistrationBean ff4jDispatcherServletRegistrationBean(FF4jDispatcherServlet ff4jDispatcherServlet) {
return new ServletRegistrationBean(ff4jDispatcherServlet, "/ff4j-web-console/*");
}
@Bean
@ConditionalOnMissingBean
public FF4jDispatcherServlet getFF4jDispatcherServlet(FF4j ff4j) {
FF4jDispatcherServlet ff4jConsoleServlet = new FF4jDispatcherServlet();
ff4jConsoleServlet.setFf4j(ff4j);
return ff4jConsoleServlet;
}
}
建议中遗漏的细节是行家排除:
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>2.1.4.RELEASE</version>
<exclusions>
<exclusion>
<artifactId>javassist</artifactId>
<groupId>org.javassist</groupId>
</exclusion>
</exclusions>
</dependency>
但这是行不通的
Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled.
14:11:33.605 ERROR o.s.b.SpringApplication - Application run failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaConfiguration.class]: Invocation of init method failed; nested exception is org.hibernate.boot.archive.spi.ArchiveException: Could not build ClassFile
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1745)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:576)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:498)
at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:320)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:222)
直到我添加了一些Maven排除技巧
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
<version>2.1.4.RELEASE</version>
<exclusions>
<exclusion>
<artifactId>javassist</artifactId>
<groupId>org.javassist</groupId>
</exclusion>
</exclusions>
</dependency>
由于未在ui上加载某些数据,我的应用程序成功以损坏的视图启动:
13:38:14.785 INFO o.f.w.FF4jServlet - __ __ _ _ _
13:38:14.785 INFO o.f.w.FF4jServlet - / _|/ _| || | (_)
13:38:14.785 INFO o.f.w.FF4jServlet - | |_| |_| || |_| |
13:38:14.785 INFO o.f.w.FF4jServlet - | _| _|__ _| |
13:38:14.785 INFO o.f.w.FF4jServlet - |_| |_| |_|_/ |
13:38:14.786 INFO o.f.w.FF4jServlet - |__/ v1.8
13:38:14.786 INFO o.f.w.FF4jServlet -
13:38:14.832 INFO o.f.w.FF4jServlet - Thymeleaf has been initialized
13:38:14.887 INFO o.t.TemplateEngine - [THYMELEAF] INITIALIZING TEMPLATE ENGINE
13:38:14.971 INFO o.t.t.AbstractTemplateResolver - [THYMELEAF] INITIALIZING TEMPLATE RESOLVER: org.thymeleaf.templateresolver.ClassLoaderTemplateResolver
13:38:14.972 INFO o.t.t.AbstractTemplateResolver - [THYMELEAF] TEMPLATE RESOLVER INITIALIZED OK
13:38:14.980 INFO o.t.T.CONFIG - [THYMELEAF] TEMPLATE ENGINE CONFIGURATION:
[THYMELEAF] * Cache Factory implementation: org.thymeleaf.cache.StandardCacheManager
[THYMELEAF] * Template modes:
[THYMELEAF] * VALIDXML
[THYMELEAF] * XHTML
[THYMELEAF] * LEGACYHTML5
[THYMELEAF] * XML
[THYMELEAF] * VALIDXHTML
[THYMELEAF] * HTML5
[THYMELEAF] * Template resolvers (in order):
[THYMELEAF] * org.thymeleaf.templateresolver.ClassLoaderTemplateResolver
[THYMELEAF] * Message resolvers (in order):
[THYMELEAF] * [0] customMessageResolver
[THYMELEAF] * Dialect: org.thymeleaf.standard.StandardDialect
[THYMELEAF] * Prefix: "th"
[THYMELEAF] TEMPLATE ENGINE CONFIGURED OK
13:38:14.981 INFO o.t.TemplateEngine - [THYMELEAF] TEMPLATE ENGINE INITIALIZED
13:38:15.648 INFO o.a.c.c.C.[.[.[/] - Initializing Spring DispatcherServlet 'dispatcherServlet'
13:38:15.649 INFO o.s.w.s.DispatcherServlet - Initializing Servlet 'dispatcherServlet'
13:38:15.713 INFO o.s.w.s.DispatcherServlet - Completed initialization in 64 ms
13:38:15.746 WARN o.s.w.s.PageNotFound - No mapping for GET /static/css/font-awesome-3.2.1.css
13:38:15.747 WARN o.s.w.s.PageNotFound - No mapping for GET /static/css/bootstrap.min.css
13:38:15.747 WARN o.s.w.s.PageNotFound - No mapping for GET /static/js/jquery/jquery-1.9.1.js
13:38:15.749 WARN o.s.w.s.PageNotFound - No mapping for GET /static/css/dashboard.css
13:38:15.749 WARN o.s.w.s.PageNotFound - No mapping for GET /static/css/style.css
13:38:15.750 WARN o.s.w.s.PageNotFound - No mapping for GET /static/css/bootstrap-responsive.min.css
13:38:15.972 WARN o.s.w.s.PageNotFound - No mapping for GET /static/js/base.js
13:38:15.973 WARN o.s.w.s.PageNotFound - No mapping for GET /static/js/bootstrap.js
13:38:15.981 WARN o.s.w.s.PageNotFound - No mapping for GET /static/img/ff4j.png
13:38:15.989 WARN o.s.w.s.PageNotFound - No mapping for GET /static/img/flags/flagEnglish.png
13:38:15.989 WARN o.s.w.s.PageNotFound - No mapping for GET /static/js/ff4j.js
13:38:16.016 WARN o.s.w.s.PageNotFound - No mapping for GET /static/img/flags/flagMexico.png
13:38:16.030 WARN o.s.w.s.PageNotFound - No mapping for GET /static/img/flags/flagFrance.png
13:38:16.031 WARN o.s.w.s.PageNotFound - No mapping for GET /static/img/flags/flagGermany.png
13:38:16.032 WARN o.s.w.s.PageNotFound - No mapping for GET /static/img/flags/flagJapanese.png
...
可以用
registry.addResourceHandler("/static/**")
.addResourceLocations("classpath:/static/");
但是ff4j servlet在我的应用程序中无法正常工作:
WARN o.s.w.s.PageNotFound - No mapping for GET /features
题
我检测到
FF4jServlet
初始化并注册了所有必需的控制器,但是我不清楚为什么它不起作用...有什么想法要解决吗?
一些项目详细信息:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.2.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<ff4j.version>1.8.0</ff4j.version>
最佳答案
你试过看看吗
https://github.com/ff4j/ff4j-spring-boot-starter-parent/tree/master/ff4j-spring-boot-sample?
有两个控制台。您想访问哪一个?