如何将SpringMVC连接到托管网站?

iqjalb3h  于 2021-07-16  发布在  Java
关注(0)|答案(1)|浏览(303)

我最近注册了一个免费网站,网址是http://kensinelli.infinityfreeapp.com. 我正在努力学习springmvc,而不是在上面做任何事情localhost:8080,我想在一个实际的网站上做所有的事情,这样潜在的雇主就可以很容易地看到我决定创建的任何东西。然而,我一直在努力想如何做到这一点。我在google上搜索了很多,找到了一些关于application.properties文件的参考资料,并将server.address=http://kensinelli.infinityfreeapp.com and server.port=80。我还尝试设置server.address=185.27.134.151,这是网站控制面板中声明的ip地址。当我使用ip地址并尝试启动spring时,出现错误:

org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat server

当我使用http://kensinelli.infinityfreeapp.com instead 对于ip地址,我得到以下错误:

Failed to bind properties under 'server.address' to java.net.InetAddress:

    Property: server.address
    Value: http://kensinelli.infinityfreeapp.com
    Origin: class path resource [application.properties] - 1:16
    Reason: failed to convert java.lang.String to java.net.InetAddress

Action:

Update your application's configuration

所以我认为server.address应该是一个实际的ip地址,而不是通过dns运行的命名服务器地址。
但是我需要通过spring内置的tomcat来实现这一点吗?我能绕过它吗?或者tomcat需要连接到外部网站吗?
我的文件目前是这样的:

package spring.project;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class WebProjectApplication {

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

        System.out.println("Hello world");
    }

}

xml(有些依赖项被注解掉了,因为我计划将来使用它们,但它们在启动时给我造成了错误):

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.4</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>spring.project</groupId>
    <artifactId>webProject</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>webProject</name>
    <description>spring project</description>
    <properties>
        <java.version>11</java.version>
    </properties>
    <dependencies>
<!--        <dependency> -->
<!--            <groupId>org.springframework.boot</groupId> -->
<!--            <artifactId>spring-boot-starter-jdbc</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-thymeleaf</artifactId> -->
<!--        </dependency> -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
<!--        <dependency> -->
<!--            <groupId>org.thymeleaf.extras</groupId> -->
<!--            <artifactId>thymeleaf-extras-springsecurity5</artifactId> -->
<!--        </dependency> -->

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
<!--        <dependency> -->
<!--            <groupId>org.postgresql</groupId> -->
<!--            <artifactId>postgresql</artifactId> -->
<!--            <scope>runtime</scope> -->
<!--        </dependency> -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

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

</project>

应用程序属性:

server.address=185.27.134.151
server.port=80

我知道我的代码在这一点上没有做任何事情,但我只是想让它现在开始没有错误。我对这方面还不太熟悉,所以请不要以为我什么都懂。一步一步的演练将非常感谢。请不要只说“阅读文档”,因为我已经看了它,或者我没有找到我要找的东西,或者不理解它,所以我需要有人来澄清。谢谢您。

dpiehjr4

dpiehjr41#

基本答案是您需要在他们的服务器上运行应用程序。您不能在本地运行它并让它服务到其他位置的请求。为此,您需要打包应用程序,将其上载到远程服务器,正确配置远程服务器的配置,并让远程服务器执行打包的应用程序。您可能会发现使用heroku这样的服务更容易。他们有很好的教程,并抽象出管理部署所涉及的一些复杂性。https://devcenter.heroku.com/articles/deploying-spring-boot-apps-to-heroku

相关问题