- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Java 8、Spring Boot 和 Hibernate Search,看起来应用程序启动在 Lucene 索引初始化时停止。尝试使用以前使用 SB 2.2.7 构建的索引文件,但没有成功。还尝试删除 Lucene 制作的所有文件并重新开始,但没有成功。尽管我将所有内容都放在了跟踪日志级别,但日志中没有任何内容可以帮助找出正在发生的事情。
请查看 pom.xml 和下面的最后几行日志。如果需要,我可以提供完整的跟踪日志。
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>4.0.0</modelVersion>
<groupId>com.thevegcat</groupId>
<artifactId>TheVegCat</artifactId>
<version>0.4.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>The Vegan Catalog</name>
<description>The Best World Vegan Catalog by H.Lo</description>
<developers>
<developer>
<id>HLo</id>
<name>Hrvoje Lončar</name>
<email>horvoje@gmail.com</email>
</developer>
</developers>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.0.RELEASE</version>
<relativePath />
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<hibernate.version>5.4.16.Final</hibernate.version>
<groovy-all.version>3.0.4</groovy-all.version>
<junit-jupiter.version>5.6.2</junit-jupiter.version>
<tika-core.version>1.24.1</tika-core.version>
<jsoup.version>1.13.1</jsoup.version>
<hibernate-search-orm.version>5.11.5.Final</hibernate-search-orm.version>
<opencsv.version>5.2</opencsv.version>
<org.eclipse.jdt.annotation.version>2.2.400</org.eclipse.jdt.annotation.version>
<jacoco.version>0.8.5</jacoco.version>
<junit-platform-surefire-provider.version>1.3.2</junit-platform-surefire-provider.version>
<commons-io.version>2.6</commons-io.version>
<urlrewritefilter.version>4.0.4</urlrewritefilter.version>
<json-simple.version>1.1.1</json-simple.version>
</properties>
<dependencies>
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy-all.version}</version>
<type>pom</type>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search-orm</artifactId>
<version>${hibernate-search-orm.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>org.apache.tika</groupId>
<artifactId>tika-core</artifactId>
<version>${tika-core.version}</version>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.tuckey</groupId>
<artifactId>urlrewritefilter</artifactId>
<version>${urlrewritefilter.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jdt</groupId>
<artifactId>org.eclipse.jdt.annotation</artifactId>
<version>${org.eclipse.jdt.annotation.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>${opencsv.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>${json-simple.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>${junit-platform-surefire-provider.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<dataFile>target/jacoco.exec</dataFile>
<outputDirectory>target/jacoco-ut</outputDirectory>
</configuration>
</execution>
</executions>
<configuration>
<systemPropertyVariables>
<jacoco-agent.destfile>target/jacoco.exec</jacoco-agent.destfile>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</project>
日志的最后几行:
DEBUG org.hibernate.type.EnumType Using NAMED-based conversion for Enum com.thevegcat.app.config.UserRole
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [veg_user]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [veg_user] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [id]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [id] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [date_created]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [date_created] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [date_last_update]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [date_last_update] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [failed_login_attempts]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [failed_login_attempts] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [name]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [name] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [note]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [note] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [password]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [password] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [phone]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [phone] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [status]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [status] in lower case for use in DatabaseMetaData
DEBUG org.hibernate.type.EnumType Using NAMED-based conversion for Enum com.thevegcat.app.user.User$Status
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [time_zone_id]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [time_zone_id] in lower case for use in DatabaseMetaData
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Normalizing identifier quoting for object name [username]
TRACE org.hibernate.engine.jdbc.env.internal.NormalizingIdentifierHelperImpl Rendering unquoted identifier [username] in lower case for use in DatabaseMetaData
TRACE org.hibernate.service.internal.AbstractServiceRegistryImpl Initializing service [role=org.hibernate.engine.transaction.jta.platform.spi.JtaPlatform]
INFO org.hibernate.engine.transaction.jta.platform.internal.JtaPlatformInitiator HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
DEBUG org.hibernate.query.spi.NamedQueryRepository Checking 0 named HQL queries
DEBUG org.hibernate.query.spi.NamedQueryRepository Checking 0 named SQL queries
TRACE org.hibernate.search.util.configuration.impl.MaskedProperty found a match for key: [hibernate.search.default.directory_provider] value: filesystem
TRACE org.hibernate.search.util.configuration.impl.MaskedProperty found a match for key: [default.directory_provider] value: filesystem
TRACE org.hibernate.search.util.configuration.impl.MaskedProperty found a match for key: [hibernate.search.default.indexBase] value: F:/storage/lucene
TRACE org.hibernate.search.util.configuration.impl.MaskedProperty found a match for key: [default.indexBase] value: F:/storage/lucene
INFO org.hibernate.search.store.impl.DirectoryProviderHelper HSEARCH000041: Index directory not found, creating: 'F:\storage\lucene\com.thevegcat.app.manufacturer.Manufacturer'
DEBUG org.hibernate.search.store.impl.DirectoryProviderHelper Initialize index: 'F:\storage\lucene\com.thevegcat.app.manufacturer.Manufacturer'
DEBUG org.hibernate.search.backend.impl.lucene.WorkspaceFactory Starting workspace for index com.thevegcat.app.manufacturer.Manufacturer using an exclusive index strategy
DEBUG org.hibernate.search.backend.impl.lucene.SyncWorkProcessor HSEARCH000230: Starting sync consumer thread for index 'com.thevegcat.app.manufacturer.Manufacturer'
DEBUG org.hibernate.search.backend.impl.lucene.WorkspaceHolder HSEARCH000235: Backend for index 'com.thevegcat.app.manufacturer.Manufacturer' started: using a Synchronous batching backend.
WARN org.hibernate.search.indexes.impl.LuceneEmbeddedIndexFamilyImpl HSEARCH000075: Configuration setting hibernate.search.lucene_version was not specified: using LUCENE_CURRENT.
DEBUG org.hibernate.annotations.common.util.StandardClassLoaderDelegateImpl Unable to locate Class [com.thevegcat.app.manufacturer.package-info] using TCCL, falling back to HCANN ClassLoader
DEBUG org.hibernate.search.engine.metadata.impl.AnnotationMetadataProvider package-info not found for package 'com.thevegcat.app.manufacturer'
最佳答案
从 Spring Boot 2.3.0 开始,the default BootstrapMode
for JPA repositories is now "deferred"以缩短启动时间。
不幸的是,我们发现这会对 Hibernate Search 产生副作用;有一个opened issue against Spring Framework that looks very similar to your project .欢迎订阅此问题以获取更多更新。
与此同时,您可以使用以下配置属性恢复到以前的默认设置:
spring.data.jpa.repositories.bootstrap-mode=default
很抱歉您遇到了这个问题 - 让我们希望您的其余升级体验完美无缺!
关于java - 从 SB 2.2.7 升级到 SB 2.3.0 后 Spring Boot 应用程序不会启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61989725/
有人可以解释一下 spring-boot-parent 和 spring-boot-starter-parent 之间的区别吗,正如我在下面附加的 GIT HUB 代码链接之一中看到的,他们为 spr
我有与 jersey 框架集成的 Spring Boot 应用程序。 现在,当我尝试运行该应用程序时,它只是停留在 Spring 启动徽标上,之后没有任何 react 。 我也尝试添加 -X ,但徽标
我指的是 Spring Boot 关于 的文档自动配置 和 执行器 模块: 自动配置: Spring Boot AutoConfiguration attempts to automatically
我正在尝试将 apache log4j 集成到我的 Spring boot 应用程序中。这是我的 build.gradle 文件: build.gradle buildscript { rep
使用 Spring Boot Maven 插件的以下命令在生产中启动 Spring Boot 应用程序是否是一个好主意或实践? mvn spring-boot:run 最佳答案 不,这是个坏主意。 您
据我所知,spring boot 和 spring session 为我们提供了一站式自动配置,但是当我的应用程序使用 session redis 和应用程序缓存 redis 时,不是同一个 redi
我希望使用Spring Boot创建一个新的Web应用程序。不幸的是,我的服务器在技术堆栈方面相当有限。它安装了Java 5。 谁能告诉我spring boot是否可以在Java 1.5上运行以及什么
我有3个实体 CarWash(设置Wash) Wash(car_wash_id FK到CarWash) WashComment(wash_id FK到Wash) 有什么办法可以写这个查询 @Qu
我一直在关注this文章。 我正在尝试在Spring-boot应用程序中优雅地处理gRPC错误,的主要目标是能够在gRPC客户端中获取错误状态。 在上面的文章之后,我坚持为异常添加拦截器。如何在Spr
我有一个要使用的自定义log4j布局插件。在IntelliJ中运行或与./gradlew bootRun一起运行时,插件可以正常工作。不使用./gradlew bootJar构建启动jar。 启用-D
我想在给定范围 (5001-5100) 的随机端口上启动 Spring Cloud 应用程序(Spring Boot 1.5.14,Spring Cloud Edgware.SR4)。我知道我们可以使
任何人都可以向我展示或指出不使用 spring boot gradle 插件的 spring boot gradle 项目。 我正在寻找类似不使用 gradle 插件的 spring boot sta
我当时尝试包含上述依赖项之一,但找不到任何区别: spring boot starter web:我可以看到 Flux 和 Mono 类并制作一个响应式(Reactive)休息 Controller
我们一直在为我们的应用程序使用 Springboot 1.X。 现在准备开始一些新的应用程序,想知道我们是应该使用 SpringBoot2.0 还是坚持使用 SpringBoot 1.X? 对一种方式
我希望记录应用程序正在加载 application-profile.propeties 或 application.yml。怎么做。在哪种方法中,我可以听取它并检测它是成功加载还是失败。 最佳答案 您
当我在 pom.xml 中添加简单的 spring-boot-starter-data-jpa 依赖项时,在 pom.xml 文件中出现错误。如果我删除该依赖项,则不会再有错误。我不确定为什么会发生这
我希望记录应用程序正在加载 application-profile.propeties 或 application.yml。怎么做。在哪种方法中,我可以听取它并检测它是成功加载还是失败。 最佳答案 您
我在网上看了很多关于 spring-boot-devtools 的文章和问题,但仍然无法弄清楚为什么它对我不起作用。每次运行我的应用程序时,我都会得到以下信息: 17:54:28.057 [main]
我正在尝试将现有的 Spring 应用程序移植到 Spring Boot。我不使用 spring-boot-starter-data-solr 启动器,但是我的类路径上有 apache solrj (
(这主要是一个历史问题。Pivotal 建议所有论坛讨论都在 StackOverflow 上进行,这就是我在这里问它的原因。) Spring Boot 项目用来证明将应用程序的类和依赖项从可执行 ja
我是一名优秀的程序员,十分优秀!