Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
java_weekendowa_20221008
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
java_weekendowa_20221008
Commits
ea657cee
Commit
ea657cee
authored
Dec 10, 2022
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dodatkowe operacje SOAP
parent
8772122f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
4 deletions
+72
-4
Sklep.java
PC33-SoapSerwer/src/main/java/sklep/soap/Sklep.java
+72
-4
No files found.
PC33-SoapSerwer/src/main/java/sklep/soap/Sklep.java
View file @
ea657cee
package
sklep
.
soap
;
package
sklep
.
soap
;
import
java.math.BigDecimal
;
import
java.util.List
;
import
java.util.List
;
import
javax.jws.WebParam
;
import
javax.jws.WebResult
;
import
javax.jws.WebResult
;
import
javax.jws.WebService
;
import
javax.jws.WebService
;
import
sklep.db.CustomerDAO
;
import
sklep.db.DBConnection
;
import
sklep.db.DBConnection
;
import
sklep.db.DBException
;
import
sklep.db.DBException
;
import
sklep.db.OrderDAO
;
import
sklep.db.ProductDAO
;
import
sklep.db.ProductDAO
;
import
sklep.db.RecordNotFound
;
import
sklep.model.Customer
;
import
sklep.model.Order
;
import
sklep.model.Product
;
import
sklep.model.Product
;
import
sklep.photo.PhotoUtil
;
@WebService
@WebService
public
class
Sklep
{
public
class
Sklep
{
...
@@ -20,11 +28,71 @@ public class Sklep {
...
@@ -20,11 +28,71 @@ public class Sklep {
}
}
}
}
// W klasie ProductDAO znajdują się metody służące do odczytu 1 produktu wg id
@WebResult
(
name
=
"product"
)
// oraz listy produktów dla podanego zakresu cen
public
Product
readOneProduct
(
@WebParam
(
name
=
"id"
)
int
productId
)
throws
DBException
,
RecordNotFound
{
// TODO - utwórz analogiczne metody w tym weserwisie
try
(
DBConnection
db
=
DBConnection
.
open
())
{
ProductDAO
productDAO
=
db
.
productDAO
();
return
productDAO
.
findById
(
productId
);
}
}
// TODO 2 - metoda, która pozwala zapisać na serwerze przesłany Product
@WebResult
(
name
=
"product"
)
public
List
<
Product
>
readProductsByPrice
(
@WebParam
(
name
=
"min"
)
BigDecimal
minPrice
,
@WebParam
(
name
=
"max"
)
BigDecimal
maxPrice
)
throws
DBException
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
ProductDAO
productDAO
=
db
.
productDAO
();
return
productDAO
.
findByPrice
(
minPrice
,
maxPrice
);
}
}
public
void
saveProduct
(
@WebParam
(
name
=
"product"
)
Product
product
)
throws
DBException
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
ProductDAO
productDAO
=
db
.
productDAO
();
productDAO
.
save
(
product
);
db
.
commit
();
}
}
@WebResult
(
name
=
"bytes"
)
public
byte
[]
foto
(
@WebParam
(
name
=
"id"
)
int
productId
)
throws
DBException
,
RecordNotFound
{
return
PhotoUtil
.
readBytes
(
productId
);
}
// Dane binarne są domyślnie wstawiane do XML skonwertowane na format base64.
// Po użyciu adnotacji @MTOM są dołączane jako załacznik do komunikatu SOAP
// (to się nazywa "SOAP with Attachments").
@WebResult
(
name
=
"order"
)
public
List
<
Order
>
odczytajWszystkieZamowienia
()
throws
DBException
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
OrderDAO
orderDAO
=
db
.
orderDAO
();
return
orderDAO
.
readAll
();
}
}
@WebResult
(
name
=
"order"
)
public
Order
odczytajJednoZamowienie
(
@WebParam
(
name
=
"id"
)
int
orderId
)
throws
DBException
,
RecordNotFound
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
OrderDAO
orderDAO
=
db
.
orderDAO
();
return
orderDAO
.
findById
(
orderId
);
}
}
@WebResult
(
name
=
"customer"
)
public
List
<
Customer
>
odczytajWszystkichKlientow
()
throws
DBException
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
CustomerDAO
customerDAO
=
db
.
customerDAO
();
return
customerDAO
.
readAll
();
}
}
@WebResult
(
name
=
"customer"
)
public
Customer
odczytajJednegoKlienta
(
@WebParam
(
name
=
"email"
)
String
email
)
throws
DBException
,
RecordNotFound
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
CustomerDAO
customerDAO
=
db
.
customerDAO
();
return
customerDAO
.
findByEmail
(
email
);
}
}
}
}
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