Like most browsers and operating systems, the Java Runtime Environment is shipped with a number of pre-trusted certificates from commercial (or sometimes governmental) Certificate Authorities (CA).
In the JRE, these are stored in the default trust store, as described in the JSSE Reference Guide (jssecacerts, if it exists. Otherwise, cacerts). It also says:
IMPORTANT NOTE: The JDK ships with a limited number of trusted root
certificates in the /lib/security/cacerts file. As
documented in keytool, it is your responsibility to maintain (that is,
add/remove) the certificates contained in this file if you use this
file as a truststore.
Depending on the certificate configuration of the servers you contact,
you may need to add additional root certificate(s). Obtain the needed
specific root certificate(s) from the appropriate vendor.
By default, you're effectively relying on your OS/browser/JRE vendor to have made a careful-enough selection of CAs. In most cases, you can choose to add or remove certain CAs (and thus change the default list). The business model of most commercial CAs (such as Go Daddy) relies on having their CA certificates bundled by default in as many places as possible. This way, users don't have to change the pre-trusted list of CAs.
When you issue your own certificates, you're effectively creating your own CA, therefore it won't be trusted by default: applications using it will need to be configured accordingly.