java - Glassfish 上 Maven Web 应用程序的 Heroku Procfile 是什么?

标签 java maven netbeans heroku glassfish

我在 Netbeans 上编写了一个简单的 Maven Web 应用程序。我的项目在 Glassfish 服务器上的本地主机上运行良好。我试图将我的项目上传到 Heroku 但我无法实现。什么是适合我的 Procfile?

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>tutorialspoint_jsf_2</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>

<name>tutorialspoint_jsf_2</name>

<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>6.0</version>
        <scope>provided</scope>
    </dependency>
    <dependency>
        <groupId>com.sun.faces</groupId>
        <artifactId>jsf-api</artifactId>
        <version>2.1.7</version>
    </dependency>
    <dependency>
        <groupId>com.sun.faces</groupId>
        <artifactId>jsf-impl</artifactId>
        <version>2.1.7</version>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>2.3.2</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <compilerArguments>
                    <endorseddirs>${endorsed.dir}</endorseddirs>
                </compilerArguments>
            </configuration>
        </plugin>
        <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>

我试过这个但是它不起作用:

web:    java -cp target/dependency/*:target/classes com.mycompany.tutorialspoint_jsf_2.jsfYonetimliNesne

对不起我的英语

最佳答案

如果您希望您的应用程序在 Glassfish(在 Heroku 上)上运行,则必须使用嵌入式 Glassfish。你知道吗?

<dependency>
   <groupId>org.glassfish.extras</groupId>
   <artifactId>glassfish-embedded-all</artifactId>
   <version>3.1.1</version>
</dependency>

作为 procfile,您可以使用例如:

web:    java $JAVA_OPTS -cp target/classes:target/dependency/* com.example.Main

在你的 main 中,你像这样开始你的 Glassfish :

String port = System.getenv("PORT");
GlassFishProperties gfProps = new GlassFishProperties();
gfProps.setPort("http-listener", Integer.parseInt(port));
GlassFish glassfish = GlassFishRuntime.bootstrap().newGlassFish(gfProps);
glassfish.start();          
Deployer deployer = glassfish.getDeployer();            
File file = new File("YourSimpleMavenWebapplication.war");      
deployer.deploy(file);

关于java - Glassfish 上 Maven Web 应用程序的 Heroku Procfile 是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16703397/

相关文章:

java - 检查 csv 文件中日期的格式

java - 当java数组越界时抛出错误

java - 如何在 Maven 中包含远程 jar 依赖项

java - Netbeans 7.1 运行旧代码而不是新代码

java - 如何查找已部署的Java EE应用程序的父目录?

java - 在 ProgressBar 上绘制一个字符串,例如 JProgressBar?

java - 如何正确将 Maven 翻译为 gradle

maven-2 - 如何控制maven内置的jar中的pom.xml?

java - 适用于 Java、git 和 vim 的 Netbeans 7 与 Eclipse 3.6

java - 无法使用java从sqlserver获取阿拉伯字母