White label Error Page Error after deployed on server?

Viewed 24

my spring boot project run fine on localhost but its not working on server when deployed its showing whitelabel error page. i am uploading jar file and also tried war in pom.xml still its not working please help below is my application.properties file

spring.mvc.view.prefix=/WEB-INF/views/
spring.mvc.view.suffix=.jsp

spring.datasource.url=jdbc:mysql://moviezone.ccjwths8nyi3.ap-northeast-1.rds.amazonaws.com/movie?createDatabaseIfNotExist=true&useUnicode=true
spring.datasource.username=root
spring.datasource.password=abc12345
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
server.port=5000
1 Answers

The white label error page is from your spring boot application. So you are basically accessing it

Related