I try to put federated container using -Djavax
在使用该指挥系统时java - Djavax.net.ssl.keyStore=xyz.jks
i 无法发现或装载主要类别:net.ssl.keyStore-xyz.jks。
我使用1.8版的java版本,是这一版本中所包含的净类。
I try to put federated container using -Djavax
在使用该指挥系统时java - Djavax.net.ssl.keyStore=xyz.jks
i 无法发现或装载主要类别:net.ssl.keyStore-xyz.jks。
我使用1.8版的java版本,是这一版本中所包含的净类。
The command you say you are running is plainly incorrect. There needs to be a class name after the -Djavax.net.ssl.keyStore=xyz.jks
option.
例如:
java -Djavax.net.ssl.keyStore=xyz.jks com.acme.traps.RoadRunnerTrap
操作<代码>RoadRunnerTrap的申请,有不同的SSL钥匙仓库。
但是,删除该职衔给你一个不同的错误信息。 例如,在第17号 Java案中,它说:
$ java -Djavax.net.ssl.keyStore=xyz.jks
Usage: java [options] <mainclass> [args...]
(to execute a class)
or java [options] -jar <jarfile> [args...]
(to execute a jar file)
or java [options] -m <module>[/<mainclass>] [args...]
java [options] --module <module>[/<mainclass>] [args...]
(to execute the main class in a module)
or java [options] <sourcefile> [args]
(to execute a single source-file program)
...
为了获得你所报告的错误信息,你实际上需要<代码>-D之后的空间。 与此类似:
$ java -Djavax .net.ssl.keyStore=xyz.jks
Error: Could not find or load main class .net.ssl.keyStore=xyz.jks
Caused by: java.lang.ClassNotFoundException: /net/ssl/keyStore=xyz/jks
因此......看来,你已经错过技术大学,以获得这一错误信息:
-D
option.is net.ssl class included in this version?
它不是一个类别:javax.net.ssl.keyStore
是财产的名称。 你们可以“经营”。
如果你的问题解释了你掌握的指挥是什么?
java -D"javax.net.ssl.keyStore=xyz.jks"
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...