today try to connect java to an LDAP using spring, when trying to start the class, in the console I get the following data
in the image indicates the following line
ERROR 9516 --- [main] o.a.catalina.core.AprLifecycleListener : An i...
This is my class FisicHost.java :
// Remove imports and getter / setters to make it shorter
@Entity
@Transactional
public class FisicHost {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@ManyToO...
I have an application in Spring which I need to authenticate with the active directory in azure and the only information I have obtained is to use spring boot I do not know how viable or what other options can be considered.
I have a project in spring which I must modify to authenticate with the active directory of microsoft azure.
My question is there is some way to do the process without using spring boot or how to migrate to spring boot to be able to do this proc...
Any help I can learn is more than welcome!
I have the following spawn, created by me:
I want to validate the checkboxes that are shown in the image next to each of the ice cream tastes.
Then create this form:
<!-- Modal -->...
When dealing with data of type Date I am having problems. On the server ( Spring Boot ) I am collecting a Date field from MySQL , and this information is correct in the Spring Boot Model when debugging. But if I see that call...
The credential is simply not deleted, what am I doing wrong?
I am debugging and the credential that I want to delete if it exists, more when it does the "delete" is not deleted.
Controller method:
@Autowired
private CredentialDao...
I had a very strange error, apparently I think it is the repository that is in the .m2, the problem is when I do a
"clean and build" at spring petclinic, send me an error from jacoco, any solution?
cd C:\Users\mi nombre\Desktop\FonBon-Funciona...
In most of the examples I have consulted about Spring with GraphQL, the resolvers communicate directly with the DAOs to obtain models.
Is it good practice to return the models directly in the resolvers, or should DTOs be returned?
Does the...
I need to obtain the attributes that an image has, that is, that image has a series of HTML elements in which it has the name, tags, date of creation, etc. and I need to obtain the value of those tags.