/examples/se/numberguess/README.md

http://github.com/weld/core · Markdown · 101 lines · 70 code · 31 blank · 0 comment · 0 complexity · c71aa895b1b0ae35b75c1cd926a3b384 MD5 · raw file

  1. Weld SE Numberguess example (Swing)
  2. ===================================
  3. Running the Example
  4. -------------------
  5. To start this Weld SE application you can either choose to start it with `org.jboss.weld.environment.se.StartMain` or `org.jboss.weld.environment.se.example.numberguess.Main`.
  6. The former is a well known defualt which attempts to discover beans on classpath and then boots the application.
  7. The latter is a synthetic archive which has defined components and disables discovery leading to a minimal, quickly booting application.
  8. Of course you will need all of the relevant jar dependencies
  9. on your classpath, which is most easily done by loading the project into your
  10. favourite Maven-capable IDE and running it from there.
  11. If you are using m2eclipse, and the application won't start, make sure you uncheck
  12. "Resolve dependencies from Workspace projects" in the Maven properties panel. Then
  13. run a full build to ensure all classes are in the right place.
  14. To run this example using Maven directly:
  15. - Ensure that Maven 3 is installed and in your `PATH`
  16. - Ensure that the `JAVA_HOME` environment variable is pointing to your JDK installation
  17. - Open a command line or terminal window in the `examples/se/numberguess` directory
  18. - Execute the following command
  19. mvn -Drun
  20. Running the Example with Jandex
  21. -------------------------------
  22. Weld SE allows Jandex bytecode scanning utility to be used to speed up deployment.
  23. To run the example application with Jandex, run:
  24. mvn clean package -Pjandex -Drun
  25. Running the Example with build-time Jandex index creation
  26. ---------------------------------------------------------
  27. The Jandex index may be created by Maven in the build phase. Weld then finds this
  28. ready-made index and uses it to discover classes even faster.
  29. To run the example in this configuration, run:
  30. mvn clean package -Pjandex,jandex-index dependency:copy-dependencies -Dmdep.stripVersion
  31. java -cp target/weld-se-numberguess.jar:target/dependency/weld-se-shaded.jar:target/dependency/jandex.jar org.jboss.weld.environment.se.StartMain
  32. In the log, you should see a confirmation that existing Jandex index was found and used.
  33. Note that in order for Jandex to be leveraged, you need to start your application with bean discovery enabled (e.g. via `org.jboss.weld.environment.se.StartMain`).
  34. Running the Example with SecurityManager enabled
  35. ------------------------------------------------
  36. There is a simple ready-made policy file named numberguess.policy
  37. To run the example with SecurityManager enabled, run:
  38. mvn clean package dependency:copy-dependencies -Dmdep.stripVersion
  39. java -Djava.security.manager -Djava.security.policy=target/numberguess.policy -cp target/weld-se-numberguess.jar:target/dependency/weld-se-shaded.jar org.jboss.weld.environment.se.example.numberguess.Main
  40. Runnig the Example with shaded maven plugin (fat-jar)
  41. -----------------------------------------------------
  42. This profile provides the capability to package the artifact in a fat-jar (single jar), including all dependencies:
  43. mvn clean package -P shaded
  44. java -jar ./target/weld-se-numberguess.jar
  45. Swing Example: Number Guess
  46. ---------------------------
  47. Here's an example of a Swing application, Number Guess, similar to the example in chapter 7.
  48. This example shows how to use the Weld SE extension in a Java SE based Swing application
  49. with no EJB or servlet dependencies.
  50. In the Number Guess application you are given 10 attempts to guess a number between 1 and 100. After each attempt, you will be told whether you are too high, or too low.
  51. The game's main logic is located in `Game.java`. In this example, it differs from the web application version in several ways:
  52. * the bean is application scoped rather than session scoped, since an instance
  53. of a Swing application typically represents a single 'session'.
  54. * Notice that the bean is not named, since it doesn't need to be accessed via EL.
  55. * In Java SE there is no JSF `FacesContext` to which messages can be added. Instead
  56. the Game class provides additional information about the state of the current game
  57. including:
  58. * if the game has been won or lost,
  59. * if the most recent guess was invalid.
  60. This allows the Swing UI to query the state of the game, which it does indirectly
  61. via a class called `MessageGenerator`, in order to determine the appropriate messages
  62. to display to the user during the game.
  63. * Since there is no dedicated validation phase, validation of user input is performed
  64. during the `check()` method.
  65. * The `reset()` method makes a call to the injected `rndGenerator` in order to get
  66. the random number at the start of each game. Note that it cannot use
  67. `manager.getInstanceByType(Integer.class, new AnnotationLiteral<Random>(){})`
  68. as the JSF example does because there will not be any active contexts like there
  69. is during a JSF request.
  70. For a deeper look into the SE Number Guess example, please refer to chapter 7.2 of the reference documentation.