AgentMime
JCHJava Community | Help. Code. Learn.
•Created by AgentMime on 12/4/2024 in #java-help
Mockito: mockStatic is underfined
No matter what I try I get the error "mockStatic(Class<FacesContext>) is undefined for the type TestMainPage". I've tried several differnet combinations of dependencies. I'm using Eclipse and Maven. Here is what the dependency section of my POM currently looks like:
Here is my test code:
What am I missing? Could this be an Eclipse issue, a Maven issue, a Build Path issue? What else should I try?
5 replies
JCHJava Community | Help. Code. Learn.
•Created by AgentMime on 9/18/2024 in #java-help
Java Hibernate with Negative Enums
I'm using Hibernate for JPA for persisting objects to my database. One class has four possible statuses that I want to represent with an enum, and I want to use a negative status for DELETED for consistency with previous classes:
However, Hibernate doesn't like this and is throwing an exception:
Is there a simple way to tell Hibernate to allow the negative Enum value? Or do I have to use non-negative values?
13 replies