@SpringBootApplication | |
@ImportResource(locations = "jaxwsconfig.xml") | |
public class TutorialJavaJaxwsApplication { | |
public static void main(String[] args) { | |
SpringApplication.run(TutorialJavaJaxwsApplication.class, args); | |
} | |
@Bean | |
public ServletRegistrationBean servletRegistrationBean() { | |
return new ServletRegistrationBean(new WSSpringServlet(), "/hello"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment