Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
alx_java2b_20250412
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Patryk Czarnik
alx_java2b_20250412
Commits
cddd9468
Commit
cddd9468
authored
May 10, 2025
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SklepSOAP - pierwsze operacje dotyczące sklepu i korzystające z bazy
danych
parent
c90c60a5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
pom.xml
PC24-SklepSoap/pom.xml
+6
-0
Sklep.java
PC24-SklepSoap/src/main/java/sklep/soap/Sklep.java
+27
-0
No files found.
PC24-SklepSoap/pom.xml
View file @
cddd9468
...
@@ -27,6 +27,12 @@
...
@@ -27,6 +27,12 @@
<version>
4.0.2
</version>
<version>
4.0.2
</version>
<scope>
provided
</scope>
<scope>
provided
</scope>
</dependency>
</dependency>
<dependency>
<groupId>
org.postgresql
</groupId>
<artifactId>
postgresql
</artifactId>
<version>
42.7.5
</version>
<scope>
runtime
</scope>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
...
...
PC24-SklepSoap/src/main/java/sklep/soap/Sklep.java
0 → 100644
View file @
cddd9468
package
sklep
.
soap
;
import
java.util.List
;
import
jakarta.jws.WebService
;
import
sklep.db.DBConnection
;
import
sklep.db.DBException
;
import
sklep.db.ProductDAO
;
import
sklep.model.Product
;
@WebService
public
class
Sklep
{
public
List
<
Product
>
readAllProducts
()
throws
DBException
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
ProductDAO
productDAO
=
db
.
productDAO
();
return
productDAO
.
readAll
();
}
}
// TODO dodaj metody findByPrice, findById, który odczytują tylko wybrane produkty
// wykorzystując metody klasy ProductDAO
// dla chętnych kolejne metody: zapisywanie produktu (Product jest parametrem weejściowym)
// odczyt zamówienia wg ID a może też odczyt wszystkich zamówień wskazanego klienta
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment