<!-- https://mvnrepository.com/artifact/org.springframework/spring-context -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>5.3.23</version>
</dependency>
//https://github.com/TusharKadam7671
server.servlet.context-path=/SOMETHING
Add to the application.properties/yml file:
server.servlet.context-path=/baeldung
public class SpringBean {
@Autowired
private ApplicationContext appContext;
}