ui5-middleware-webjars
v3.1.3
Published
UI5 middleware for delivering content from JAR files
Readme
UI5 middleware for delivering content from JAR files
:wave: This is an open‑source, community‑driven project, developed and actively monitored by members of the UI5 community. You are welcome to use it, report issues, contribute enhancements, and support others in the community.
Middleware for ui5-server, delivering the content of JAR files.
Prerequisites
- Requires at least
@ui5/[email protected](to supportspecVersion: "3.0")
:warning: UI5 CLI Compatibility All releases of this UI5 CLI extension using the major version
3require UI5 CLI V3. Any previous releases below major version3(if available) also support older versions of the UI5 CLI. But the usage of the latest UI5 CLI is strongly recommended!
Install
npm install ui5-middleware-webjars --save-devConfiguration options (in $yourapp/ui5.yaml)
classpathFile:
stringthe file containing the classpath (list of files, separated with the path delimiter) which can be created via:
mvn clean dependency:build-classpath -Dmdep.cpFile=target/classpathrootPath:
stringthe root path to the static resources on your system
jarRootPath:
string, default:META-INF/resources/the root path in the JAR file containing the static resources
debug:
boolean, default:false
Usage
- Define the dependency in
$yourapp/package.json:
"devDependencies": {
// ...
"ui5-middleware-webjars": "*"
// ...
}- configure it in
$yourapp/ui5.yaml:
server:
customMiddleware:
- name: ui5-middleware-webjars
afterMiddleware: compression
configuration:
rootPath: "jars"
jarRootPath: "META-INF/"How it works
The middleware searches for JAR files in the rootPath, loads them and serves the content from JAR files following the web static resources concept of Servlet 3.0 (WebJARs). By default, this allows to consume static resources from the JAR files from within the META-INF/resources/ path. When using JAR files following a derived web static resources concept it is possible to override the JAR root path with the configuration jarRootPath.
jarRootPath: "META-INF/resources/"
META-INF/resources/my/resource/path/Resource.js => http://localhost:8080/my/resource/path/Resource.js
---
jarRootPath: "META-INF/"
META-INF/resources/my/resource/path/Resource.js => http://localhost:8080/resources/my/resource/path/Resource.jsDevelopment
If you want to contribute to ui5-middleware-webjars, please use Prettier for code formatting/style and apply the rules from ./.prettierrc. Thanks 🙏!
License
This work is dual-licensed under Apache 2.0 and the Derived Beer-ware License. The official license will be Apache 2.0 but finally you can choose between one of them if you use this work.
When you like this stuff, you may buy @vobu a beer or @pmuessig a coke.
