Commit f843f9acdf07edb25525e25a81758317735295e3

Authored by Thomas Ziemer
1 parent aa76328a

README-Datei für Eclipse erweitert

Showing 1 changed file with 31 additions and 1 deletions
README.md
... ... @@ -100,4 +100,34 @@ Aufgepasst bei der Version des MySQL-Konnektors in der module.xml!
100 100 <share-prepared-statements>true</share-prepared-statements>
101 101 </statement>
102 102 </datasource>
103   -```
104 103 \ No newline at end of file
  104 +```
  105 +
  106 +## JBoss WildFly in Eclipse einbinden
  107 +
  108 +### JBoss Tools-Plugin installieren (nur für Eclipse)
  109 +
  110 +- Auswählen "Help -> Eclipse Marketplace..."
  111 +- Find: "JBoss Tools (Neon)" (oder was halt gerade aktuell ist)
  112 +- "Install" klicken
  113 +- Auswählen "JBoss AS, Wildfly & EAP Server Tools"
  114 +
  115 +Quelle: https://tools.jboss.org/downloads/jbosstools/neon/4.4.3.Final.html
  116 +
  117 +### JBoss WildFly Server in Eclipse einbinden (nur für Eclipse)
  118 +
  119 +- Auswählen "File -> New -> Other..."
  120 +- Auswählen "Server -> Server" (Next >)
  121 +- WildFly 8.x
  122 + - Server's host name: localhost
  123 + - Server name: WildFly 8.x beliebig wählen (Next >)
  124 +- Create a new Server Adapter
  125 + - The server is: Local
  126 + - Controlled by: Filesystem and shell Operations
  127 + - Create new runtime (next page) (Next >)
  128 +- New Server
  129 + - Name WildFly 8.x Runtime
  130 + - Home Directory /home/<user>/wildfly-8.2.1.Final/ (oder das Verzeichnis, das Sie gewählt haben)
  131 + - Execution Environment: JavaSE-1.8
  132 + - Server base directory: standalone
  133 + - Configuration file: standalone.xml (Next >)
  134 + - Add and Remove, ohne existierende Resources kann hier nichts konfiguriert werden (Finish)
... ...