https://github.com/training360/javax-ee-20191012
Személyre szabott Java EE oktatás, koncentrálva a JMS, haladó JPA, CDI 2.0 és integrációs tesztelés témakörökre
https://github.com/training360/javax-ee-20191012
coursework java javaee
Last synced: 29 days ago
JSON representation
Személyre szabott Java EE oktatás, koncentrálva a JMS, haladó JPA, CDI 2.0 és integrációs tesztelés témakörökre
- Host: GitHub
- URL: https://github.com/training360/javax-ee-20191012
- Owner: Training360
- Created: 2019-10-02T08:48:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-13T16:29:32.000Z (over 5 years ago)
- Last Synced: 2025-02-01T14:46:25.505Z (over 1 year ago)
- Topics: coursework, java, javaee
- Language: Java
- Homepage:
- Size: 60.5 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Java EE k�pz�s
```
standalone.bat -c=standalone-full.xml
jms-queue add --queue-address=EmployeeQueue --entries=java:/jms/queue/EmployeeQueue,java:jboss/exported/queue/EmployeeQueue
jms-queue count-messages --queue-address=EmployeeQueue
jms-queue list-messages-as-json --queue-address=EmployeeQueue
jms-topic add --topic-address=WarningTopic --entries=java:/jms/queue/WarningTopic,java:jboss/exported/queue/WarningTopic
```
`add-user`, szerepk�r: `guest`
```
data-source add --name=EmployeeDS --jndi-name=java:/jdbc/EmployeeDS \
--driver-name=mariadb-java-client-2.4.4.jar \
--connection-url=jdbc:mysql://localhost/employees \
--user-name=employees \
--password=employees
/subsystem=datasources:read-resource
/subsystem=datasources:read-resource(recursive=true)
```
```
create schema if not exists employees default character set utf8 collate utf8_hungarian_ci;
create user 'employees'@'localhost' identified by 'employees';
grant all on *.* to 'employees'@'localhost';
```