Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

50%
+0 −0
Q&A Maven JPA integration: processor not found

You say this is a personal project. I am sure you were free to chose the technology. I ask, because Java, annotations and Mvn are good tools for some requirements, but not necessarily the most eas...

posted 1mo ago by oucqjodvpqepaiwc‭  ·  edited 1mo ago by oucqjodvpqepaiwc‭

Answer
#4: Post edited by user avatar oucqjodvpqepaiwc‭ · 2024-03-26T20:33:54Z (about 1 month ago)
  • You say this is a personal project. I am sure you were free to chose the technology.
  • I ask, because Java and Mvn are good tools for some requirements, but not necessarily the most easy, elegant or efficient ones... it depends.
  • What exactly is the use of your annotation processors in Java? Is it learning Java (then you are doomed), or building something like... a text editor, a compiler, a game etc.?
  • You say this is a personal project. I am sure you were free to chose the technology.
  • I ask, because Java, annotations and Mvn are good tools for some requirements, but not necessarily the most easy, elegant or efficient ones for everything... it depends.
  • What exactly is the use of your annotation processors in Java? Is it learning Java annotations (then you are doomed), or building something like... a text editor, a compiler, a game etc.?
  • Can you avoid annotations altogether? They are again good for certain use cases, but bring a heavy debt: the code is much less readable, as the implementation of the annotation is... somewhere else. They are not good for themselves; at most a necessary evil: avoid if you can.
  • Same goes for Maven: the version management is fantastic; but if you don't need that, you'll be better off with a more transparent build system, where YOU understand exactly what it does.
#3: Post edited by user avatar oucqjodvpqepaiwc‭ · 2024-03-26T20:26:23Z (about 1 month ago)
  • You say this is a personal project. I am sure you were free to chose the technology.
  • I ask, because Java and Mvn are good tools for some requirements, but not necessarily the most easy, elegant or efficient ones... it depends.
  • What exactly is the use of your annotation processors in Java? Is it learning Java (the you are doomed), or building something like... a text editor, a compiler, a game etc.?
  • You say this is a personal project. I am sure you were free to chose the technology.
  • I ask, because Java and Mvn are good tools for some requirements, but not necessarily the most easy, elegant or efficient ones... it depends.
  • What exactly is the use of your annotation processors in Java? Is it learning Java (then you are doomed), or building something like... a text editor, a compiler, a game etc.?
#2: Post edited by user avatar oucqjodvpqepaiwc‭ · 2024-03-26T20:25:54Z (about 1 month ago)
  • You say this is a personal project. I am sure you were free to chose the technology. What is your project about and why exactly did you Java+Mvn? What else did you consider?
  • These are very good tools for special few things. There are other, less masoquistic tools out there, that might not fulfill your requirements though.
  • You say this is a personal project. I am sure you were free to chose the technology.
  • I ask, because Java and Mvn are good tools for some requirements, but not necessarily the most easy, elegant or efficient ones... it depends.
  • What exactly is the use of your annotation processors in Java? Is it learning Java (the you are doomed), or building something like... a text editor, a compiler, a game etc.?
#1: Initial revision by user avatar oucqjodvpqepaiwc‭ · 2024-03-26T20:20:19Z (about 1 month ago)
You say this is a personal project. I am sure you were free to chose the technology. What is your project about and why exactly did you Java+Mvn? What else did you consider?

These are very good tools for special few things. There are other, less masoquistic tools out there, that might not fulfill your requirements though.