Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
javab_20230617
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
javab_20230617
Commits
42ab09b6
Commit
42ab09b6
authored
Jul 29, 2023
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dodatkowa wersja z DataSource
parent
21b5c472
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
2 deletions
+43
-2
ProductController_v0.java
...ep/alternatywne_dostepy_do_bazy/ProductController_v0.java
+36
-0
ProductController_v1.java
...ep/alternatywne_dostepy_do_bazy/ProductController_v1.java
+7
-2
No files found.
PC27-SklepSpring/src/main/java/sklep/alternatywne_dostepy_do_bazy/ProductController_v0.java
0 → 100644
View file @
42ab09b6
package
sklep
.
alternatywne_dostepy_do_bazy
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
java.sql.*
;
@Controller
@RequestMapping
(
"/alt0"
)
public
class
ProductController_v0
{
// W tej wersji samodzielnie nawiązuję połączenie z bazą
@GetMapping
(
produces
=
"text/plain;charset=UTF-8"
)
@ResponseBody
public
String
readAll
()
{
StringBuilder
sb
=
new
StringBuilder
(
"Lista produktów:\n"
);
try
(
Connection
c
=
DriverManager
.
getConnection
(
"jdbc:postgresql://localhost:5432/sklep"
,
"kurs"
,
"abc123"
);
Statement
stmt
=
c
.
createStatement
();
ResultSet
rs
=
stmt
.
executeQuery
(
"SELECT * FROM products ORDER BY product_id"
))
{
while
(
rs
.
next
())
{
sb
.
append
(
"* produkt "
)
.
append
(
rs
.
getString
(
"product_name"
))
.
append
(
" za cenę "
)
.
append
(
rs
.
getBigDecimal
(
"price"
))
.
append
(
'\n'
);
}
}
catch
(
SQLException
e
)
{
e
.
printStackTrace
();
sb
.
append
(
"Błąd: "
).
append
(
e
);
}
return
sb
.
toString
();
}
}
PC27-SklepSpring/src/main/java/sklep/alternatywne_dostepy_do_bazy/ProductController_v1.java
View file @
42ab09b6
package
sklep
.
alternatywne_dostepy_do_bazy
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
javax.sql.DataSource
;
import
java.sql.*
;
@Controller
@RequestMapping
(
"/alt1"
)
public
class
ProductController_v1
{
@Autowired
private
DataSource
dataSource
;
// W tej wersji Spring dostarcza nam obiekt DataSource na podstawie konfiguracji w pliku application.properties
@GetMapping
(
produces
=
"text/plain;charset=UTF-8"
)
@ResponseBody
public
String
readAll
()
{
StringBuilder
sb
=
new
StringBuilder
(
"Lista produktów:\n"
);
try
(
Connection
c
=
DriverManager
.
getConnection
(
"jdbc:postgresql://localhost:5432/sklep"
,
"kurs"
,
"abc123"
);
try
(
Connection
c
=
dataSource
.
getConnection
(
);
Statement
stmt
=
c
.
createStatement
();
ResultSet
rs
=
stmt
.
executeQuery
(
"SELECT * FROM products ORDER BY product_id"
))
{
...
...
@@ -28,7 +33,7 @@ public class ProductController_v1 {
}
}
catch
(
SQLException
e
)
{
e
.
printStackTrace
();
sb
.
append
(
"Błąd: "
+
e
);
sb
.
append
(
"Błąd: "
).
append
(
e
);
}
return
sb
.
toString
();
}
...
...
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