We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ebi-lode-service.xml explicitly wires the ExplorerServlet (a Spring controller, not a servlet), as follows:
ebi-lode-service.xml
<bean id="serviceServlet" class="uk.ac.ebi.fgpt.lode.servlet.ExplorerServlet"> <property name="sparqlService" ref="jenaSparqlService"/> <property name="configuration" ref="explorerConfig"/> <property name="service" ref="explorerServiceImpl"/> </bean>
However, the bean actually used by Spring's DispatcherServlet is autowired through lode-servlet.xml
DispatcherServlet
lode-servlet.xml
It took me quite awhile to discover that editing the bean in ebi-lode-service.xml wouldn't do me any good.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ebi-lode-service.xml
explicitly wires the ExplorerServlet (a Spring controller, not a servlet), as follows:However, the bean actually used by Spring's
DispatcherServlet
is autowired throughlode-servlet.xml
It took me quite awhile to discover that editing the bean in
ebi-lode-service.xml
wouldn't do me any good.The text was updated successfully, but these errors were encountered: