-1

I have a vaadin page for manage my items of my website . The client front-end i use spring boot with JSP view , controller but the manager's i want to try vaadin . Both of them are in one server . So how can i custom the vaadin url .

Thieu Anh
  • 105
  • 8

2 Answers2

1

I have had the solution for myself. Just add vaadin.servlet.url-mapping=/path in properties file or define @SpringUI(path="/manager") on head of UI Class.

Zico
  • 2,349
  • 2
  • 22
  • 25
Thieu Anh
  • 105
  • 8
0

If you are talking about this URL "http://localhost:8080/ ", then in your application.properties file, you can write server.port = 'your port number other than 8080'. That will work.

Vibhav Chaddha
  • 431
  • 7
  • 15