Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 2.67 KB

README.md

File metadata and controls

65 lines (50 loc) · 2.67 KB

B-Shopper Online Store

Online Perfume Store is a free & open source application licensed under "MIT"-simply do the ****** thing you want and edit the code add new futers as you like. i'm using VAADIN for front-end taier.

Project Structure

The project consists of the following three modules:

  • parent project: common metadata and configuration
  • sample-widgetset: widgetset, custom client side code and dependencies to widget add-ons
  • sample-ui: main application module, development time
  • sample-production: module that produces a production mode WAR for deployment

The production mode module recompiles the widgetset (obfuscated, not draft), activates production mode for Vaadin with a context parameter in web.xml and contains a precompiled theme. The ui module WAR contains an unobfuscated widgetset, and is meant to be used at development time only.

Workflow

To compile the entire project, run "mvn install" in the parent project.

Other basic workflow steps:

  • getting started
  • compiling the whole project
    • run "mvn install" in parent project
  • developing the application
  • developing the theme
    • run the application as above
    • edit the theme in the ui module
    • optional: see below for precompiling the theme
    • reload the application page
  • client side changes or add-ons
    • edit code/POM in widgetset module
    • run "mvn install" in widgetset module
    • if a new add-on has an embedded theme, run "mvn vaadin:update-theme" in the ui module
  • debugging client side code
    • run "mvn vaadin:run-codeserver" in widgetset module
    • activate Super Dev Mode in the debug window of the application
  • creating a production mode war
    • run "mvn -Pproduction package" in the production mode module or in the parent module
  • testing the production mode war
    • run "mvn -Pproduction jetty:run-war" in the production mode module

Using a precompiled theme

When developing the UI module, Vaadin can compile the theme on the fly on every application reload, or the theme can be precompiled to speed up page loads.

To precompile the theme run "mvn vaadin:compile-theme" in the ui module. Note, though, that once the theme has been precompiled, any theme changes will not be visible until the next theme compilation or running the "mvn clean" target.

When developing the theme, running the application in the "run" mode (rather than in "debug") in the IDE can speed up consecutive on-the-fly theme compilations significantly.

The production module always automatically precompiles the theme for the production WAR.