I'm with a basic project of a phone book with a series of data in which there are a series of requirements.
Spring boot
Thymeleaf
mySql
jpa
The project is advanced but I find the following problem, users must have a province from...
I am trying to add to my project (use Spring 5.0.2, Spring-data-jpa 2.0.5 and Hibernate 5.2.14) a new annotation that allows me to obtain the date directly from the database (Postgresql) instead of the VM.
For this, I have taken as my base th...
I've been trying to migrate an application from Tomcat 8.0.27 to Tomcat 9.0.12 to start using HTTPS / 2. The application has Spring 5.0 framework, these are the libraries I am using:
<!-- https://mvnrepository.com/artifact/org.springframewo...
It's been 2 days without being able to solve this and I see no other recourse here, the problem is that I try to upload the image to server with the java spring framework and place the path of its location in the database, but when sending it I...
I try to perform a service to send emails from my application. I have the Bean configured as follows:
<bean id="mailSender" class ="org.springframework.mail.javamail.JavaMailSenderImpl" >
<property name="host" value="smtp.gmai...
I am trying to insert a consumer in a consumer table from my CreateUserController. From that CreateUserController class I get the attributes to save my consumer in the database.
This is my CreateUserControler class
import javafx.event.Actio...
Good evening community.
Well, I've been breaking my head with this issue for several days, it happens that I'm using Apache wss4j to ensure by means of certificates the calls to a set of web services in SOAP.
This configuration I'm doing thro...
I send the following Request
{
"name":"juan",
"lastname":"caviedes",
"email":"[email protected]",
"password":"12345678q",
"areaid":"13",
"profileid":"2"
}
I have the class to map the object.
public class SingUpRe...
I am new to this from Spring, I have made an application everything works fine, except that although the list in the controller is full, it does not show the values in the jsp.
@Controller
public class DBUserController {
@Autowired
pr...
I have three combos, which when loading the page combos 2 and 3 are disabled, until you select an option of combo 1 activates 2, and when choosing combo 2, activates 3.
What I want is to recover the value of the option that has been chosen an...