Requires a bean named 'entityManagerFactory' after using `CrudRepository?












0















I don't know why but as I use CrudRepository in my Spring Boot Application:



public interface UserGroupRepository extends CrudRepository<UserGroupModel, Long> {
}


I'm getting this at the startup:



***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of constructor in
springfox.documentation.spring.web.plugins.WebMvcRequestHandlerProvider
required a bean named 'entityManagerFactory' that could not be found.


Action:

Consider defining a bean named 'entityManagerFactory' in your configuration.


I have no idea what SpringFox has to do with this but as I comment out // extends CrudRepository .. things start working again.



Is Swagger interfering here with Spring Data?



See the full auto configuration report.
See the full trace.





The pom.xml I am using:



<?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>

<parent>
<artifactId>server</artifactId>
<groupId>mahlzeit</groupId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>api</artifactId>

<properties>
<spring.boot.version>2.0.0.M5</spring.boot.version>
<hibernate.core.version>5.2.12.Final</hibernate.core.version>
</properties>

<!-- Dependency Management -->

<dependencyManagement>

<dependencies>

<!-- Import dependency management from Spring Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>

</dependencyManagement>

<!-- Dependencies -->

<dependencies>

<!-- Spring Framework Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</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-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>

<!-- Spring Framework -->

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
<version>1.0.8.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>2.2.0.RELEASE</version>
</dependency>

<!-- PostgreSQL Driver -->

<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1208-jdbc42-atlassian-hosted</version>
</dependency>

<!-- Swagger -->

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.7.0</version>
</dependency>

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.7.0</version>
</dependency>

<!-- Misc. -->

<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>

<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.9.2</version>
</dependency>


</dependencies>

<!-- Build -->

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- Maven Repositories -->

<repositories>
<!-- Required since this is currently using Spring RC version -->
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

</project>









share|improve this question

























  • do youe have Swagger enabled in your project?

    – pvpkiran
    Nov 16 '17 at 18:10











  • @pvpkiran Yes, indeed.

    – displayname
    Nov 16 '17 at 18:11











  • which version? and what is your spring-boot version?

    – pvpkiran
    Nov 16 '17 at 18:14











  • @pvpkiran I'm using 2.0.0.M5 for Spring and 2.7.0 for SpringFox - I think those are the most recent ones.

    – displayname
    Nov 16 '17 at 18:16











  • yes. those are the latest ones. But the error is really wierd considering WebMvcRequestHandlerProvider doesn't take entityManagerFactory as constructor.

    – pvpkiran
    Nov 16 '17 at 18:20
















0















I don't know why but as I use CrudRepository in my Spring Boot Application:



public interface UserGroupRepository extends CrudRepository<UserGroupModel, Long> {
}


I'm getting this at the startup:



***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of constructor in
springfox.documentation.spring.web.plugins.WebMvcRequestHandlerProvider
required a bean named 'entityManagerFactory' that could not be found.


Action:

Consider defining a bean named 'entityManagerFactory' in your configuration.


I have no idea what SpringFox has to do with this but as I comment out // extends CrudRepository .. things start working again.



Is Swagger interfering here with Spring Data?



See the full auto configuration report.
See the full trace.





The pom.xml I am using:



<?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>

<parent>
<artifactId>server</artifactId>
<groupId>mahlzeit</groupId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>api</artifactId>

<properties>
<spring.boot.version>2.0.0.M5</spring.boot.version>
<hibernate.core.version>5.2.12.Final</hibernate.core.version>
</properties>

<!-- Dependency Management -->

<dependencyManagement>

<dependencies>

<!-- Import dependency management from Spring Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>

</dependencyManagement>

<!-- Dependencies -->

<dependencies>

<!-- Spring Framework Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</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-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>

<!-- Spring Framework -->

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
<version>1.0.8.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>2.2.0.RELEASE</version>
</dependency>

<!-- PostgreSQL Driver -->

<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1208-jdbc42-atlassian-hosted</version>
</dependency>

<!-- Swagger -->

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.7.0</version>
</dependency>

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.7.0</version>
</dependency>

<!-- Misc. -->

<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>

<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.9.2</version>
</dependency>


</dependencies>

<!-- Build -->

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- Maven Repositories -->

<repositories>
<!-- Required since this is currently using Spring RC version -->
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

</project>









share|improve this question

























  • do youe have Swagger enabled in your project?

    – pvpkiran
    Nov 16 '17 at 18:10











  • @pvpkiran Yes, indeed.

    – displayname
    Nov 16 '17 at 18:11











  • which version? and what is your spring-boot version?

    – pvpkiran
    Nov 16 '17 at 18:14











  • @pvpkiran I'm using 2.0.0.M5 for Spring and 2.7.0 for SpringFox - I think those are the most recent ones.

    – displayname
    Nov 16 '17 at 18:16











  • yes. those are the latest ones. But the error is really wierd considering WebMvcRequestHandlerProvider doesn't take entityManagerFactory as constructor.

    – pvpkiran
    Nov 16 '17 at 18:20














0












0








0








I don't know why but as I use CrudRepository in my Spring Boot Application:



public interface UserGroupRepository extends CrudRepository<UserGroupModel, Long> {
}


I'm getting this at the startup:



***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of constructor in
springfox.documentation.spring.web.plugins.WebMvcRequestHandlerProvider
required a bean named 'entityManagerFactory' that could not be found.


Action:

Consider defining a bean named 'entityManagerFactory' in your configuration.


I have no idea what SpringFox has to do with this but as I comment out // extends CrudRepository .. things start working again.



Is Swagger interfering here with Spring Data?



See the full auto configuration report.
See the full trace.





The pom.xml I am using:



<?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>

<parent>
<artifactId>server</artifactId>
<groupId>mahlzeit</groupId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>api</artifactId>

<properties>
<spring.boot.version>2.0.0.M5</spring.boot.version>
<hibernate.core.version>5.2.12.Final</hibernate.core.version>
</properties>

<!-- Dependency Management -->

<dependencyManagement>

<dependencies>

<!-- Import dependency management from Spring Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>

</dependencyManagement>

<!-- Dependencies -->

<dependencies>

<!-- Spring Framework Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</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-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>

<!-- Spring Framework -->

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
<version>1.0.8.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>2.2.0.RELEASE</version>
</dependency>

<!-- PostgreSQL Driver -->

<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1208-jdbc42-atlassian-hosted</version>
</dependency>

<!-- Swagger -->

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.7.0</version>
</dependency>

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.7.0</version>
</dependency>

<!-- Misc. -->

<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>

<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.9.2</version>
</dependency>


</dependencies>

<!-- Build -->

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- Maven Repositories -->

<repositories>
<!-- Required since this is currently using Spring RC version -->
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

</project>









share|improve this question
















I don't know why but as I use CrudRepository in my Spring Boot Application:



public interface UserGroupRepository extends CrudRepository<UserGroupModel, Long> {
}


I'm getting this at the startup:



***************************
APPLICATION FAILED TO START
***************************

Description:

Parameter 0 of constructor in
springfox.documentation.spring.web.plugins.WebMvcRequestHandlerProvider
required a bean named 'entityManagerFactory' that could not be found.


Action:

Consider defining a bean named 'entityManagerFactory' in your configuration.


I have no idea what SpringFox has to do with this but as I comment out // extends CrudRepository .. things start working again.



Is Swagger interfering here with Spring Data?



See the full auto configuration report.
See the full trace.





The pom.xml I am using:



<?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>

<parent>
<artifactId>server</artifactId>
<groupId>mahlzeit</groupId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>api</artifactId>

<properties>
<spring.boot.version>2.0.0.M5</spring.boot.version>
<hibernate.core.version>5.2.12.Final</hibernate.core.version>
</properties>

<!-- Dependency Management -->

<dependencyManagement>

<dependencies>

<!-- Import dependency management from Spring Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>

</dependencies>

</dependencyManagement>

<!-- Dependencies -->

<dependencies>

<!-- Spring Framework Boot -->

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</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-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>

<!-- Spring Framework -->

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-jwt</artifactId>
<version>1.0.8.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework.security.oauth</groupId>
<artifactId>spring-security-oauth2</artifactId>
<version>2.2.0.RELEASE</version>
</dependency>

<!-- PostgreSQL Driver -->

<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4.1208-jdbc42-atlassian-hosted</version>
</dependency>

<!-- Swagger -->

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.7.0</version>
</dependency>

<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.7.0</version>
</dependency>

<!-- Misc. -->

<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.4</version>
</dependency>

<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
<version>2.9.2</version>
</dependency>


</dependencies>

<!-- Build -->

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<!-- Maven Repositories -->

<repositories>
<!-- Required since this is currently using Spring RC version -->
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/libs-milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

</project>






spring spring-boot spring-data swagger






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '17 at 18:58







displayname

















asked Nov 16 '17 at 18:08









displaynamedisplayname

6,4841679165




6,4841679165













  • do youe have Swagger enabled in your project?

    – pvpkiran
    Nov 16 '17 at 18:10











  • @pvpkiran Yes, indeed.

    – displayname
    Nov 16 '17 at 18:11











  • which version? and what is your spring-boot version?

    – pvpkiran
    Nov 16 '17 at 18:14











  • @pvpkiran I'm using 2.0.0.M5 for Spring and 2.7.0 for SpringFox - I think those are the most recent ones.

    – displayname
    Nov 16 '17 at 18:16











  • yes. those are the latest ones. But the error is really wierd considering WebMvcRequestHandlerProvider doesn't take entityManagerFactory as constructor.

    – pvpkiran
    Nov 16 '17 at 18:20



















  • do youe have Swagger enabled in your project?

    – pvpkiran
    Nov 16 '17 at 18:10











  • @pvpkiran Yes, indeed.

    – displayname
    Nov 16 '17 at 18:11











  • which version? and what is your spring-boot version?

    – pvpkiran
    Nov 16 '17 at 18:14











  • @pvpkiran I'm using 2.0.0.M5 for Spring and 2.7.0 for SpringFox - I think those are the most recent ones.

    – displayname
    Nov 16 '17 at 18:16











  • yes. those are the latest ones. But the error is really wierd considering WebMvcRequestHandlerProvider doesn't take entityManagerFactory as constructor.

    – pvpkiran
    Nov 16 '17 at 18:20

















do youe have Swagger enabled in your project?

– pvpkiran
Nov 16 '17 at 18:10





do youe have Swagger enabled in your project?

– pvpkiran
Nov 16 '17 at 18:10













@pvpkiran Yes, indeed.

– displayname
Nov 16 '17 at 18:11





@pvpkiran Yes, indeed.

– displayname
Nov 16 '17 at 18:11













which version? and what is your spring-boot version?

– pvpkiran
Nov 16 '17 at 18:14





which version? and what is your spring-boot version?

– pvpkiran
Nov 16 '17 at 18:14













@pvpkiran I'm using 2.0.0.M5 for Spring and 2.7.0 for SpringFox - I think those are the most recent ones.

– displayname
Nov 16 '17 at 18:16





@pvpkiran I'm using 2.0.0.M5 for Spring and 2.7.0 for SpringFox - I think those are the most recent ones.

– displayname
Nov 16 '17 at 18:16













yes. those are the latest ones. But the error is really wierd considering WebMvcRequestHandlerProvider doesn't take entityManagerFactory as constructor.

– pvpkiran
Nov 16 '17 at 18:20





yes. those are the latest ones. But the error is really wierd considering WebMvcRequestHandlerProvider doesn't take entityManagerFactory as constructor.

– pvpkiran
Nov 16 '17 at 18:20












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f47336455%2frequires-a-bean-named-entitymanagerfactory-after-using-crudrepository%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f47336455%2frequires-a-bean-named-entitymanagerfactory-after-using-crudrepository%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python