46 lines
1.6 KiB
Java
46 lines
1.6 KiB
Java
/*
|
|
* Copyright 2012-2019 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package sample.webservices;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.core.io.ClassPathResource;
|
|
import org.springframework.ws.config.annotation.WsConfigurerAdapter;
|
|
import org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition;
|
|
import org.springframework.xml.xsd.SimpleXsdSchema;
|
|
import org.springframework.xml.xsd.XsdSchema;
|
|
|
|
@Configuration
|
|
public class WebServiceConfig extends WsConfigurerAdapter {
|
|
|
|
@Bean(name = "holiday")
|
|
public DefaultWsdl11Definition defaultWsdl11Definition(XsdSchema countriesSchema) {
|
|
DefaultWsdl11Definition wsdl = new DefaultWsdl11Definition();
|
|
wsdl.setPortTypeName("HumanResource");
|
|
wsdl.setLocationUri("/holidayService/");
|
|
wsdl.setTargetNamespace("https://company.example.com/hr/definitions");
|
|
wsdl.setSchema(countriesSchema);
|
|
return wsdl;
|
|
}
|
|
|
|
@Bean
|
|
public XsdSchema countriesSchema() {
|
|
return new SimpleXsdSchema(new ClassPathResource("META-INF/schemas/hr.xsd"));
|
|
}
|
|
|
|
}
|