TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Who is using Java (JVM) in startups?

13 点作者 john_scotland3 个月前
Java and JVM languages (Kotlin, Scala, Clojure...) are widely used in Big tech companies and traditional companies. However, I am wondering if there are newly created startups building on top of JVM. I see everyone using Python, Golang or Ruby. But it seems that JVM is no longer picked. Even though there are a lot of AI libraries being created in the JVM ecosystem, like JLama or LangChain4j. Do you know any startup using it? Why did you choose it? Are you using GenAI?

10 条评论

mands3 个月前
Yes - best decision we made.<p>Running a new startup now and choose modern Java (JDK 21+) with Spring Boot and it&#x27;s been fantastic. Have previously built startups using both Haskell and Python&#x2F;Django in the past. Ignore the folks talking about it not being cool, heavy, boring or whatever - modern Java is just super nice and quick to work with.<p>Some positives we noted,<p>- &quot;good-enough&quot; integrated type system &amp; language features, e.g. immutable records, type inference, generics, sum and product types with exhaustive pattern matching, lambdas, streams (along with the new stream-gatherers). We feel the gain isn&#x27;t enough to switch to Kotlin anymore.<p>- Fantastic tooling, from IDEs, build systems, cloud integrations, remote debugging, settings configuration etc.<p>- Massive ecosystem - there are libraries for everything, and all major vendors, including cloud providers and most startups, have a Java SDK<p>- Spring Boot is a great framework, especially for API backends coming from Django - setting up things likes OAuth and OIDC was super easy. Spring AI is developing rapidly, for instance it got MCP support within a week or two of it being released<p>- Verbosity can be tamed with annotations processors, and Lombok if you desire (we do but understand some don&#x27;t like it). JSpecify helps with null-checking.<p>- Performance is great, you just don&#x27;t have to think about it at a startup scale, and Loom &#x2F; Virtual Threads makes it even easier to build performant web services without the mental overhead of building `async` systems<p>I could go on, and like all things there are of course negatives, but we took the plunge and have been really happy with it.
评论 #42893524 未加载
ha-shine3 个月前
I am using Kotlin with Quarkus for my healthtech startup (founded last year), mainly because it just works. JVM is a very optimised piece of software, and it can handle almost anything you throw at it. And I like writing Kotlin, which I think is more expressive compared to something like Go, while being less verbose than Java. Contrary to popular opinion of not touching ORMs, I use Hibernate, and it might be the best ORM available. None other ORM library comes close - but that&#x27;s just my opinion. Sure, I can handwrite SQL queries, but as a startup, my data schema is always changing and I don&#x27;t want to spend my time updating those raw queries when Hibernate can do it for me. I use it at my day job as well.
评论 #42899850 未加载
jpe7s3 个月前
Yes, using the latest version of Java to build the back-end services for an on-chain asset management platform, GLAM, on Solana.<p>Love Java because of how robust the JDK is with respect to Collections, Concurrency, IO and Cryptography. At the same time you can pick and choose exactly what modules you need to keep your application light weight. Also, I find Java has become more of a joy to write in recently as project Amber continues to release features every 6 months. (<a href="https:&#x2F;&#x2F;openjdk.org&#x2F;projects&#x2F;amber&#x2F;" rel="nofollow">https:&#x2F;&#x2F;openjdk.org&#x2F;projects&#x2F;amber&#x2F;</a>)<p>Outside of the base and java.net.http JDK modules, the only external library I rely on is Bouncy Castle for the ed25519 utilities it provides. Considering some of the services sign financial transactions, it is nice to be able to minimize the risk of a malicious take over of a 3rd party library.<p>Only using AI for generating some of the more manual labor code.<p>If you are interested in building on Solana in Java check out <a href="https:&#x2F;&#x2F;github.com&#x2F;sava-software&#x2F;sava">https:&#x2F;&#x2F;github.com&#x2F;sava-software&#x2F;sava</a> and <a href="https:&#x2F;&#x2F;docs.glam.systems" rel="nofollow">https:&#x2F;&#x2F;docs.glam.systems</a>
zoezoezoezoe3 个月前
I think as long as Java has a massive backing, more people are going to want to use Java and create a self-perpetuating cycle. Even if the frontend tech changes, like Java to Kotlin to Scala, etc, the backend will always be the same. The JVM is an amazing piece of software with a massive community behind it, and I dont see that changing anytime soon.
dakiol3 个月前
I worked for a startup that used Kotlin. The language itself is not that bad (if you ignore the engineers that want to use every single time all the features the language has to offer), but the ecosystem was awful. We were using Gradle, and Spring Boot: just too much magic for my taste. Gradle itself is a beast I never fully understood, and I don&#x27;t comfortable working with such tools (the Gradle userguide has over 1000 pages <a href="https:&#x2F;&#x2F;docs.gradle.org&#x2F;current&#x2F;userguide&#x2F;userguide.pdf" rel="nofollow">https:&#x2F;&#x2F;docs.gradle.org&#x2F;current&#x2F;userguide&#x2F;userguide.pdf</a>)<p>On the other hand, Go is a breath of fresh air; the tooling is simple and one can actually learn them in no time. There&#x27;s less magic, and so a bit more of repetition, but I can live with that.<p>I don&#x27;t see the advantage of having the JVM to be honest. I just don&#x27;t see why it would be needed in 2025 (the &quot;Write once, run anywhere&quot; is not relevant anymore).
评论 #42899862 未加载
评论 #42885368 未加载
justinram113 个月前
The startup that I work at had started as a project a contracting company had taken on, and they had chosen Java Spring Boot to handle their REST API backend back in 2020.<p>Although probably not the decision I would have made, it&#x27;s actually a pretty nice ecosystem that has scaled really well and been fairly easy to work with. Java 21 has _most_ of the QoL features that I like (I&#x27;d still really like a `?.` null operator that I can chain together) as well as the ability to reach for JPQL&#x2F;SQL easily with JpaRepositories when performance is needed.<p>It&#x27;s been fairly easy to onboard devs to the project even if they have not had previous experience with Java, and has maintained relatively decent code quality over the last 4 years.<p>I&#x27;m currently working on a LLM project for them that is being completed in Python, however, due to most of the tools being python-first and most of the LLM talent being python-first.
评论 #42864948 未加载
评论 #42864942 未加载
leros3 个月前
I&#x27;ve done some work for a startup that uses Java as well as some other Java related technologies you might consider outdated. Their founder is an older guy and wrote the MVP himself. But hey - it all works and does the job quite well.<p>You can create an API and query databases with just about anything.
george873 个月前
Great question! I know a couple of startups that are using it, and I am also using it as an independent consultant. It&#x27;s not optimal for every scenario, but you can&#x27;t really fail with it. You&#x27;ll just move slower (or work harder) if what you&#x27;re developing doesn&#x27;t align well with its ecosystem and ways of doing things.
ldjkfkdsjnv3 个月前
Big problem with Java in startups, its hard to do huge changes. The strong typing means you need to change a ton of code. Much easier to build off the cuff software in typescript. Really depends on what youre building though.
aristofun3 个月前
JVM is a heavy old begemoth. That is the core reason behind it not being popular among startups.<p>This doesn&#x27;t mean it&#x27;s bad (sometimes you need big gun, something mature and advanced), just out of many startups&#x27; immediate scope.
评论 #42868691 未加载