使用VPN时无法连接到Spring Boot或Mysql

时间:2017-11-15 09:56:46

标签: mysql spring angular spring-boot vpn

我在Spring Boot和Angular4上工作,它们部署在我公司的本地服务器上。当我们直接从本地网络连接时,一切正常,但是当我使用VPN时,Angular4应用程序看起来无法连接到Spring Boot,或者它可能是无法连接到数据库的Spring Boot应用程序。

以下是spring boot连接到数据库的方式:

spring.datasource.url=jdbc:mysql://localhost:3306/table_name?autoReconnect=true&useSSL=false
spring.datasource.username=username
spring.datasource.password=password
spring.datasource.driverClassName=com.mysql.jdbc.Driver

这是我用来连接Angular4和Spring Boot的常量:

export const appConfig = {
    apiUrl: 'http://xx.xx.xx.xx:8081',
};

以下是错误的屏幕截图: enter image description here

感谢您的帮助

0 个答案:

没有答案