Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
2
20230403
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
20230403
Commits
06304d20
Commit
06304d20
authored
Apr 25, 2023
by
Patryk Czarnik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Parametry
parent
b91f86e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
0 deletions
+50
-0
Parametry.java
PC27-Hibernate/src/main/java/przyklady/Parametry.java
+50
-0
No files found.
PC27-Hibernate/src/main/java/przyklady/Parametry.java
0 → 100644
View file @
06304d20
package
przyklady
;
import
java.math.BigDecimal
;
import
java.util.List
;
import
java.util.Scanner
;
import
javax.persistence.EntityManager
;
import
javax.persistence.EntityManagerFactory
;
import
javax.persistence.Persistence
;
import
javax.persistence.TypedQuery
;
import
sklep.model.Product
;
public
class
Parametry
{
public
static
void
main
(
String
[]
args
)
{
// JPQL - Java (Jakarta) Persistence Query Language
EntityManagerFactory
emf
=
null
;
EntityManager
em
=
null
;
try
{
emf
=
Persistence
.
createEntityManagerFactory
(
"sklep"
);
em
=
emf
.
createEntityManager
();
Scanner
scanner
=
new
Scanner
(
System
.
in
);
System
.
out
.
print
(
"Podaj cenę minimalną: "
);
BigDecimal
min
=
scanner
.
nextBigDecimal
();
System
.
out
.
print
(
"Podaj cenę maksymalną: "
);
BigDecimal
max
=
scanner
.
nextBigDecimal
();
TypedQuery
<
Product
>
query
=
em
.
createQuery
(
"SELECT p FROM Product p WHERE p.price BETWEEN :minimum AND :maximum ORDER BY p.price DESC"
,
Product
.
class
);
query
.
setParameter
(
"minimum"
,
min
);
query
.
setParameter
(
"maximum"
,
max
);
List
<
Product
>
products
=
query
.
getResultList
();
for
(
Product
product
:
products
)
{
// System.out.println(product);
System
.
out
.
println
(
product
.
getProductName
()
+
" za cenę "
+
product
.
getPrice
());
}
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
}
finally
{
if
(
em
!=
null
)
em
.
close
();
if
(
emf
!=
null
)
emf
.
close
();
}
}
}
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