Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 896659
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:45:45+00:00 2026-05-15T14:45:45+00:00

I work with .Net professionally in a lot of different contexts, so it’s easy

  • 0

I work with .Net professionally in a lot of different contexts, so it’s easy for me to read about new frameworks, runtime internals, advanced techniques/design and put them to use and understand them. In the Java world, I have limited experience and am really only working with it for Android development these days. I’ve been able to learn the language well enough to build out the functionality I’m looking for, but I want to learn more about good practices and design that the Java guys agree on, whatever modern frameworks everyone’s using, and more about the internals of the VM and how my programming choices affect how my code is compiled and executed.

Examples from the .Net world of what I’m looking for are

  1. There’s a series of books called Effective C# that outlines 50 items per book of subtle changes to your programming style and how they will make your code cleaner and more performant in specific scenarios.
  2. Entity Framework is a framework from Microsoft for hooking up directly to a data source and building out a configurable entity model automatically
  3. Managed Extensibility Framework is a new framework from Microsoft for writing extensible applications and pluggable libraries by exposing extension points on both ends
  4. There is documentation galore on the internet about how the .Net garbage collector works and how your programming choices affect how this interacts with your applications

What kinds of resources, books, tutorials and frameworks exist like this in the Java world?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T14:45:46+00:00Added an answer on May 15, 2026 at 2:45 pm

    There’s a book called Effective Java too.

    There are different categories of data binding in Java. The most advanced are the Object models, like JDO, JPA, etc. They basically use a map to move data from objects to tables, and you never touch database directly as it is all handled transparently. Another is the typical “object binds to a row” technique, of which JDO is a good example. Finally, there is handling the database directly, which you use JDBC. Use the tool most appropriate to your code logic.

    In general, you’ll find that with Java it’s not a “one solution only” environment. Some of the problems have been solved multiple times in different ways to achieve different results.

    It sounds like “Managed Extensibility Framework” is a subtle copy of the J2EE server concept. J2EE has undergone at least three major revisions over the past decade. If you want to use J2EE, remember that it provides services to items within wrappers called “containers”. This means you will have to adapt your code to meet the container service agreements. There is a bit of up-front learning involved, but once you understand the environment it isn’t hard. You also don’t need to use the entire J2EE environment and you can embed your own solutions to those provided by the J2EE server. It’s a pick and choose type arrangement, precious little is forced on you.

    J2EE also describes a lot of corporate technologies that may live independently of a J2EE server, so if you don’t like the J2EE environment (for whatever reason) you can always include the JAR files and use the libraries without the J2EE server.

    Some people have decided that the initial J2EE servers were too restrictive, so you have an almost-J2EE server called Spring. The J2EE web containers arrived pretty early on the scene in Java, so you can get “web container only” servers, like Tomcat or Jetty.

    With Java, there is probably even more documentation about the garbage collector, but you have to deal with it’s behaviour less. Java’s garbage collector is generally much better behaved, and it doesn’t have to deal with pointer support which partially makes .net’s garbage collector something you do need to tend to from time to time.

    That said, dereference anything you want collected. If the logic stores items in a HashMap as a cache, consider using SoftReferences, which will not be considered as references in garbage collection. Java doesn’t reference count, so don’t worry about circular references, you can dereference a cycle of references and they will all be collected.

    The algorithm the GC uses changes depending on memory availability. In low memory utilization situations, it will copy live objects to a new page and free the old page (so compaction is obtained nearly for free. In higher memory situations, it uses a mark, sweep, and compact cycle typical of other garbage collectors. It also stages it’s memory in three generational segments to order object by the frequency they should be checked for usage in the current running program.

    All of that said, the real kicker is that Android uses the Java language, but it doesn’t run a JVM. It runs an “I-can’t-believe-it’s-not-Java!” JVM-work alike that makes significant changes to the class loader and class file format. That means that you need to learn how the Davlik Virtual Machine operates and differs from the JVM.

    Have fun! There is a lot more choice in Java land that you’re probably accustomed to; however, many of the most popular Java tools have been ported to .net land, so you won’t find the entire landscape foreign.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Our codebase where I work is .NET 2.0. For our new assembly/DLLs/web applications I
http://steph.net23.net/work.php here is my test link. This page has a jquery script in it
work on asp.net vs 05 C#.Master page header contain the bellow code <script type=text/javascript
Work on asp.net vs05. I have three type of value Like:IsDesign,IsPrinting,IsInstall they are bit
I work on Asp.Net VS08 C#. Clicking on Button want to show popup. popup
(I work in asp.net) I'm looking for a way to have a div with
I currently do all development work in VB.NET 2008, winforms; but within 18 months
I cannot get Bindable LINQ to work with VB.NET for the life of me.
I am having trouble getting the ODP.NEt library to work with the .NET DBProviderFactories.
how can i find the version of my .net frame work

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.