简体   繁体   English

Spring Boot + MongoDB-本地主机显示白色标签错误

[英]Spring boot + MongoDB - localhost show whitelabel error

So I know there's other questions like this one however I see no solution to my problem. 因此,我知道还有其他类似问题,但是我看不到任何解决方案。

Hopefully one of you can see what I am doing wrong. 希望你们中的一员能看到我做错了。

When I go to localhost//:8080 I get "whitelabel error...." 当我进入localhost // :: 8080时,出现“ whitelabel error ....”

My pom.xml looks like this: 我的pom.xml看起来像这样:

<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.mycompany</groupId>
    <artifactId>mavenproject1</artifactId>
    <version>1.0-SNAPSHOT</version>  
    <packaging>war</packaging>

    <name>mavenproject1</name>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.5.6.RELEASE</version>
    </parent>

    <properties>
        <endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <dependencies>
        <dependency>
            <groupId>javax</groupId>
            <artifactId>javaee-web-api</artifactId>
            <version>7.0</version>
            <scope>provided</scope>
        </dependency>
        <!--Spring--> 
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <version>4.3.10.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>4.3.10.RELEASE</version>
        </dependency>
        <!--MONGO-->
        <dependency>
            <groupId>org.mongodb</groupId>
            <artifactId>mongo-java-driver</artifactId>
            <version>2.11.0</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-mongodb</artifactId>
            <version>1.10.6.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib</artifactId>
            <version>2.2.2</version>
        </dependency>
        <dependency>
            <groupId>org.elasticsearch</groupId>
            <artifactId>elasticsearch</artifactId>
            <version>2.4.0</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>          
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.0</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.9</version>
                <configuration>
                    <downloadSources>true</downloadSources>
                    <downloadJavadocs>true</downloadJavadocs>
                </configuration>
            </plugin>
            <!--skal dette bruges?-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1.1</version>
                <configuration>
                    <failOnMissingWebXml>false</failOnMissingWebXml>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.1</version>
                <executions>
                    <execution>
                        <phase>validate</phase>
                        <goals>
                            <goal>copy</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${endorsed.dir}</outputDirectory>
                            <silent>true</silent>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>javax</groupId>
                                    <artifactId>javaee-endorsed-api</artifactId>
                                    <version>6.0</version>
                                    <type>jar</type>
                                </artifactItem>
                            </artifactItems>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

and my application class looks like so: 我的应用程序类如下所示:

package com.example.mavenproject1;

import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;

/**
 *
 * @author Steffen
 */
@RestController
@EnableAutoConfiguration
@ComponentScan
public class Application {

    //Run a function here which dives into the mongoDB and returns the info?
    @RequestMapping("/")
    String home() {

        DBPopulator dbp = new DBPopulator();

        dbp.saveNew();


//        return dbp.getFil();

        return "Hey wassup";
    }

    public static void main(String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

And the DBPopulator: 和DBPopulator:

package com.example.mavenproject1;

import java.util.Date;
import java.util.List;

import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.data.mongodb.core.MongoOperations;
import org.springframework.data.mongodb.core.query.Criteria;
import org.springframework.data.mongodb.core.query.Query;
import org.springframework.data.mongodb.core.query.Update;


import org.springframework.context.support.GenericXmlApplicationContext;


/**
 *
 * @author Steffen
 */
public class DBPopulator {

    ApplicationContext ctx = new AnnotationConfigApplicationContext(ConnectToDB.class);
    MongoOperations mongoOperation = (MongoOperations) ctx.getBean("mongoTemplate");

    private int vers = 0;

    public void saveNew() {
        Fil f = new Fil("fil" + vers + "", new MetaData(new Date(), new Date(), 5));
        vers++;
        mongoOperation.save(f);
    };

    public String getFil(){
    // query to search user
        Query searchQuery = new Query(Criteria.where("filNavn").is("fil1"));

        Fil savedF = mongoOperation.findOne(searchQuery, Fil.class);

        List<Fil> listFiler = mongoOperation.findAll(Fil.class);



        System.out.println("Here is my file: " + savedF);

        return "File: " + savedF;
    } 
}

now my application "works" as in it saves new "Fil" to my mongoDB. 现在我的应用程序“正常运行”,将新的“ Fil”保存到我的mongoDB中。 I wanted to return them in the "Home" function in the Application class, but so far I can't get anything but "whitelabel error" out... 我想在Application类的“ Home”函数中返回它们,但是到目前为止,除了“ whitelabel error”之外,我什么都没有得到……

Thanks in advance! 提前致谢!

**Edit **编辑

File Structure is as follows. 文件结构如下。 在此处输入图片说明

and the full error from the localhost//:8080 is: 并且来自localhost //:8080的完整错误是:

Whitelabel Error Page 白标错误页面

This application has no explicit mapping for /error, so you are seeing this as a fallback. 此应用程序没有针对/ error的显式映射,因此您将其视为后备。 Mon Aug 07 16:39:18 CEST 2017 There was an unexpected error (type=Internal Server Error, status=500). CEST 2017 Mon Aug 07 16:39:18 CEST发生意外错误(类型=内部服务器错误,状态= 500)。 com/mongodb/BulkWriteException com / mongodb / BulkWriteException

Looks like it is looking for BulkWriteException which is available from 2.12 mongo driver version. 看起来它正在寻找BulkWriteException ,可从2.12 mongo驱动程序版本获得。

Solution 1 解决方案1

At least upgrade to 至少升级到

<dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongo-java-driver</artifactId>
        <version>2.12.0</version>
</dependency>

Solution 2 (better) 解决方案2(更好)

Remove 去掉

<dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongo-java-driver</artifactId>
        <version>2.11.0</version>
</dependency>

and keep 并保持

 <dependency>
     <groupId>org.springframework.data</groupId>
     <artifactId>spring-data-mongodb</artifactId>
     <version>1.10.6.RELEASE</version>
</dependency>

pulls in the correct dependency which is 2.4.x mongo driver. 引入正确的依赖关系,即2.4.x mongo驱动程序。

Solution 3 (best) 解决方案3(最佳)

Remove 去掉

<dependency>
        <groupId>org.mongodb</groupId>
        <artifactId>mongo-java-driver</artifactId>
        <version>2.11.0</version>
</dependency>

and

 <dependency>
     <groupId>org.springframework.data</groupId>
     <artifactId>spring-data-mongodb</artifactId>
     <version>1.10.6.RELEASE</version>
</dependency>

add

<dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>

pulls both the compatible spring mongo and mongo dependency which is 2.4.x mongo driver. 同时拉出兼容的spring mongo和mongo依赖关系,后者是2.4.x mongo驱动程序。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM