Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
java_dzienna_15_09
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_dzienna_15_09
Commits
ad1aea5f
Commit
ad1aea5f
authored
Oct 06, 2022
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Usługa Sklep - pierwsza metoda
parent
7b745c8a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
pom.xml
PC32-SoapSerwer/pom.xml
+7
-0
Sklep.java
PC32-SoapSerwer/src/main/java/sklep/soap/Sklep.java
+22
-0
No files found.
PC32-SoapSerwer/pom.xml
View file @
ad1aea5f
...
@@ -44,5 +44,11 @@
...
@@ -44,5 +44,11 @@
<artifactId>
jaxb-api
</artifactId>
<artifactId>
jaxb-api
</artifactId>
<version>
2.3.1
</version>
<version>
2.3.1
</version>
</dependency>
</dependency>
<dependency>
<groupId>
org.postgresql
</groupId>
<artifactId>
postgresql
</artifactId>
<version>
42.5.0
</version>
<scope>
runtime
</scope>
</dependency>
</dependencies>
</dependencies>
</project>
</project>
\ No newline at end of file
PC32-SoapSerwer/src/main/java/sklep/soap/Sklep.java
0 → 100644
View file @
ad1aea5f
package
sklep
.
soap
;
import
java.util.List
;
import
javax.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
>
odczytajWszystkieProdukty
()
throws
DBException
{
try
(
DBConnection
db
=
DBConnection
.
open
())
{
ProductDAO
productDAO
=
db
.
productDAO
();
return
productDAO
.
readAll
();
}
}
}
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