- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在创建网络服务,并且必须在其中使用服务。但自动连线不起作用,我尝试了很多东西。
我的目录结构是:
package com.mycaptionlabs.quickbooks.ws;
import java.util.ArrayList;
import javax.jws.WebService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.context.support.SpringBeanAutowiringSupport;
import com.mycaptionlabs.repository.UserRepository;
import com.mycaptionlabs.service.UserService;
/*
* http://developer.intuit.com/qbsdk-current/doc/pdf/qbwc_proguide.pdf
*/
@WebService(endpointInterface = "com.mycaptionlabs.quickbooks.ws.QBWebConnectorSvcSoap")
public class ItemQueryRqSoapImpl extends SpringBeanAutowiringSupport implements QBWebConnectorSvcSoap {
UserRepository userRepository;
@Autowired UserService userService;
@Override
public ArrayOfString authenticate(String strUserName, String strPassword) {
System.out.println(userService);
ArrayOfString arr = new ArrayOfString();
arr.string = new ArrayList<String>();
arr.string.add("The first element is a token for the web connectorÕs session");
arr.string.add(""); // To use the currently open company, specify an
// empty string
return arr;
}
@Override
public String closeConnection(String ticket) {
// TODO Auto-generated method stub
return null;
}
@Override
public String connectionError(String ticket, String hresult, String message) {
// TODO Auto-generated method stub
return null;
}
@Override
public String getLastError(String ticket) {
// TODO Auto-generated method stub
return null;
}
/**
* @return A positive integer less than 100 represents the percentage of
* work completed. A value of 1 means one percent complete, a value
* of 100 means 100 percent complete--there is no more work. A
* negative value means an error has occurred and the Web Connector
* responds to this with a getLastError call. The negative value
* could be used as a custom error code.
*/
@Override
public int receiveResponseXML(String ticket, String response, String hresult, String message) {
// TODO Auto-generated method stub
return 100;
}
@Override
public String sendRequestXML(String ticket, String strHCPResponse, String strCompanyFileName, String qbXMLCountry,
int qbXMLMajorVers, int qbXMLMinorVers) {
// Example qbXML to Query for an Item
// http://www.consolibyte.com/wiki/doku.php/quickbooks_qbxml_itemquery
String query = "<?xml version=\"1.0\" encoding=\"utf-8\"?><?qbxml version=\"7.0\"?><QBXML><QBXMLMsgsRq onError=\"stopOnError\"><ItemQueryRq requestID=\"SXRlbVF1ZXJ5fDEyMA==\"><OwnerID>0</OwnerID></ItemQueryRq></QBXMLMsgsRq></QBXML>";
return query;
}
}
界面是
package com.mycaptionlabs.quickbooks.ws;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.1.6 in JDK 6
* Generated source version: 2.1
*
*/
@WebService(name = "QBWebConnectorSvcSoap", targetNamespace = "http://developer.intuit.com/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface QBWebConnectorSvcSoap {
/**
*
* @param strPassword
* @param strUserName
* @return
* returns com.cantero.quickbooks.ws.ArrayOfString
*/
@WebMethod(action = "http://developer.intuit.com/authenticate")
@WebResult(name = "authenticateResult", targetNamespace = "http://developer.intuit.com/")
@RequestWrapper(localName = "authenticate", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.Authenticate")
@ResponseWrapper(localName = "authenticateResponse", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.AuthenticateResponse")
public ArrayOfString authenticate(
@WebParam(name = "strUserName", targetNamespace = "http://developer.intuit.com/")
String strUserName,
@WebParam(name = "strPassword", targetNamespace = "http://developer.intuit.com/")
String strPassword);
/**
*
* @param qbXMLMinorVers
* @param ticket
* @param qbXMLCountry
* @param strCompanyFileName
* @param qbXMLMajorVers
* @param strHCPResponse
* @return
* returns java.lang.String
*/
@WebMethod(action = "http://developer.intuit.com/sendRequestXML")
@WebResult(name = "sendRequestXMLResult", targetNamespace = "http://developer.intuit.com/")
@RequestWrapper(localName = "sendRequestXML", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.SendRequestXML")
@ResponseWrapper(localName = "sendRequestXMLResponse", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.SendRequestXMLResponse")
public String sendRequestXML(
@WebParam(name = "ticket", targetNamespace = "http://developer.intuit.com/")
String ticket,
@WebParam(name = "strHCPResponse", targetNamespace = "http://developer.intuit.com/")
String strHCPResponse,
@WebParam(name = "strCompanyFileName", targetNamespace = "http://developer.intuit.com/")
String strCompanyFileName,
@WebParam(name = "qbXMLCountry", targetNamespace = "http://developer.intuit.com/")
String qbXMLCountry,
@WebParam(name = "qbXMLMajorVers", targetNamespace = "http://developer.intuit.com/")
int qbXMLMajorVers,
@WebParam(name = "qbXMLMinorVers", targetNamespace = "http://developer.intuit.com/")
int qbXMLMinorVers);
/**
*
* @param message
* @param response
* @param ticket
* @param hresult
* @return
* returns int
*/
@WebMethod(action = "http://developer.intuit.com/receiveResponseXML")
@WebResult(name = "receiveResponseXMLResult", targetNamespace = "http://developer.intuit.com/")
@RequestWrapper(localName = "receiveResponseXML", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.ReceiveResponseXML")
@ResponseWrapper(localName = "receiveResponseXMLResponse", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.ReceiveResponseXMLResponse")
public int receiveResponseXML(
@WebParam(name = "ticket", targetNamespace = "http://developer.intuit.com/")
String ticket,
@WebParam(name = "response", targetNamespace = "http://developer.intuit.com/")
String response,
@WebParam(name = "hresult", targetNamespace = "http://developer.intuit.com/")
String hresult,
@WebParam(name = "message", targetNamespace = "http://developer.intuit.com/")
String message);
/**
*
* @param message
* @param ticket
* @param hresult
* @return
* returns java.lang.String
*/
@WebMethod(action = "http://developer.intuit.com/connectionError")
@WebResult(name = "connectionErrorResult", targetNamespace = "http://developer.intuit.com/")
@RequestWrapper(localName = "connectionError", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.ConnectionError")
@ResponseWrapper(localName = "connectionErrorResponse", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.ConnectionErrorResponse")
public String connectionError(
@WebParam(name = "ticket", targetNamespace = "http://developer.intuit.com/")
String ticket,
@WebParam(name = "hresult", targetNamespace = "http://developer.intuit.com/")
String hresult,
@WebParam(name = "message", targetNamespace = "http://developer.intuit.com/")
String message);
/**
*
* @param ticket
* @return
* returns java.lang.String
*/
@WebMethod(action = "http://developer.intuit.com/getLastError")
@WebResult(name = "getLastErrorResult", targetNamespace = "http://developer.intuit.com/")
@RequestWrapper(localName = "getLastError", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.GetLastError")
@ResponseWrapper(localName = "getLastErrorResponse", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.GetLastErrorResponse")
public String getLastError(
@WebParam(name = "ticket", targetNamespace = "http://developer.intuit.com/")
String ticket);
/**
*
* @param ticket
* @return
* returns java.lang.String
*/
@WebMethod(action = "http://developer.intuit.com/closeConnection")
@WebResult(name = "closeConnectionResult", targetNamespace = "http://developer.intuit.com/")
@RequestWrapper(localName = "closeConnection", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.CloseConnection")
@ResponseWrapper(localName = "closeConnectionResponse", targetNamespace = "http://developer.intuit.com/", className = "com.cantero.quickbooks.ws.CloseConnectionResponse")
public String closeConnection(
@WebParam(name = "ticket", targetNamespace = "http://developer.intuit.com/")
String ticket);
}
主类是:
包 com.mycaptionlabs;
import javax.xml.ws.Endpoint;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.context.web.SpringBootServletInitializer;
import org.springframework.context.annotation.PropertySource;
import org.springframework.context.annotation.PropertySources;
import org.springframework.scheduling.annotation.EnableScheduling;
import com.mycaptionlabs.quickbooks.ws.ItemQueryRqSoapImpl;
@SpringBootApplication
@EnableScheduling
@PropertySources({
@PropertySource("classpath:datasource.properties"),
@PropertySource("classpath:mail.properties")
})
public class MyCaptionLabsApplication extends SpringBootServletInitializer{
public static Logger log = LoggerFactory.getLogger(MyCaptionLabsApplication.class);
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(MyCaptionLabsApplication.class);
}
public static void main(String[] args) {
log.debug("running my Application");
SpringApplication.run(MyCaptionLabsApplication.class, args);
Endpoint.publish("http://localhost:8080/QBwebService",
new ItemQueryRqSoapImpl());
}
}
我的用户服务是
@Service
public class UserService{
}
我也尝试过此链接JBoss 6 + Spring 3.0.5 + JAX-WS/CXF它对我不起作用。请帮我解决我所缺少的内容,目录结构是否有错误?
提前致谢!!
最佳答案
@Autowired(如@Value、@Inject等)仅适用于Spring管理的bean。但是您手动创建 ItemQueryRqSoapImpl 的实例。
将@Component或@Service添加到ItemQueryRqSoapImpl类声明中,或创建一个返回ItemQueryRqSoapImpl实例并用@Bean注释的方法。
使用ApplicationContext.getBean()获取创建的bean并将其传递给Endpoint.publish()
你应该得到这样的东西:
public static Logger log = LoggerFactory.getLogger(MyCaptionLabsApplication.class);
@Bean
public ItemQueryRqSoapImpl itemQueryRqSoapImpl() {
return new ItemQueryRqSoapImpl();
}
@Override
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
return application.sources(MyCaptionLabsApplication.class);
}
public static void main(String[] args) {
log.debug("running my Application");
ApplicationContext applicationContext = SpringApplication.run(MyCaptionLabsApplication.class, args);
ItemQueryRqSoapImpl itemQueryRqSoapImpl = applicationContext.getBean(ItemQueryRqSoapImpl.class);
Endpoint.publish("http://localhost:8080/QBwebService",
itemQueryRqSoapImpl);
}
关于java - Spring Autowiring Web 服务的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35062651/
这更像是一个最佳实践类型的问题。 我听过很多次: a) 在 Spring 中 Autowiring 时,最佳做法是 Autowiring 接口(interface)“而不是”实现。 和.. b) 我还
我正在查看工作区中的一些旧示例。我看不出怎么样由于没有 @Autowired, Autowiring 完成。 Spring boot + facebook 默认配置。 @Controller @Req
事实似乎并非如此。我曾经认为 XML 配置是为了覆盖注释。但是当我在XML配置中设置autowire =“no”时,bean的@Autowired注释属性仍然有效。我不再确定 XML autowire
为什么需要 Autowiring ? Autowiring 概念的解释是什么?@autowired Spring Framework 中的注释. 最佳答案 不需要 Autowiring ,只是方便。
来自this Spring documentation我知道当我使用@Bean时,默认值已经相当于: @Bean(autowire = Autowire.NO) (Default) No autowi
遇到了一个奇怪的要求。我需要将唯一的错误 ID 附加到 log4j 消息并将该消息 ID 返回给接口(interface)。所以,我虽然让我们创建一个 spring 服务,就像这样 public cl
这个问题已经有答案了: @Autowire failing with @Repository (3 个回答) 已关闭 4 年前。 我有一个类“ReportEverythingForm”,它拒绝通过自动
我是 Spring 的新手。我正面临 Spring-Boot 的问题。我正在尝试将一个字段从外部配置文件 Autowiring 到一个 Autowiring 的 bean 中。我有以下类(class)
我有一个带有存储库的 Spring Boot 应用程序。 我还使用@Service并扩展其中的存储库。 当我尝试 @Autowired 我拥有的服务时: Caused by: org.springfr
我有一个接口(interface)C,想要访问另外两个类中的getClassName()。访问 a.getClassName() 时,method1() 中出现异常。 public interface
我遇到了一个奇怪的问题,其中注入(inject)了 @Autowire 的 Component 在一个类中可用,但在另一个类中不可用。 我在Account和Agreement类的属性network中使
考虑以下示例代码: public class SmallCar { private CarEngine carEngine; @Autowired public SmallCa
autowire = "no"和 autowire = "default"有什么区别?如果它们相同,那么为什么我们有这 2 个选项。 最佳答案 Beans The default is "defaul
我已将项目更改为使用注释而不是 xml 文件,但这会增加应用程序部署时间。现在我正在寻找减少它的方法。 按类型 Autowiring 和按名称 Autowiring 之间有性能差异吗? 热烈欢迎任何其
我有一个与 Web 插件一起使用的 spring boot 应用程序。 在一节课中我有: package com.test.company @Component @RestController pub
我有一个可以执行某些操作的系统。该系统使用以下方法为每个对象创建一个单独的线程: stp.scheduleWithFixedDelay((EditSite) ctx.getBean("EditSite
我正在尝试自动连接存储库,但它无法工作。我已经为此苦苦挣扎了一个星期,但我似乎无法弄清楚。有趣的是,当我注释掉人员存储库的 Autowiring 时,程序可以正常工作并正确编译,但是一旦我尝试 Aut
意味着如果具有所需类型的 bean 不超过 1 个,bean 的所有字段将自动注入(inject)依赖项。 问题是当使用注解时它是如何工作的,它到底能不能工作。 我的测试表明即使我使用 @Resou
我有一个 Autowiring 其他 bean 的组件: @Component public class MyComponent { @Autowired private Enviro
这是我的类代码,其中有 @Autowired 字段: 测试A @ContextConfiguration("classpath:spring.xml") public abstract class T
我是一名优秀的程序员,十分优秀!