Reputation: 2585
Where are the Embedded Tomcat configuration files for spring-boot-starter-web? I want to set autoDeploy="true" to make the Embedded Tomcat hot deploy changes to my html files.
Upvotes: 1
Views: 7964
Reputation: 58094
An embedded container has no notion of an autoDeploy (that's a container feature that applies to deployed war files). If you just want to reload static resources at dev time, the docs are here: http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#howto-hotswapping
Upvotes: 4