我对春天的环境很陌生。我试图用SpringBoot开发一个基本的MVC应用程序,其中Hibernate作为ORM,MYSQL作为数据库。我遇到了很多问题--设置依赖项和配置。目前,我发现了下面的错误,我无法想出如何克服它。
org.springframework.beans.factory.BeanCreationException: Cannot determine embedded database driver class for database type NONE. If you want an embedded database please put a supported one
大家好,我在运行我的项目时遇到了一个问题
Caused by: java.lang.IllegalArgumentException: At least one JPA metamodel must be present!
我不知道如何修复它。我看到了一些相同的主题,他们在文件pom.xml中提到了这个问题。但我在我的文件pom.xml中看不到任何错误。有人能帮帮我吗这是我的代码文件pom.xml
<dependencies>
<dependency>
<groupId>org.springframework.boot</gro
我尝试在tomcat服务器中启动我的spring boot,但是当我向我的项目添加一些外部jars时:
appsert-rt.jar
gf-client.jar
javaee.jar
它给了我这个错误:
Exception in thread "main" java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implemen
我有一个使用JDBC运行的应用程序,并从MySQL获取数据,但是由于这个错误,我无法构建它:
java.sql.SQLException: Unknown system variable 'query_cache_size'
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:964) ~[mysql-connector-java-5.1.41.jar:5.1.41]
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3973) ~[mysq
当我试图在Tomcat上运行我的项目时,我会收到以下错误。它以前是工作的,但我将jackson版本从1.9.7提高到1.9.13,在更新maven依赖关系之后,我无法再运行该项目。我试着把杰克逊的评级降到1.9.7,但没有机会。
SEVERE: Exception starting filter txTrackFilter
java.lang.ClassCastException: org.springframework.web.filter.DelegatingFilterProxy cannot be cast to javax.servlet.Filter
at org.apache.c
我正在尝试升级到SpringBoot1.5.9,当它编译时,在运行时我得到了下面的异常。我试着转到下引,尝试更新Spring (Edgware,Brixton,等等)没有运气。我知道我的代码没有使用这个类(如果是这样的话,它不会编译)。我如何找到冒犯的依赖(如果是这样的)?我的pom.xml很大,有很多内部构件,所以发布这些东西是没有意义的。
java.lang.IllegalStateException: Could not evaluate condition on org.springframework.boot.actuate.autoconfigure.EndpointWebMvcA
我可以使用Maven的插件spring-boot:run运行Spring,但是当我尝试执行打包的jar时,它提供了:
Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.class]: Invocation of init method failed; nested exception is java.lang
我刚开始冬眠/JPA。运行应用程序时,我会得到以下错误:
Consider defining a bean named 'entityManagerFactory' in your configuration.
主类(我使用@EnableJpaRepositories让Spring在其他包中找到存储库):
@SpringBootApplication
@EnableJpaRepositories
public class RunApp {
public static void main(String[] args) {
SpringApplicatio
我正在尝试访问Spring框架中的MySQL数据库,但是我得到了以下错误。
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of constructor in org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration required a bean of type 'javax.sql.DataSource' t
我正在尝试学习Spring Data JPA,但我得到了以下异常: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in org.mql.gestionstages.config.PersistanceJPAConfig: Bean instantiation via factory method failed; nested exception is org.springframework