Nginx部署SpringBoot项目的实现

笔记记录一下用Nginx部署SpringBoot项目

1、新建一个yml文件 application.yml

# 端口号
server:
  port: 2001

2、编写一个Controler测试类

package com.example.demo1.controller;


import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@RestController
@Component
@RequestMapping("/v1")
public class HelloController {
    final static Logger log = LogManager.getLogger(HelloController.class);
    @Value("${server.port}")
    private int port ;

    @RequestMapping(value = "", method = RequestMethod.GET)
    public String test() {
        return "invoke url /,port="+port;
    }

    @RequestMapping(value = "/test1", method = RequestMethod.GET)
    public String test1() {
        return "invoke url /test1,port="+port;
    }

    @RequestMapping(value = "/test2", method = RequestMethod.GET)
    public String test2() {
        return "invoke url /test2,port="+port;
    }
}

3、编写一个启动类

package com.example.demo1;

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

@SpringBootApplication
public class Demo1Application {

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

4、我用到的pom文件



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.7.6
         
    
    com.example
    demo1
    0.0.1-SNAPSHOT
    demo1
    Demo project for Spring Boot
    
        1.8
        2.19.0
    
    
        
            org.springframework.boot
            spring-boot-starter
        
        
            org.springframework.boot
            spring-boot-starter-web
            
            
            
            
            

            
            
                
                    org.springframework.boot
                    spring-boot-starter-logging
                
            
        
        
            org.springframework.boot
            spring-boot-starter-test
            
        
        
        
            org.apache.logging.log4j
            log4j-api
            ${log4j.version}
        
        
            org.apache.logging.log4j
            log4j-core
            ${log4j.version}
        
        
    

    
        
            
                org.apache.maven.plugins
                maven-compiler-plugin
                3.7.0
                
                    1.8
                    1.8
                    UTF-8
                
            
            

                org.apache.maven.plugins

                maven-assembly-plugin

                2.5.5

                
                    
                        
                            com.example.demo1.Demo1Application
                        
                    
                    
                        jar-with-dependencies
                    
                
                
                    
                        make-assembly
                        package
                        
                            single
                        
                    
                
            
        
    

5、先在本地测试,启动项目,看到这个就说明启动成功了

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/

6、测试,在浏览器中依次输入

http://127.0.0.1:3001/v1
http://127.0.0.1:3001/v1/test1
http://127.0.0.1:3001/v1/test2

在浏览器中能看到端口号的打印信息就说明成功了

7、maven编译打成jar包

8、修改nginx.conf文件

worker_processes  1;

events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    sendfile        on;
    
    keepalive_timeout  65;

    server {
        listen       89;
        server_name  nginx_server;

        location / {
            proxy_pass http://server_ip:3001/v1;
        }
        location /edu {
            proxy_pass http://server_ip:3001/v1/test1;
        }
        location /ymd {
            proxy_pass http://server_ip:3002/v1/test2;
        }
    }

}

nginx_server:nginx所在的服务器的地址

server_ip:反向代理的服务器的地址

这里我都是10.161.20.10

7、测试,根据访问的路径跳转到不同的服务中

浏览器中输入:

http://10.161.20.10:90/

invoke url /,port=3001

http://10.161.20.10:90/test1

invoke url /test1,port=3001

http://10.161.20.10:90/test2

invoke url /test2,port=3002

到此这篇关于Nginx部署SpringBoot项目的实现的文章就介绍到这了,更多相关Nginx部署SpringBoot内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大阿家以后多多支持脚本之家!

你可能感兴趣的:(Nginx部署SpringBoot项目的实现)