Getting class path errors for rest api config

Hello,
Am new to Bloomreach, using 14.2 community version. I have configured REST api and added spring config file but getting below class path errors.

it’s not identifying below files, i have added dependencies




Depedency:

  1. org.apache.geronimo.specs geronimo-annotation_1.1_spec 1.0.1 compile

****:
bache.catalina.startup.Bootstrap.start(B
ootstrap.java:343) [bootstrap.jar:9.0.31]
[INFO] [talledLocalContainer] at org.apache.catalina.startup.Bootstrap.main(Bo
otstrap.java:474) [bootstrap.jar:9.0.31]
[INFO] [talledLocalContainer] Caused by: org.springframework.beans.factory.BeanD
efinitionStoreException: IOException parsing XML document from class path resour
ce [org/hippoecm/hst/site/optional/jaxrs /SpringComponentMan
ager-rest-jackson.xml]; nested exception is java.io.FileNotFoundException: class
path resource [org/hippoecm/hst/site/optional/jaxrs /Spring
ComponentManager-rest-jackson.xml] cannot be opened because it does not exist
[INFO] [talledLocalContainer] at org.springframework.beans.factory.xml.XmlBean
DefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:345) ~[spring-
beans-5.1.14.RELEASE.jar:5.1.14.RELEASE]
[INFO] [talledLocalContainer] at org.springframework.beans.factory.xml.XmlBean
DefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:305) ~[spring-
beans-5.1.14.RELEASE.jar:5.1.14.RELEASE]
[INFO] [talledLocalContainer] at org.springframework.beans.factory.support.Abs
tractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:
188) ~[spring-beans-5.1.14.RELEASE.jar:5.1.14.RELEASE]
[INFO] [talledLocalContainer] at org.springframework.beans.factory.support.Abs
tractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:
224) ~[spring-beans-5.1.14.RELEASE.jar:5.1.14.RELEASE]
[INFO] [talledLocalContainer] at org.springframework.beans.factory.xml.Default
BeanDefinitionDocumentReader.importBeanDefinitionResource(DefaultBeanDefinitionD

Any help appreciated, regards
RR

cms-issue-1

looks like you have a space or a new line in here:
org/hippoecm/hst/site/optional/jaxrs /Spring … etc…

it should be:
org/hippoecm/hst/site/optional/jaxrs/Spring…etc…

Hello Machak, thanks that works for me.