Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aquariuslt/karma-jawr-sample
Spring + JAWR + Ext3 Java Web Sample Project
https://github.com/aquariuslt/karma-jawr-sample
ext jawr jsf2 springmvc
Last synced: 24 days ago
JSON representation
Spring + JAWR + Ext3 Java Web Sample Project
- Host: GitHub
- URL: https://github.com/aquariuslt/karma-jawr-sample
- Owner: aquariuslt
- Created: 2017-09-20T12:17:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:23:25.000Z (11 months ago)
- Last Synced: 2023-12-15T22:15:41.137Z (11 months ago)
- Topics: ext, jawr, jsf2, springmvc
- Language: JavaScript
- Homepage:
- Size: 1.47 MB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Karma Jawr Sample
[![Build Status](https://travis-ci.org/aquariuslt/karma-jawr-sample.svg?branch=master)](https://travis-ci.org/aquariuslt/karma-jawr-sample)
[![Coverage Status](https://coveralls.io/repos/github/aquariuslt/karma-jawr-sample/badge.svg?branch=master)](https://coveralls.io/github/aquariuslt/karma-jawr-sample?branch=master)The focus point is: Providing a way to show: how to write graceful javascript unittest in server render template engine.
## Background
- Spring Framework
- Spring MVC
- JAWR
- JAWR Locale Message Generator
- Ext3## Features
- Karma + Mocha + Chai
- Sinon
- Integration with CI System## Problems
- **How to load necessary JS files into runtime easily?** Because Java side uses JAWR as assets bundling tool to compact multiple JS files into one. Then Front-end uses `` tags to include those bundles. This make it difficult to get the correct dependencies JS files.
- **How to mock the Locale Message Generator in global?** Currently the JAWR Locale Message Generator is assigned as a property of the global object(We use it like `locale.namesapce.field.a()`). We need to construct this object when running test cases otherwise a lot of code will throw exception.
- **No best practice for Ext3 can be found from Internet**## Plan: outline
## Usage
### Install Dependencies
```bash
mvn install && npm install
```### Build War & Deploy
You can deploy you war file in `target/karma-jawr.war` to your webapp container.(Tomcat, JBoss, Weblogic...)### Install Frontend UnitTest Dependencies
```bash
npm install
```For China User, since `puppeteer v0.13.0` support CHROMIUM binary download mirror.
Please export environment variables `PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors` before npm install
For Windows Run
```bash
SET PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors
```> Since 2018-03-13 cnpmjs.org network issue, found another mirror on taobao.org
> So you can also use this [https://npm.taobao.org/mirrors](https://npm.taobao.org/mirrors)For Unix Run
```bash
export PUPPETEER_DOWNLOAD_HOST=https://npm.taobao.org/mirrors
```### Frontend UnitTest
```bash
npm test
```