添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams
   public String makeLoginJSON(LoginDetails user) {
    String FinalJson = null;
    Gson gson = new Gson();
    FinalJson = gson.toJson(user);      
    return FinalJson;       
                it is accessible, please try to update maven dependencies, if it doesn't work, please try to remove the package from you local maven repository and force it to download again. Try it with a new version could work too.
– Francisco Spaeth
                Jul 9, 2012 at 20:37
                you can try explicitly setting the scope of the dependency to 'compile' but i think it should be that by default.  Unless that has been overwritten elsewhere in your setup
– Dave
                Jul 9, 2012 at 20:40

I have edited my comment and added the scope. The default scope is compile, meaning that the dependency is not present at runtime. For this, you use the provided scope. More about scopes in maven dependencies on Apache's Introduction to Maven Dependencies.

Hope this resolves your issue.

P.S.: if you are creating your own repository, you should also take a look here.

Eclipse is not giving me any error...I can do "import com.google.gson.Gson;" – Fox Jul 9, 2012 at 21:01 Did you try to manually add the Gson library to the classpath of the project? So that you get an idea whether it is a problem concerning Maven or not. I am thinking that most probably it is a classpath problem, although Maven should teoretically resolve that (see this: stackoverflow.com/questions/4961336/… ) – Raul Rene Jul 10, 2012 at 6:55

Just a clarification on Raul's answer - good that it works for you, but provided is for dependencies that are expected to be available from the JRE/JDK, ie servlet classes. Compile is the default and should work in other people's cases, as gson isn't available from a JRE, instead it needs to be downloaded by maven. From http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope:

compile This is the default scope, used if none is specified. Compile dependencies are available in all classpaths of a project. Furthermore, those dependencies are propagated to dependent projects.

provided This is much like compile, but indicates you expect the JDK or a container to provide the dependency at runtime. For example, when building a web application for the Java Enterprise Edition, you would set the dependency on the Servlet API and related Java EE APIs to scope provided because the web container provides those classes. This scope is only available on the compilation and test classpath, and is not transitive.

runtime This scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath.

This scope indicates that the dependency is not required for normal use of the application, and is only available for the test compilation and execution phases.

system This scope is similar to provided except that you have to provide the JAR which contains it explicitly. The artifact is always available and is not looked up in a repository.

import (only available in Maven 2.0.9 or later) This scope is only used on a dependency of type pom in the section. It indicates that the specified POM should be replaced with the dependencies in that POM's section. Since they are replaced, dependencies with a scope of import do not actually participate in limiting the transitivity of a dependency.

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.