You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
admin-client-temperature/src/main/java/com/rehome/mqttclienttemperature/webservice/ApiCommonServiceImpl.java

26 lines
793 B
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.rehome.mqttclienttemperature.webservice;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import javax.jws.WebService;
/**
* @ClassName ApiServiceImpl
* @Description 测试地址http://127.0.0.1:8099/ws/ApiCommonService?wsdl
* @Date 2024/6/14 16:52
* @Version 1.0
*/
@Component
@WebService(serviceName = "ApiCommonService",
targetNamespace = "http://webservice.mqttclienttemperature.rehome.com/",
endpointInterface = "com.rehome.mqttclienttemperature.webservice.ApiCommonService")
@Slf4j
public class ApiCommonServiceImpl implements ApiCommonService {
@Override
public String commonApi(String param1,String param2) {
log.info("调用的入参为:"+param1+","+param2);
return "成功";
}
}