Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
How is Mockito used by Java Developers at entry level ?If yes where
Is it important for coding or just related to testing part ?
Mockito is used only for testing, and it is usually used with JUnit to provide mocks for dependencies. This means you are able to unit test a class / method, without having to rely on the actual implementation of other dependencies, classes, or services, especially if they are not yet available.
More details here: https://site.mockito.org/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 9 months ago.
Improve this question
I was reading the JNI spec and saw the reflection support methods section.
I don't quite understand what they are used for or what's the intended purpose. Since method ID is looked up using name and signature, don't we already have that information? And if we want to get more details, we can always write a java wrapper. So that cannot be the purpose I thought.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I would like to create CMS in JavaEE. I want use graph database. Which graph database is good for this purpose? What do you recommend? I seek free/open source graph database.
I can personally encourage you to use neo4j - http://neo4j.com/. It's new, quite simple, easy to use on Java and has quite good documentation. Although be aware of some minor issues (like an application crashing occasionaly when used heavily).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am working on a big project with a complex codebase written in java. I want to understand a particular piece of code and i thought getting a sequence diagram of the entry point method would give me a good idea. I use intelliJ and i looked for a plugin which could do this and i found 'SequencePlugin' but unfortunately it is not working in intelliJ 8.1.4. Can i achieve what i am trying to in any other way? Is there a standard approach to follow when trying to understand a complex codebase other than by debugging?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Can I get recommendations of free and easy tool(s) that can generate JUnit tests based on existing code?
Either as a stand-alone application or pref. an Eclipse-plugin.
Well, depends on what do you need your tests for...
If just to have tests coverage and basic behavior tested - then yes, use can use test generators.
If you are serious about the project and plan to expend it, see the future of the project - then it would be really better to create good unit tests in traditional way.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am looking for a framework to turn given Java class into WebService (may be with some limitations on method parameters etc)
Thanks
You can use axis2, or xfire. I'm sure there are other ways also, but these are the two that I've used.
The de-facto standard for this is Apache Axis: http://ws.apache.org/axis/ and http://ws.apache.org/axis2/