danishpirate
danishpirate
JCHJava Community | Help. Code. Learn.
Created by danishpirate on 2/27/2025 in #java-help
Rendering too resource-intensive
No description
16 replies
JCHJava Community | Help. Code. Learn.
Created by danishpirate on 2/14/2025 in #java-help
Springboot not serving webpage
@dan1st My Springboot app on a VM is not serving a webpage when I enter its ip and port into a browser, the browser loads and then times out. I have allowed connections on port 8080 in the firewall, but still does not work. I have confirmed it works locally. Do you have any ideas as to what the issue could be?
78 replies
JCHJava Community | Help. Code. Learn.
Created by danishpirate on 11/18/2022 in #java-help
Spring JPA
JPA problem:
@Entity @Setter @Getter @NoArgsConstructor
public class BicycleRider {
@Id
@GeneratedValue (strategy = GenerationType.IDENTITY)
private int id;
// timeInSeconds refers to the amount of time it took finish the three stages of the race represented in seconds.
private double timeInSeconds;
private int mountainPoints;
private int sprintPoints;
@ManyToOne (fetch = FetchType.LAZY)
@JoinColumn(name = "bicycleteam_id")
private BicycleTeam bicycleTeam;
}
@Entity @Setter @Getter @NoArgsConstructor
public class BicycleRider {
@Id
@GeneratedValue (strategy = GenerationType.IDENTITY)
private int id;
// timeInSeconds refers to the amount of time it took finish the three stages of the race represented in seconds.
private double timeInSeconds;
private int mountainPoints;
private int sprintPoints;
@ManyToOne (fetch = FetchType.LAZY)
@JoinColumn(name = "bicycleteam_id")
private BicycleTeam bicycleTeam;
}
I want to create a BicycleRiderobject and store it i my database; however, I need a BicycleTeam to associate it to. Do I need to need to create a BicycleTeamobject or do I need to do something else?
31 replies