- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我尝试组合 JAX-WS Web 服务端点类和简单的 CDI 注入(inject)时,我遇到了奇怪的行为。当我尝试将对象注入(inject)到 WebService 实现类中时,注入(inject)对象的 PostConstruct 方法永远不会被调用。事实上,类的构造函数也没有被调用。
这是我的 JAX-WS 实现类和注入(inject)点:
@WebService(serviceName="eBusinessWebService")
public class eBusinessWebServiceImpl
{
@WebMethod
public SubmissionValidationResults xmlValidation(String xml, String submissionType, String schemaVersion)
throws SOAPException
{
// Validate schema
SubmissionValidationResults results = fileSubmissionServiceHandler.validateXML(xml, submissionType,
schemaVersion);
return results;
}
@Inject
private FileSubmissionServiceHandler fileSubmissionServiceHandler;
@Inject
private BRSubmissionService brSubmissionService;
}
这是我注入(inject)的类,FileSubmissionServiceHandler:
public class FileSubmissionServiceHandler
{
public FileSubmissionServiceHandler()
{
System.out.println("Constructor being called on FileSubmissionServiceHandler");
}
@PostConstruct
public void init()
{
final String webserviceURL = "https://hostname/FileSubmissionService/FileSubmissionService.svc";
final String username = "username";
final String password = "password";
this.webservice = new BasicHttpsBinding_IFileSubmissionServiceProxy(username, password);
Descriptor desc = webservice._getDescriptor();
desc.setEndpoint(webserviceURL);
}
public SubmissionValidationResults validateXML(String xml, String submissionType,
String schemaVersion) throws WebServiceException
{
SubmissionValidationResults results = null;
FormType type = FormType.getByName(submissionType);
String submissionTypeCode = type.getCode();
try
{
results = this.webservice.validateXmlFile(xml, submissionTypeCode, schemaVersion);
}
catch (Exception e)
{
logger.error("Internal FileSubmissionService threw an exception", e);
throw e;
}
return convertSubmissionValidationResults(results);
}
private BasicHttpsBinding_IFileSubmissionServiceProxy webservice;
}
我被要求发布我的服务器 XML(由于同时运行两个 Liberty 配置文件副本而覆盖端口设置):
<server description="new server">
<!-- Enable features -->
<featureManager>
<feature>jaxws-2.2</feature>
<feature>servlet-3.1</feature>
<feature>cdi-1.2</feature>
</featureManager>
<!--For a user registry configuration, configure your user registry. For
example, configure a basic user registry using the basicRegistry element.
Specify your own user name below in the name attribute of the user element.
For the password, generate an encoded password using bin/securityUtility
encode and add it in the password attribute of the user element. Then uncomment
the user element. -->
<basicRegistry id="basic" realm="BasicRealm">
<user name="wasadmin" password="{xor}KD4sPjsyNjE=" />
</basicRegistry>
<keyStore password="{xor}KD4sPjsyNjE=" />
<!-- To access this server from a remote client add a host attribute to
the following element, e.g. host="*" -->
<httpEndpoint host="*" httpPort="9090" httpsPort="9445"
id="defaultHttpEndpoint" />
<wasJmsEndpoint wasJmsPort="7277" wasJmsSSLPort="7287" />
<iiopEndpoint host="localhost" id="defaultIiopEndpoint"
iiopPort="2814">
<iiopsOptions iiopsPort="2815" />
</iiopEndpoint>
<applicationMonitor updateTrigger="mbean" />
<enterpriseApplication id="eBusinessWebService_EAR"
location="eBusinessWebService_EAR.ear" name="eBusinessWebService_EAR" />
和日志:
Launching defaultServer (WebSphere Application Server 8.5.5.6/wlp-1.0.9.cl50620150610-1749) on Java HotSpot(TM) 64-Bit Server VM, version 1.7.0_79-b15 (en_US)
[AUDIT ] CWWKE0001I: The server defaultServer has been launched.
[AUDIT ] CWWKE0100I: This product is licensed for development, and limited production use. The full license terms can be viewed here: https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/license/base_ilan/ilan/8.5.5.6/lafiles/en.html
[AUDIT ] CWWKZ0058I: Monitoring dropins for applications.
[WARNING ] CWNEN0047W: Resource annotations on the fields of the xxx.important.not.external.service.eBusinessWebServiceImpl class will be ignored. The annotations could not be obtained because of the exception : java.lang.NoClassDefFoundError: org/springframework/context/ApplicationContextAware
[AUDIT ] CWWKT0016I: Web application available (default_host): http://localhost:9090/eBusinessWebService/
[AUDIT ] CWWKZ0001I: Application eBusinessWebService_EAR started in 3.011 seconds.
[AUDIT ] CWWKF0012I: The server installed the following features: [jaxws-2.2, cdi-1.2, servlet-3.1, jndi-1.0, javaMail-1.5, jaxb-2.2].
[AUDIT ] CWWKF0011I: The server defaultServer is ready to run a smarter planet.
20-01-2016 - 10:02:47 - INFO (eBusinessWebServiceImpl.java:31) - --- Validating Incomming Form XML ---
20-01-2016 - 10:02:47 - INFO (eBusinessWebServiceImpl.java:33) - Received Payload: XML [Hello]
20-01-2016 - 10:02:47 - INFO (eBusinessWebServiceImpl.java:34) - SubmissionType [from the]
20-01-2016 - 10:02:47 - INFO (eBusinessWebServiceImpl.java:35) - SchemaVersion [other side]
[WARNING ] Application {http://service.external.not.important.xxx/}eBusinessWebService#{http://service.external.not.important.xxx/}xmlValidation has thrown exception, unwinding now
java.lang.NullPointerException
我对每个类的一些不太相关的细节进行了编辑,但基本操作是相同的。当我尝试访问 fileSubmissionServiceHandler 对象的“validateXML”方法时,会引发空指针异常,并且我从未在 FileSubmissionServiceHandler 类中看到 postConstruct 或构造函数方法的输出。使用调试器,永远无法达到这些方法。
到目前为止我已经检查过的事情:
有人知道为什么这行不通吗?
最佳答案
看起来由于某种原因没有执行注入(inject)。因此,构造函数和 PostConstruct 不会被调用,然后您会遇到 NPE。可以附上您的申请以便我进一步查看吗?
关于java - JAX-WS 和 CDI 无法在 WAS Liberty Profile 8.5.5.6 上协同工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34074041/
是否有任何文档提供有关 Liberty Core、Liberty Base、Liberty Network Deployment 版本之间差异的信息? 我想使用 Liberty 并将我的应用程序部署到
从开发人员的角度来看,Installation Manager安装的WebSphere Application Server(1.5GB)与WebSphere Application Server V
我有一个基本问题,用谷歌搜索但找不到答案 例如我在WAS liberty上创建了一个应用服务器 example : bin/server create simpleServer 如何从 WAS li
我们如何在 IBM liberty 中定义和更改自定义属性值,当从 WAS 迁移到 liberty 时,在 WAS 中的属性下方(Web 容器设置 > Web 容器 > 自定义properties >
我想将 Open Liberty 运行时的语言更改为 en_US从 Eclipse IDE 中,但我不知道如何。 也尝试使用 JVM 参数的首选项来设置它,但它没有用。 -Duser.language
只有当服务器收到它的第一个请求时,Liberty Profile 才会加载我们部署到它的 EAR 和 WAR。我们如何告诉它在服务器启动时立即加载应用程序? 我们使用的是最新的 8.5.5 WLP。
我正在将一个打包的自由服务器部署到包含我的应用程序的 Bluemix 中。 我想更新我的应用程序,但在此之前,我想知道备份当前已启动和运行的应用程序的最佳方法是什么?如果我的更新不好,我想恢复我的应用
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 4年前关闭。 Improve this questi
我正在寻找扩展包含在 Bluemix 中的 WebSphere Liberty buildpack 以及来 self 们的应用程序架构的一些第三方库,因此 EAR 文件的大小将减少很多,并且 cf p
即使相同的 WAR 在远程服务器上工作,我似乎也无法在本地工作。当我在本地访问我的应用程序时,出现“找不到上下文根”错误。 Liberty 配置文件版本为 8.5.5.5。 以下是相关文件: 服务器.
我知道 Liberty 是免费的,但想确认 IBM WAS Liberty Network Deployment 配置文件 也是免费的吗?我们也可以构建集群。 This文章说: Liberty pro
我尝试在 Liberty Profile 中运行现有的 WebSphere 应用程序,但遇到了问题。该应用程序在服务器中配置了一个资源环境条目,我需要将其转换为 Liberty Profile 资源。
这个问题在这里已经有了答案: Webpshere Liberty support for Java 9 (1 个回答) 关闭 5 年前。 在装有 Oracle Java 9.0.1 的 macOS
我尝试将 PostgreSQL 与我的 MicroProfile 应用程序一起使用,但无法加载驱动程序。我的 server.xml 包含以下内容: 我尝试通过 m
IBM WebSphere Liberty Profile提供 "wmqJmsClient-2.0"互动功能 IBM MQ Open Liberty 是否有等价物? [更新] 如果不是(看起来),如何
是否可以使用官方镜像在运行到Docker容器的独立Web Sphere Liberty Server上启用“部署”选项?当我登录到adminCenter时,我只能看到以下选项: 最佳答案 仅当使用集合
我使用了 open-liberty 19.0.0.6 。但是此应用程序服务器无法在 docker 容器上使用 ssl 端口 (https) 。 收到这个 nullPointerException :
有人能给我提供一些有关使用 Liberty 嵌入式 JMS 消息传递提供程序在 WLS liberty 配置文件版本 16.0.0.2 上设置 DLQ 的引用吗?我有一个配置了 spring jms
最近遇到了使用 Jailbreak detection 保护 iOS 应用程序的问题在 OS 12.1 上,带有 Liberty Lite已启用 我在 AppDelegate 和初始 ViewCont
能够在本地Docker容器中部署Liberty Docker镜像,并且可以访问Liberty服务器。 我将自由镜像推送到安装在系统中的Minishift上,但是在创建docker容器时,面临如下错误:
我是一名优秀的程序员,十分优秀!