From c5f05d7cba0b401c28120085ea9ae05a04a6242f Mon Sep 17 00:00:00 2001 From: amarildo <91825788+bl4ckswordsman@users.noreply.github.com> Date: Tue, 19 Dec 2023 11:41:18 +0100 Subject: [PATCH 1/6] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7e6e314 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 javaapputveckling + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 12a180b56b38b063116594be390e94638e221687 Mon Sep 17 00:00:00 2001 From: amarildo Date: Fri, 29 Dec 2023 18:34:43 +0100 Subject: [PATCH 2/6] add payara config guide --- .../resources/misc/Payara configuration guide.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 apputveckling/src/main/resources/misc/Payara configuration guide.md diff --git a/apputveckling/src/main/resources/misc/Payara configuration guide.md b/apputveckling/src/main/resources/misc/Payara configuration guide.md new file mode 100644 index 0000000..947c6d4 --- /dev/null +++ b/apputveckling/src/main/resources/misc/Payara configuration guide.md @@ -0,0 +1,14 @@ + ## Configuration guide for the database connection with Payara and MySQL(via XAMPP) ## + +1. Download MySQL Connector/J (platform independent version) and unzip the folder to + /PAYARADIR/glassfish/domains/domain1/ + *Replace PAYARADIR with the path of your payara6 folder + +2. Open a terminal/command prompt in the location /PAYARADIR/bin and run the following command: ./asadmin add-library + /PAYARADIR/glassfish/domains/domain1/lib/mysql-connector-j-8.2.0/mysql-connector-j-8.2.0.jar + + Now open a new terminal in /PAYARADIR/glassfish/bin and run the same command as above. + *Replace PAYARADIR with the path of your payara6 folder + +3. Follow this guide to procceed with the MySQL configuration in Payara's GUI: + https://blog.payara.fish/using-mysql-with-payara \ No newline at end of file From cf357abb2d4d8970dda4b8b3c316c942db2efb89 Mon Sep 17 00:00:00 2001 From: amarildo Date: Fri, 29 Dec 2023 18:38:20 +0100 Subject: [PATCH 3/6] small fix of payara config guide title --- .../src/main/resources/misc/Payara configuration guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apputveckling/src/main/resources/misc/Payara configuration guide.md b/apputveckling/src/main/resources/misc/Payara configuration guide.md index 947c6d4..ff3123c 100644 --- a/apputveckling/src/main/resources/misc/Payara configuration guide.md +++ b/apputveckling/src/main/resources/misc/Payara configuration guide.md @@ -1,4 +1,4 @@ - ## Configuration guide for the database connection with Payara and MySQL(via XAMPP) ## + ## Configuration guide for the database connection with Payara and MySQL(via XAMPP) 1. Download MySQL Connector/J (platform independent version) and unzip the folder to /PAYARADIR/glassfish/domains/domain1/ From 957329922a22600882496e7c789872cce050ff99 Mon Sep 17 00:00:00 2001 From: amarildo Date: Fri, 29 Dec 2023 18:41:39 +0100 Subject: [PATCH 4/6] final small fix of payara config guide --- ...ara configuration guide.md => Payara_configuration_guide.md} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename apputveckling/src/main/resources/misc/{Payara configuration guide.md => Payara_configuration_guide.md} (88%) diff --git a/apputveckling/src/main/resources/misc/Payara configuration guide.md b/apputveckling/src/main/resources/misc/Payara_configuration_guide.md similarity index 88% rename from apputveckling/src/main/resources/misc/Payara configuration guide.md rename to apputveckling/src/main/resources/misc/Payara_configuration_guide.md index ff3123c..0722673 100644 --- a/apputveckling/src/main/resources/misc/Payara configuration guide.md +++ b/apputveckling/src/main/resources/misc/Payara_configuration_guide.md @@ -1,4 +1,4 @@ - ## Configuration guide for the database connection with Payara and MySQL(via XAMPP) +# Configuration guide for the database connection with Payara and MySQL(via XAMPP) 1. Download MySQL Connector/J (platform independent version) and unzip the folder to /PAYARADIR/glassfish/domains/domain1/ From 91dc3500022b982a77aac89dc480fff87321f069 Mon Sep 17 00:00:00 2001 From: amarildo <91825788+bl4ckswordsman@users.noreply.github.com> Date: Fri, 29 Dec 2023 18:42:28 +0100 Subject: [PATCH 5/6] Update README.md add link to payara config guide --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8d5ca16..66f3146 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # gitarrworkshop Projektarbete för kursen Applikationsutveckling Ht2023 + + +## [Payara configuration guide](./apputveckling/src/main/resources/misc/Payara_configuration_guide.md) From be6f8599204c79e8d4cdf32e222bab66e5eb705b Mon Sep 17 00:00:00 2001 From: local_tweekerz <94663534+LocalTweekez@users.noreply.github.com> Date: Thu, 11 Jan 2024 03:52:53 +0100 Subject: [PATCH 6/6] Update README.md --- README.md | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8d5ca16..d0dcd28 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,15 @@ -# gitarrworkshop -Projektarbete för kursen Applikationsutveckling Ht2023 +# Anders's Guitarr Workshop +Project work for the course Application Development in Java - DT142G (Mid Sweden University) + +## Project Abstract +This project is a website developed in Java to a fictional business owned by a fictional character called Anders. He requires a bespoke web service for his workshop, which specializes in offering repair services and a range of exclusive guitars. The web service is designed to support his business model, focusing on efficient management of appointments, client interactions, and case handling, all organized through an integrated calendar system. This project chronicles the development of the website, a collaborative effort undertaken by our eight-member team, with Java as the chosen programming language. The primary emphasis is placed on the calendar functionality. However, the scope of work extends to include features like database connectivity, enhanced visibility, and practical usability, all developed across three distinct prototypes. The final deliverable is a complete website with a comprehensive, fully functional calendar, alongside robust modules for managing members, cases, and products, and a well-structured admin and client interface, realized through the collective contributions of the entire team. + +The project contributers are: +- Nasir A. (nasiralizade) +- Johannes J. (JohannesJoujo) +- Isaac K. (isaac1209) +- Taha K. (TahaKhudher) +- Bashar L. (BasharLevin) +- Anarildo R. (bl4ckswordsman) +- Emanuel S. (dread117) +- Serhad Y. (LocalTweekez / serpan133)