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.

Comments on How to choose backend technology for my project?

Parent

How to choose backend technology for my project?

+7
−0

I am planning to build a "Customer Management Portal" as a hobby project using technologies like HTML,CSS,JavaScript,JAVA,JDBC,Oracle Database.The description of the portal is:

1)Customer details registration.

2)Customer can login using an ID which he gets after registration.

3)Customer can update as well as delete his details whenever required.

4)An Admin can view customer details using his ID.

Since I am familiar with JAVA I prefer the above mentioned technologies, but there are other technologies like MEAN/MERN stack and backend languages like RUBY,Python,PHP etc. How to choose the backend technology suitable for my project.I mean how to analyse and do the tradeoffs.

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

General comments (1 comment)
Post
+4
−0

There are a lot of factors that can go in the choice of a language:

  • Do the properties of the language itself meet your requirements (e.g., C allows for more low-level optimizations than Visual Basic, Java is more type safe than python, go compiles faster than rust)
  • Are the libraries supported that you need?
  • Is tooling available for the language?
  • How familiar is everyone with the language?
  • Do we receive the right support for the language?

In your case, you have a hobby project and, I assume, you are the only person working on. For a simple website like that Java, PHP, Ruby, NodeJS, and Python are all valid options for what you want to do. Since you are already familiar with Java, this is an obvious choice, and I would only check if you already know about libraries you want to use that don't exist in Java.

There is nothing wrong with sticking with what you know, in this case. Of course you might want to learn another language to broaden your horizon. In that case I would first decide on the language you want to learn and then whether it would be an adequate alternative for your project.

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

General comments (5 comments)
General comments
aditya98‭ wrote over 3 years ago

@Peter I found that Codidact was written in Ruby. Could you tell some obvious reasons for using Ruby? also compare if it was written in java, please.

dmckee‭ wrote over 3 years ago

I’d add that the only way to know what kinds of effects language selection can have is to do some projects with varied languages. Don’t do those experiments on projects that others are counting on, so do try out new languages for smallish (but non-trivial) hobby projects.

Peter‭ wrote over 3 years ago

I am the wrong person to do a comparison of Java and Ruby, but I doubt that Ruby was chosen for Codidact for any other reason than personal preference of the person who started it.

Razetime‭ wrote over 3 years ago · edited over 3 years ago

@aditya98 People tend to use Ruby for the sole purpose of making a Rails app. Rails is widely used because it's not very hard to start with, easy to quickly host(Heroku), and has a wealth of learning resources. I suggest looking at some course material, learning some frameworks and finding out what works best for you. A few google searches about server-side performance comparisons would not hurt as well.

nalply‭ wrote over 3 years ago · edited over 3 years ago

Java tends to get verbose and projects written in it over-engineered (StrategyFactory? only in Java), but is wide-spread in the software industry. A rule for a manager is: It is never wrong to force Java for a project because there are many Java programmers, you can hire and fire them at will. Ruby is not as wide-spread. It's style is a lot conciser and flexibler, and with the motto "Convention over Configuration" this is true even for configuration.