我想从两个不同的部署中加载和处理json模式文件,第一个是具有JAX-RSendpoint的WAR,第二个是具有Singleton EJB的EAR,一个包含模式文件的资源JAR(我已经了解到,只有将资源文件绑定到EAR内的单独JAR中,才能打包用于EJB的资源文件)。
开发环境是eclipse 2019-03与JBoss Wildfly 16。
WAR部分很好,我有一个< code > @ ApplicationScoped Bean,可以通过ServletContext访问位于< code > src/main/web app/schemas/中的模式文件,请参见以下代码片段:
@ForWarDeployment
@ApplicationScoped
public class JsonSchemaValidatorWar extends JsonSchemaValidatorBase {
...
@PostConstruct
public void init() {
Consumer<Path> readSchema = schemaFile -> {
String schemaName = schemaFile.getName(schemaFile.getNameCount() - 1).toString();
JsonSchema js = jvs.readSchema(schemaFile);
map.put(schemaName, js); // this is a concurrent hash map in base class
log.info("Schema " + schemaName + " added: " + js.toJson());
};
URI schemaFolder;
try {
schemaFolder = servletContext.getResource("/schemas").toURI();
try (Stream<Path> paths = Files.walk(Paths.get(schemaFolder))) {
paths.filter(Files::isRegularFile).forEach(readSchema);
}
} catch (URISyntaxException | IOException e) {
throw new RuntimeException("Error loading schema files!", e);
}
}
第一次请求时输出:
…(默认任务-1)添加了架构person.schema.json:{"$id":…
EJB部分比较棘手,我还没有找到读取所有模式文件的解决方案。
我目前拥有的是一个具有以下结构的多模块maven项目:
- parent
- | ear
- | ejb3
- | resources
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>mdv</groupId>
<artifactId>json-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>json-ejb3</module>
<module>json-ear</module>
<module>json-resources</module>
</modules>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>mdv</groupId>
<artifactId>json-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>json-ear</artifactId>
<packaging>ear</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>mdv</groupId>
<artifactId>json-ejb3</artifactId>
<version>${project.version}</version>
<type>ejb</type>
</dependency>
<dependency>
<groupId>mdv</groupId>
<artifactId>json-resources</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ear-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<version>7</version>
<defaultLibBundleDir>lib</defaultLibBundleDir>
<earSourceDirectory>${basedir}/src/main/resources</earSourceDirectory>
<outputFileNameMapping>@{artifactId}@@{dashClassifier?}@.@{extension}@</outputFileNameMapping>
</configuration>
</plugin>
</plugins>
</build>
</project>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>mdv</groupId>
<artifactId>json-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>json-resources</artifactId>
</project>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>mdv</groupId>
<artifactId>json-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
<artifactId>json-ejb3</artifactId>
<packaging>ejb</packaging>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<artifactId>maven-ejb-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<ejbVersion>3.2</ejbVersion>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- contains a json schema processing library and the class JsonSchemaValidatorEjb -->
<groupId>mdv</groupId>
<artifactId>json</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>
我想将模式文件加载到@ApplicationScoped
bean中以用于单例EJB,相应的类是JsonSchema验证服务
:
package mdv;
import java.util.logging.Logger;
import javax.annotation.PostConstruct;
import javax.ejb.Singleton;
import javax.ejb.Startup;
import javax.inject.Inject;
import json.ForEjbDeployment;
import json.IJsonSchemaValidator;
@Singleton
@Startup
public class JsonSchemaValidatorService {
Logger log = Logger.getLogger("JsonSchemaValidatorService");
@Inject
@ForEjbDeployment
IJsonSchemaValidator jsonSchemaValidator;
// this is where json schema files should be loaded
public JsonSchemaValidatorService() {
//
}
@PostConstruct
public void init() {
log.info("Started JsonSchemaValidatorService.");
log.info("Loaded schemas in jsonSchemaValidator: " + jsonSchemaValidator.getLoadedSchemas());
}
}
在EJB环境中加载json模式文件的类是这个bean:
package json;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.URISyntaxException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Path;
import java.util.function.Consumer;
import java.util.logging.Logger;
import javax.annotation.PostConstruct;
import javax.enterprise.context.ApplicationScoped;
import javax.resource.spi.IllegalStateException;
import org.leadpony.justify.api.JsonSchema;
@ForEjbDeployment
@ApplicationScoped
public class JsonSchemaValidatorEjb extends JsonSchemaValidatorBase {
Logger log = Logger.getLogger("JsonSchemaValidator");
public JsonSchemaValidatorEjb() {
//
}
@PostConstruct
public void init() {
try {
// This is where I can't manage to get a list of the json schema files and process them
final ClassLoader loader = Thread.currentThread().getContextClassLoader();
try(
final InputStream is = loader.getResourceAsStream("schemas");
final InputStreamReader isr = new InputStreamReader(is, StandardCharsets.UTF_8);
final BufferedReader br = new BufferedReader(isr)) {
log.info("schema files in directory: ");
br.lines().forEach(x -> log.info(x));
}
} catch (Exception e) {
throw new RuntimeException("Error trying to parse schema files!", e);
}
}
}
不会抛出异常,但在提供的目录中也不会找到任何文件,例如“模式”。EJB 启动后的缩短输出为:
[JsonSchemaValidatorService] Started JsonSchemaValidatorService.
[JsonSchemaValidator] schema files in directory:
[JsonSchemaValidatorService] Loaded schemas in jsonSchemaValidator: {}
部署的耳朵的文件结构是这样的:
- lib
| - icu4j.jar
| - javax.json-api.jar
| - javax.json.jar
| - json-resources.jar // jar with resources, in this case the schemas
| | - schemas
| | | - person.schema.json
| - json.jar // jar containing @ApplicationScoped beans for war und ejb
| - justify.jar // json schema processing library used
- META-INF
| - maven
| | ...
| - schemas
| | - person.schema.json
| - application.xml
| - MANIFEST.MF
- schemas
| -person.schema.json
- json-ejb3.jar
正如您所看到的,我已经成功地将schemas
文件夹和单个json模式文件捆绑在多个位置,但都不起作用。
这甚至可能实现吗?我在getResourceAsStream("架构")
中指定的路径有错吗?
目标是在启动时加载所有现有的json模式文件,将它们解析为JsonSchema对象一次,以便稍后验证它们(顺便说一句,它将是一个消息驱动的bean)。
如何在JAR文件中列出文件?中回答了迭代模式的方法。
鉴于此,没有理由不能将这些资源与您的 EJB 位于同一 jar 中。如果您需要从 EAR 中的其他 jar 或 WAR 访问它们,则它们只需要位于 EAR/lib 目录中的单独 jar 中。
你不需要关心jboss-部署-结构.xml
除非你正在做一些时髦的事情 - 你不是。
此外,您不能从EAR本身内部读取资源,例如您的EAR/META-INF/schemas
。这算得上很时髦,您仍然需要上面指出的解决方案来迭代。
最后,我找到了一个很好的解决方案,它既适用于Servlet,也适用于EJB,并且不需要区分它们。
由于我无法从EJB中列出schemas文件夹中的文件,但可以访问和读取单个文件,所以我想到了使用一个自动生成的文件(在构建时),其中包含所有JSON模式文件的列表,并使用它来处理模式
首先,我遵循了@IllyaKysil的建议,将我的EJB从EAR部署移动到已经存在且正在工作的WAR部署
最初的方法在WAR和EAR部署中都有JSON模式文件。现在,我在JAR项目的src/main/resources/schemas
文件夹中有这些文件,在WAR项目中,我对这些文件有maven依赖关系。归档结果结构为:
| jee7-test.war
| - WEB-INF
| | - lib
| | | - json-validator-0.0.1-SNAPSHOT.jar
| | | | - schemas
| | | | | - person.schema.json
| | | | | - schemaList.txt
使用 maven antrun 插件,在 src/main/资源/模式
中创建一个文件,每个文件都在模式目录中,扩展名为 .schema.json
,在单独的行上:
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>generate-sources</phase>
<configuration>
<target>
<fileset id="schemaFiles"
dir="src/main/resources/schemas/" includes="*.schema.json" />
<pathconvert pathsep="${line.separator}"
property="schemaFileList" refid="schemaFiles">
<map from="${basedir}\src\main\resources\schemas\" to="" />
</pathconvert>
<echo
file="${basedir}\src\main\resources\schemas\schemaList.txt">${schemaFileList}</echo>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
生成的文件的内容是:
person.schema.json
最后一步是读取包含JSON模式文件列表的文件,并处理每一行以解析相应的模式文件:
@ApplicationScoped
public class JsonSchemaValidator implements IJsonSchemaValidator {
protected JsonValidationService jvs = JsonValidationService.newInstance();
protected ConcurrentHashMap<String, JsonSchema> schemaMap = new ConcurrentHashMap<String, JsonSchema>();
private Logger log = Logger.getLogger("JsonSchemaValidator");
public JsonSchemaValidator() {
//
}
private String SCHEMA_FOLDER = "schemas/";
private String SCHEMA_LIST_FILE = "schemaList.txt";
@PostConstruct
public void init() {
try {
final ClassLoader loader = Thread.currentThread().getContextClassLoader();
// load file containing list of JSON schema files
try (final InputStream is = loader.getResourceAsStream(SCHEMA_FOLDER + SCHEMA_LIST_FILE);
final InputStreamReader isr = new InputStreamReader(is, StandardCharsets.UTF_8);
final BufferedReader br = new BufferedReader(isr)) {
// each line is a name of a JSON schema file that has to be processed
br.lines().forEach(line -> readSchema(line, loader));
}
log.info("Number of JsonSchema objects in schemaMap: " + schemaMap.size());
log.info("Keys in schemaMap: ");
schemaMap.forEachKey(1L, key -> log.info(key));
} catch (Exception e) {
throw new RuntimeException("Error trying to parse schema files!", e);
}
}
private void readSchema(String schemaFileName, ClassLoader classLoader) {
// only use part of the file name to first dot, which leaves me with "person"
// for "person.schema.json" file name
String schemaName = schemaFileName.substring(0, schemaFileName.indexOf("."));
JsonSchema js = jvs.readSchema(classLoader.getResourceAsStream(SCHEMA_FOLDER + schemaFileName));
// put JsonSchema object in map with schema name as key
schemaMap.put(schemaName, js);
log.info("Schema " + schemaName + " added: " + js.toJson());
}
@Override
public List<Problem> validate(String json, String schemaName) {
List<Problem> result = new ArrayList<Problem>();
JsonSchema jsonSchema = schemaMap.get(schemaName);
JsonReader reader = jvs.createReader(new StringReader(json), jsonSchema, ProblemHandler.collectingTo(result));
reader.read();
return result;
}
@Override
public Map<String, JsonSchema> getLoadedSchemas() {
return Collections.unmodifiableMap(schemaMap);
}
}
输入的JSON字符串现在可以根据JSON模式进行验证,而无需反复解析模式
@Inject
IJsonSchemaValidator jsv;
...
List<Problem> problems = jsv.validate(inputJson, "person");
创建 JsonSchema 验证程序实例后记录的输出:
Schema person added: {"$id":"....}
Number of JsonSchema objects in schemaMap: 1
Keys in schemaMap:
person
我需要在weblogic server 10.3.6上部署非常旧的应用程序(10年-生病)。我有一个ear文件,其中包含几个带有EJB类的子部署jar(它们包含weblogic-EJB-jar.xml和EJB-jar.xml)。它通常部署在服务器上,我可以在weblogic中使用“查找”功能。 问题是,还有另一个没有ejb-jar.xml的jar(更旧)需要运行这个应用程序。例如,它有Object
我有一个作为EAR文件交付的企业应用程序。耳中的META-INF文件夹包含预期的“application.xml”,以及属于应用程序的模块列表。 ear中还有许多EJB jar文件,每个文件都包含许多EJB。出于某些原因,我们希望使用XML部署描述符来配置所有EJB。因此,我们有许多ejb jar文件,每个文件都嵌入在ear文件中每个jar的META-INF文件夹中,如下所示。 如您所见,这会产生
我有一个资源文件夹/包在我的项目的根,我"不"想要加载某个文件。如果我想加载某个文件,我会使用class.getResourceAsStream,我会没事的!!我实际上想做的是在资源文件夹中加载一个“文件夹”,循环该文件夹中的文件,并获得每个文件的流,并在内容中读取...假设在运行时之前没有确定文件名...那我该怎么办?有没有一种方法来获得一个文件夹中的文件列表在您的jar文件?请注意,带有资源的
问题内容: 我有一个使用Maven的Java项目。在我的项目中,我有一个名为的文件夹,其中包含无法从Internet /外部存储库加载的所有JAR。 我的问题是如何在包装,构建等过程中指定Maven包括那些JAR? Maven新手,很抱歉,如果这是一个愚蠢的问题。 编辑:我有一个自动工具,它将在我的Git上查找我的文档,以在不同环境中构建和部署我的项目。因此,按照此处的建议将其添加到本地Maven
问题内容: 我需要从罐子中加载属性文件。该罐子包含在war文件中。这是结构 现在,我在一个servlet中编写了以下代码,如下所示: 但是上面的代码我得到流为空。如果我将属性文件放在ROOT.war / WEB- INF中,则可以正常工作。我有一个不错的主意,如果getResourceAsStream中的路径以“ /”开头,那么它将在上下文根目录中搜索资源。但是,如何读取位于jar的资源,该jar
我在maven项目的src/main/resource文件夹中下载了.sh文件,我正在通过下面的代码阅读它 如果我使用jar EX作为应用程序运行:- java-jar runscript.jar SCHEMA_NAME /users/ideaprojects/runscript/target/file:/users/ideaprojects/runscript/target/runscripts