Broadleaf 5.2.7-MySQL迁移

时间:2018-12-07 18:09:36

标签: java maven broadleaf-commerce

您好,我使用的是Broadleaf的最新版本(5.2.7)。使用HSQL,该项目可以正常运行。问题是我正在尝试迁移到mysql。我正在尝试按照教程herehere

问题是我无法在本教程的根pom.xml中找到依赖项

例如,本教程在步骤3中提到了

在您的根pom.xml中,在org.apache.tomcat.maven下的部分中找到以下内容

<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.3.1</version>
<type>jar</type>
<scope>compile</scope>

应该在哪里存在?我可能在这里有一个很大的误解,但我找不到。据我了解,这是我的根pom.xml(??),看起来像这样

<?xml version="1.0" encoding="UTF-8"?>

http://maven.apache.org/xsd/maven-4.0.0.xsd“>

<parent>
    <groupId>org.broadleafcommerce</groupId>
    <artifactId>broadleaf-boot-starter-parent</artifactId>
    <version>5.2.7-GA</version>
    <relativePath />
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany-community</groupId>
<artifactId>boot-community-demo</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Broadleaf Spring Boot Community Demo</name>

<repositories>
    <repository>
        <id>public snapshots</id>
        <name>public snapshots</name>
        <url>http://nexus.broadleafcommerce.org/nexus/content/groups/community-snapshots/</url>
    </repository>
    <repository>
        <id>public releases</id>
        <name>public releases</name>
        <url>http://nexus.broadleafcommerce.org/nexus/content/groups/community-releases/</url>
    </repository>
</repositories>

<properties>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
    <google-closure-compiler.version>v20180506</google-closure-compiler.version>

    <debug.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=${debug.port}</debug.args>
    <boot.jvm.memory>-Xmx1536M</boot.jvm.memory>
    <boot.jvm.args>${boot.jvm.memory} ${debug.args}</boot.jvm.args>

    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.uri>${project.baseUri}</project.uri>
</properties>

<build>
    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <jvmArguments>${boot.jvm.args}</jvmArguments>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
    <plugins>
        <plugin>
            <groupId>org.zeroturnaround</groupId>
            <artifactId>jrebel-maven-plugin</artifactId>
            <version>1.1.7</version>
            <executions>
                <execution>
                    <id>generate-rebel-xml</id>
                    <phase>process-resources</phase>
                    <goals>
                        <goal>generate</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

<profiles>
    <profile>
        <id>jrebel</id>
        <properties>
            <boot.jvm.args>${boot.jvm.memory} ${debug.args} ${jrebel.agent.args}</boot.jvm.args>
        </properties>
    </profile>
</profiles>

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>com.mycompany-community</groupId>
            <artifactId>boot-community-demo-core</artifactId>
            <version>${project.version}</version>
        </dependency>

        <dependency>
            <groupId>com.google.javascript</groupId>
            <artifactId>closure-compiler-unshaded</artifactId>
            <version>${google-closure-compiler.version}</version>
        </dependency>
    </dependencies>
</dependencyManagement>

<modules>
    <module>core</module>
    <module>site</module>
    <module>admin</module>
    <module>api</module>
</modules>

我缺少什么提示?

谢谢!

1 个答案:

答案 0 :(得分:0)

因此,我在Broadleaf的github上打开了一个问题,并找到了解决方案。这对将来有兴趣的人可能会有用:

https://github.com/BroadleafCommerce/DemoSite/issues/40

我建议不要按照教程迁移到mysql,因为它似乎已经过时了。遵循我在github链接中描述的更改。

第一次创建数据库可能需要15分钟以上的时间。为此做好准备,不要停止编译过程。第一次之后,您可以将“ blPU.hibernate.hbm2ddl.auto”从“创建”更改为“无”或“更新”。

最后,如果您尝试访问localhost:8081 / admin,则在更新后,您可能会收到此错误

2018-12-08 19:55:26.540 INFO 6616 --- [nio-8081-exec-3] o.apache.coyote.http11.Http11Processor : Error parsing HTTP request header

正如贡献者所知,没有已知的解决方案,因此您可以直接访问https链接:https://localhost:8444/admin