diff --git a/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java b/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java index 13c4877528..ddddc781c5 100644 --- a/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java +++ b/spring-security-oauth/src/main/java/org/baeldung/config/WebConfig.java @@ -86,7 +86,7 @@ public class WebConfig extends WebMvcConfigurerAdapter { @Bean public RedditClassifier redditClassifier() throws IOException { - final Resource file = new ClassPathResource("train.csv"); + final Resource file = new ClassPathResource("data.csv"); final RedditClassifier redditClassifier = new RedditClassifier(); redditClassifier.trainClassifier(file.getFile().getAbsolutePath()); return redditClassifier; diff --git a/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditClassifier.java b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditClassifier.java index c6cc99933f..7473dea865 100644 --- a/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditClassifier.java +++ b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditClassifier.java @@ -26,12 +26,12 @@ public class RedditClassifier { public static int GOOD = 0; public static int BAD = 1; public static int MIN_SCORE = 10; - public static int NUM_OF_FEATURES = 1000; private final AdaptiveLogisticRegression classifier; private final FeatureVectorEncoder titleEncoder; private final FeatureVectorEncoder domainEncoder; private CrossFoldLearner learner; + private final int noOfFeatures; private double accuracy; private final int[] trainCount = { 0, 0 }; @@ -41,7 +41,8 @@ public class RedditClassifier { private final int[] correctCount = { 0, 0 }; public RedditClassifier() { - classifier = new AdaptiveLogisticRegression(2, NUM_OF_FEATURES, new L2()); + noOfFeatures = 1000; + classifier = new AdaptiveLogisticRegression(2, 1000, new L2()); classifier.setPoolSize(150); titleEncoder = new AdaptiveWordValueEncoder("title"); titleEncoder.setProbes(2); @@ -49,11 +50,22 @@ public class RedditClassifier { domainEncoder.setProbes(1); } + public RedditClassifier(int poolSize, int noOfFeatures) { + this.noOfFeatures = noOfFeatures; + classifier = new AdaptiveLogisticRegression(2, noOfFeatures, new L2()); + classifier.setPoolSize(poolSize); + titleEncoder = new AdaptiveWordValueEncoder("title"); + titleEncoder.setProbes(1); + domainEncoder = new StaticWordValueEncoder("domain"); + domainEncoder.setProbes(1); + } + public void trainClassifier(String fileName) throws IOException { final List vectors = extractVectors(readDataFile(fileName)); - final int noOfTraining = (int) (RedditDataCollector.DATA_SIZE * 0.8); + final int size = vectors.size(); + final int noOfTraining = (int) (size * 0.8); final List trainingData = vectors.subList(0, noOfTraining); - final List testData = vectors.subList(noOfTraining, RedditDataCollector.DATA_SIZE); + final List testData = vectors.subList(noOfTraining, size); int category; for (final NamedVector vector : trainingData) { category = (vector.getName() == "GOOD") ? GOOD : BAD; @@ -61,11 +73,12 @@ public class RedditClassifier { trainCount[category]++; } System.out.println("Training count ========= Good = " + trainCount[0] + " ___ Bad = " + trainCount[1]); + System.out.println("----------------------------------------------------------------- \n"); evaluateClassifier(testData); } public Vector convertPost(String title, String domain, int hour) { - final Vector vector = new RandomAccessSparseVector(NUM_OF_FEATURES); + final Vector vector = new RandomAccessSparseVector(noOfFeatures); final List words = Splitter.onPattern("\\W").omitEmptyStrings().splitToList(title); vector.set(0, hour); vector.set(1, words.size()); @@ -105,10 +118,10 @@ public class RedditClassifier { wrong++; } } - System.out.println("Eval count ========= Good = " + evalCount[0] + " ___ Bad = " + evalCount[1]); - System.out.println("Test result ======== Correct prediction = " + correct + " ----- Wrong prediction = " + wrong); - System.out.println("Test result ======== Correct Good = " + correctCount[0] + " ----- Correct Bad = " + correctCount[1]); - System.out.println("Test result ======== Good accuracy = " + (correctCount[0] / (evalCount[0] + 0.0)) + " ----- Bad accuracy = " + (correctCount[1] / (evalCount[1] + 0.0))); + System.out.println("Eval count =================== Good = " + evalCount[0] + " ----- Bad = " + evalCount[1] + "\n"); + System.out.println("Overall Evaluation ============= Correct prediction = " + correct + " ----- Wrong prediction = " + wrong); + System.out.println("Correctly Evaluated =========== Correct Good = " + correctCount[0] + " ----- Correct Bad = " + correctCount[1]); + System.out.println("Correctly Evaluated (%) ======== Good accuracy = " + (correctCount[0] / (evalCount[0] + 0.0)) + " ----- Bad accuracy = " + (correctCount[1] / (evalCount[1] + 0.0))); this.accuracy = correct / (wrong + correct + 0.0); } @@ -133,7 +146,7 @@ public class RedditClassifier { private NamedVector extractVector(String line) { final String[] items = line.split(","); final String category = extractCategory(Integer.parseInt(items[0])); - final NamedVector vector = new NamedVector(new RandomAccessSparseVector(NUM_OF_FEATURES), category); + final NamedVector vector = new NamedVector(new RandomAccessSparseVector(noOfFeatures), category); final Calendar cal = Calendar.getInstance(TimeZone.getTimeZone("GMT")); cal.setTimeInMillis(Long.parseLong(items[1]) * 1000); diff --git a/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditDataCollector.java b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditDataCollector.java index 07315cac59..2d446df12c 100644 --- a/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditDataCollector.java +++ b/spring-security-oauth/src/main/java/org/baeldung/reddit/classifier/RedditDataCollector.java @@ -16,8 +16,8 @@ import com.google.common.base.Joiner; import com.google.common.base.Splitter; public class RedditDataCollector { - public static final String TRAINING_FILE = "src/main/resources/train.csv"; - public static final int DATA_SIZE = 8000; + public static final String DATA_FILE = "src/main/resources/data.csv"; + public static final int DATA_SIZE = 20000; public static final int LIMIT = 100; public static final Long YEAR = 31536000L; private final Logger logger = LoggerFactory.getLogger(getClass()); @@ -45,10 +45,11 @@ public class RedditDataCollector { public void collectData() throws IOException { final int noOfRounds = DATA_SIZE / LIMIT; timestamp = System.currentTimeMillis() / 1000; - final FileWriter writer = new FileWriter(TRAINING_FILE); + final FileWriter writer = new FileWriter(DATA_FILE); writer.write("Score, Timestamp in utc, Number of wrods in title, Title, Domain \n"); for (int i = 0; i < noOfRounds; i++) { getPosts(writer); + System.out.println(i); } writer.close(); } diff --git a/spring-security-oauth/src/main/resources/data.csv b/spring-security-oauth/src/main/resources/data.csv new file mode 100644 index 0000000000..b33f8399f8 --- /dev/null +++ b/spring-security-oauth/src/main/resources/data.csv @@ -0,0 +1,12368 @@ +Score, Timestamp in utc, Number of wrods in title, Title, Domain +3,1429605825,16,Glassfish 4 1 does not start in latest Yosemite 10 10 3 update a temporary fix,medium.com +4,1429602307,14,YouTube NetBeans Days Greece in 3 Minutes Geertjan s Blog Sun Sea and Software,blogs.oracle.com +44,1429601802,7,A curated list of awesome Java frameworks,github.com +4,1429601103,6,Result Set Mapping Constructor Result Mappings,thoughts-on-java.org +3,1429580624,18,what could be a fun interesting project for implementing concurrency amp multithreading related to web dev in java,self.java +16,1429564214,9,CORS in Java EE with CDI and JAX RS,medium.com +8,1429562990,10,Java Weekly 17 15 Java stats caching and JPA productivity,thoughts-on-java.org +1,1429558255,5,jQAssistant 1 0 0 released,jqassistant.org +0,1429557187,7,Avoid null Use an Optional type instead,sleepeasysoftware.com +0,1429552766,8,What is getting inverted in Inversion of Control,vinothonsoftware.com +118,1429535432,7,The meaning of double tilde in Java,stackoverflow.com +9,1429534712,9,A basic implementation of basic access authentication using JASPIC,jdevelopment.nl +11,1429512417,5,Reduce operation in Java 8,vinothonsoftware.com +12,1429506026,4,Rolling out formatting standards,self.java +0,1429491314,12,How do I store 1 4 digits in a 4 digit number,self.java +7,1429470996,13,Crosspost from r rails Bounty for Help with Jruby jbdc postgres ActiveRecord adapter,bountysource.com +0,1429462342,5,What software can I write,self.java +0,1429456393,1,Java,self.java +20,1429447083,5,Recommended book for OOP exercises,self.java +32,1429442911,9,Download Oracle Java JRE amp JDK using a script,ivan-site.com +11,1429419570,10,Spring From the Trenches Returning Git Commit Information as JSON,petrikainulainen.net +9,1429369865,13,Apache Maven JavaDoc Plugin Version 2 10 3 Released Karl Heinz Marbaise 2,maven.40175.n5.nabble.com +33,1429369782,6,Apache Commons Math 3 5 released,mail-archives.apache.org +14,1429369742,8,Apache Fortress Core 1 0 RC40 released RBAC,mail-archives.apache.org +17,1429353784,15,Generate Heroku like random names to use in your Java applications github com atrox haikunatorjava,github.com +1,1429346987,4,How Pattern compile works,self.java +5,1429308638,4,Introduction to OmniFaces presentation,slideshare.net +5,1429302927,14,Anyone know of a good Java library that does efficient intersection operations on SortedSets,self.java +57,1429298310,13,Why is StringBuilder append int faster in Java 7 than in Java 8,stackoverflow.com +49,1429287731,10,Google Chrome dropping support for NPAPI ending Java applet support,blog.chromium.org +21,1429282959,9,Comment from James Gosling on multi language VM 1995,mail.openjdk.java.net +18,1429281132,9,How to make MIDI sound awesome in the JVM,daveyarwood.github.io +88,1429277913,12,Byte code features that are not available in the Java programming language,stackoverflow.com +0,1429277774,4,Your Staging Environment Sucks,blog.takipi.com +2,1429277368,3,Integration test framework,self.java +1,1429272573,5,Getting Rid Of Anonymous Classes,blog.codefx.org +7,1429266262,5,JBoss EAP 6 4 released,access.redhat.com +4,1429266112,3,Introducing WebPageTest mapper,cruft.io +9,1429265731,10,A Look at the Ehcache Storage Tier Model with Offheap,voxxed.com +4,1429263776,4,Baeldung Weekly Review 16,baeldung.com +8,1429258592,4,JSF vs other frameworks,jsf.zeef.com +11,1429258004,5,PrimeFaces Spark Gets New Colors,blog.primefaces.org +1,1429246603,21,Learning Java and trying to finish headfirst by summer July I m looking for a 1 on 1 helper a Sensei,self.java +1,1429224557,43,java I have no programming experience and I am taking an Object Oriented Programming Java class in July What resources are available to me to help me learn as much as I can between now and July to go smoothly into the class,self.java +5,1429224075,7,jackson json pointers aka xpath for json,tools.ietf.org +6,1429219046,9,Programming Design Patterns Tutorial Series X POST r learnprogramming,self.java +108,1429215807,12,Oracle to end publicly available security fixes for Java 7 this month,infoworld.com +5,1429213264,9,4 Worthy Tools For Building iOS Apps in Java,geekswithblogs.net +3,1429209404,22,SimpleFlatMapper v1 8 0 a very fast micro orm csv parser mapper now with Optional Java8 time and static factory method instantiation,github.com +7,1429208592,14,Spring Session 1 0 1 introduces AWS Elasticache Servlet 3 1 2 5 support,spring.io +8,1429208402,5,Hazelcast Simulator 0 4 Released,dzone.com +4,1429201636,2,Copyright question,self.java +18,1429199342,9,The long strange life death and rebirth of Java,itworld.com +19,1429199331,3,Ryan vs James,mountsaintawesome.com +5,1429195118,7,Java 8 Optional Explained in 5 minutes,blog.idrsolutions.com +7,1429195095,10,A beginner s guide to Java Caches Ehcache Hazelcast Infinispan,labs.consol.de +0,1429191706,8,Spring Enable annotation writing a custom Enable annotation,java-allandsundry.com +35,1429189873,4,Human JSON for Java,github.com +0,1429187329,5,Experience with Salesforce REST API,self.java +12,1429184451,4,jClarity Java 9 REPL,jclarity.com +1,1429182871,9,Spring integration Java DSL 1 1 M1 is available,spring.io +6,1429177459,4,KISS With Essential Complexity,techblog.bozho.net +8,1429173051,13,How to debug java applications which may fail during runtime in production environments,self.java +5,1429165619,10,How to Contribute to the Java Platform The Java Source,blogs.oracle.com +1,1429164811,13,OT Does the word Acegi the old name for Spring Securty mean anything,self.java +1,1429136945,9,Rules that can help you write better unit tests,schibsted.pl +0,1429134579,8,Small but useful overview of JAX RS resources,jax-rs.zeef.com +5,1429133011,4,JPA Inheritance Strategies Explained,monkeylittle.com +28,1429125035,7,Why non programmers hate the Java runtime,imgur.com +296,1429120425,6,Java reference in GTA V Beautiful,imgur.com +6,1429118139,8,How to Create and Verify JWTs in Java,stormpath.com +7,1429109253,6,Java CPU and PSU Releases Explained,oracle.com +4,1429104517,7,Most popular Java EE containers 2015 edition,plumbr.eu +11,1429097422,13,No language before or after Java ever abused annotations as much as Java,blog.jooq.org +111,1429085023,14,We analyzed 60 678 Java Library Dependencies on Github Here are the Top 100,blog.takipi.com +6,1429084064,4,Hibernate and UUID identifiers,vladmihalcea.com +2,1429083973,11,Using Apache Kafka for Integration and Data Processing Pipelines with Spring,spring.io +7,1429070871,9,J Compile and Execute Java Scripts in One Go,github.com +6,1429048921,6,Apache Tomcat 7 0 61 released,mail-archives.apache.org +7,1429047999,6,Fast Track D 8 week course,self.java +2,1429042868,9,Spring Technology at Cloud Foundry Summit May 11 12,spring.io +5,1429041882,6,Oracle Critical Patch Update April 2015,oracle.com +76,1429035317,8,Java is back at the top of Tiobe,tiobe.com +9,1429021091,9,Agenda for this weekends free NetBeans Day in Greece,netbeans.dzone.com +0,1429017927,9,College student in need of a Java job Help,self.java +3,1429012469,4,Engineering Concurrent Library Components,youtube.com +9,1429011763,10,How do we access secure web services in Java Program,vinothonsoftware.com +1,1429010860,18,NoCombiner for when you re absolutely certain you don t want to collect reduce a stream in parallel,self.java +0,1429009976,11,jOOQ Tuesdays Vlad Mihalcea Gives Deep Insight into SQL and Hibernate,blog.jooq.org +16,1429009905,5,Result Set Mapping Complex Mappings,thoughts-on-java.org +2,1429008284,11,How to go about this reddit getting spammed with help requests,self.java +15,1429006660,9,Java EE Security API JSR 375 Update The Aquarium,blogs.oracle.com +7,1428986485,7,Key signature detection of an mp3 file,self.java +12,1428954202,9,Spring From the Trenches Returning Runtime Configuration as JSON,petrikainulainen.net +1,1428952664,4,Drag and dropping data,self.java +3,1428940004,15,Version 0 3 of static mustache templating engine with is released Layouts are now supported,github.com +0,1428937602,12,Spring Example Blueprint project that showcases some more advanced features good practices,self.java +11,1428932531,8,A Java EE Startup Getting Lucky With DreamIt,adam-bien.com +8,1428926155,13,Genson 1 3 released Better Json support for Jodatime Scala Jaxb and JaxRS,self.java +23,1428915977,5,PrimeFaces finally moved to GitHub,blog.primefaces.org +4,1428884317,4,hibernate logging with slf4j,self.java +0,1428874572,5,Learn the Basics of Java,youtube.com +1,1428874267,6,Spring Framework Today Past and Future,infoq.com +3,1428874070,7,Java Community Release First OpenJDK Coverage Numbers,infoq.com +60,1428874015,4,Maven Escapes from XML,infoq.com +13,1428873920,7,AssertJ core 2 0 0 testing exceptions,joel-costigliola.github.io +10,1428871386,8,Storytelling with tests 1 test names and granularity,blog.kaczmarzyk.net +0,1428859230,4,Java Game Development Tutorial,youtube.com +0,1428852941,8,Need help with running webapp Willing to pay,self.java +1,1428810377,5,Is Clean Code less Code,journeytomastery.net +22,1428796303,6,CERT Oracle Coding Standard for Java,securecoding.cert.org +5,1428793781,6,Jenkins Security Advisory 2015 03 23,wiki.jenkins-ci.org +1,1428786090,4,Using JSOUP on Amazon,self.java +9,1428770588,6,Admin interface for Spring Boot applications,github.com +9,1428763128,11,Liberty beta includes Java EE 7 full profile nearly done now,developer.ibm.com +96,1428761176,17,A UK university is offering this free online course for learning to program a game in java,futurelearn.com +15,1428759625,6,Apache Commons Lang 3 4 released,mail-archives.apache.org +13,1428746118,14,ST JS Strongly Typed JavaScript Borrowing Java s syntax to write type safe JavaScript,st-js.github.io +14,1428694375,5,JSF page templates with Facelets,andygibson.net +1,1428682099,2,GOTO library,self.java +0,1428678809,6,System close with included jar files,self.java +0,1428665744,7,SparkJava Dependency injection in SparkApplication using Spring,deadcoderising.com +1,1428662794,4,Baeldung Weekly Review 15,baeldung.com +1,1428660541,6,SENTIMENT ANALYSIS USING OPENNLP DOCUMENT CATEGORIZER,technobium.com +11,1428658232,6,Getting started with Liberty and Arquillian,developer.ibm.com +8,1428655530,10,Is there a library with a PID controller in Java,self.java +42,1428655020,7,Stock market prediction using Neuroph neural networks,technobium.com +13,1428653081,7,SimpleDateFormat is not parsing the milliseconds correctly,stackoverflow.com +45,1428651658,10,How Spring achieves compatibility with Java 6 7 and 8,spring.io +4,1428607477,6,JSF 2 3 milestone 2 released,java.net +87,1428599706,5,Jenkins says Good bye Java6,jenkins-ci.org +3,1428599034,8,How does Hibernate store second level cache entries,vladmihalcea.com +3,1428587411,13,CDI Properties is now more flexible and production ready v1 1 1 released,github.com +0,1428585594,9,Top 10 Open Source Java and JavaEE Application Servers,blog.idrsolutions.com +57,1428575462,16,Is Spring the de facto web framework for Java What alternatives are there Pros and cons,self.java +6,1428574106,6,Writing Clean Tests Small Is Beautiful,petrikainulainen.net +0,1428550116,5,Minimal Java to Swift converter,self.java +5,1428542422,8,thundr a lightweight cloud friendly java web framework,3wks.github.io +27,1428516131,4,Minimalist java web applications,cantina.co +2,1428505365,6,Maven plugin to support versioning policy,github.com +1,1428503767,6,Keeping code synced across different computers,self.java +3,1428502424,8,Spring Boot Support in IntelliJ IDEA 14 1,youtube.com +0,1428497733,5,Debug java application in eclipse,youtube.com +16,1428495980,5,Complete Android Apps on github,self.java +11,1428492415,8,Eclipse Java compiler released for iPhone and iPad,self.java +0,1428491675,3,StringBuilder and StringBuffer,self.java +98,1428490616,6,Top 5 Useful Hidden Eclipse Features,blog.jooq.org +10,1428487777,5,Pippo Micro Java Web Framework,self.java +4,1428482838,13,Working on Effective Java a tool to measure and explore your Java codebase,tomassetti.me +12,1428480483,5,PrimeFaces 5 2 Final Released,blog.primefaces.org +5,1428474682,10,Java ME 8 Raspberry Pi Sensors IoT World Part 1,oracle.com +0,1428474471,14,Java Weekly 15 15 GC tuning HTTP2 good Javadoc MVC 1 0 early draft,thoughts-on-java.org +4,1428450220,29,Little known real time standard impacts broad span of Java applications RTSJ 2 0 promises to enable type safe device access advanced scheduling and more even beyond RT world,javaworld.com +115,1428437516,17,In the world of Internal Server Error this is the most beautiful thing I have ever seen,i.imgur.com +1,1428436749,6,Sublime Text 3 Running and Compiling,self.java +6,1428423729,16,My Weekly Review Testing and Spring goodness as well as some musings about introversion and leadership,baeldung.com +2,1428418704,12,All about Oracle Cloud PaaS and IaaS to rapidly build rich apps,oracle-cloud.zeef.com +1,1428410737,10,How to Avoid the Dreaded Dead Lock when Pessimistic Locking,blog.jooq.org +0,1428407132,7,Get username of those who last committed,stackoverflow.com +0,1428406799,10,Not able to execute the java class files in ubuntu,stackoverflow.com +8,1428398570,4,JPA Result Set Mappings,thoughts-on-java.org +1,1428397303,2,group project,self.java +4,1428396645,5,ECMAScript 6 compiler and runtime,github.com +0,1428396307,8,Timeout policies for EJBs how do they help,self.java +4,1428395105,5,Develop a simpele OSGi application,www-01.ibm.com +50,1428390843,7,Java 8 Concurrency Tutorial Threads and Executors,winterbe.com +0,1428387456,16,Wouldn t it be nice if Java had native XML HTML support similar to React js,self.java +13,1428385073,15,Immutables release 2 0 A leap ahead of similar solutions for immutable objects and builders,immutables.github.io +0,1428356574,13,Lattice and Spring Cloud Resilient Sub structure for Your Cloud Native Spring Applications,spring.io +0,1428354757,9,distributed ehcache batched replication across WANs using SNS SQS,github.com +46,1428345699,6,Upgrading to Java 8 at Scale,product.hubspot.com +43,1428330436,13,7 Things You Thought You Knew About Garbage Collection and Are Totally Wrong,blog.takipi.com +4,1428328805,17,Ideas So I have a good amount of web page data What should I do with it,self.java +21,1428326864,8,Architecting Large Enterprise Java Projects by Markus Eisele,zeroturnaround.com +8,1428307292,10,Spring from the Trenches Injecting Property Values Into Configuration Beans,petrikainulainen.net +21,1428305473,10,Hibernate ORM 5 0 0 Beta1 released but nothing new,in.relation.to +4,1428291517,13,Is that Googlebot user agent really from Google New Java library to verify,flowstopper.org +1,1428247390,23,What does it take to parse an inorder expression to preorder and postorder and vice versa Also how to make an expression tree,self.java +65,1428223660,16,To contribute to this code it is strictly forbidden to even look at the source code,self.java +0,1428163919,8,Are there any Hadoop plugins available for Netbeans,self.java +5,1428150621,8,java util logging Example Examples Java Code Geeks,examples.javacodegeeks.com +11,1428147245,10,Apache Mavibot 1 0 0 M7 MVCC B tree implementation,mail-archives.apache.org +7,1428147176,7,HttpComponents Client 4 4 1 GA Released,mail-archives.apache.org +12,1428139539,6,Where to find educational Java posters,self.java +0,1428106807,10,How do I install Java without third party sponsor offers,java.com +451,1428103376,4,Guys I found it,imgur.com +26,1428084751,14,I m porting Java exercises to exercism io anyone care to help us out,github.com +16,1428075406,7,RoboVM Intellij IDEA Android Studio plugin released,robovm.com +5,1428071742,37,Is it possible to create a maven plugin custom class implementing the same interfaces as JDefinedClass JFieldVar and JMethod in order to support demarshalling an xsd to an Android POJO by replacing JAXB annotations with SimpleXML annotations,self.java +1,1428061375,8,1 Way Messaging Systems actors are NOT MAINTAINABLE,self.java +20,1428044132,6,PrimeFaces Spark Layout and Theme Released,primefaces.org +0,1428031239,8,Spring Boot Dependency Injection Into External Library Project,recursivechaos.com +1,1428030187,4,Question about SE Certifications,self.java +89,1427998309,9,Java VM Options You Should Always Use in Production,blog.sokolenko.me +4,1427989780,5,A Java 8 parallel calamity,coopsoft.com +26,1427984034,13,Java Performance Tuning How to Get the Most Out of Your Garbage Collector,blog.takipi.com +10,1427981719,5,Java security driving me insane,self.java +0,1427979506,8,Basic java tutorials uni student struggling with concepts,self.java +6,1427978177,5,Educational Software made with Java,self.java +11,1427977044,10,How Java EE translates web xml constraints to Permission instances,arjan-tijms.omnifaces.org +5,1427934990,7,Streaming Spring and Hibernate dev for DevWars,self.java +3,1427930260,5,Help getting back into it,self.java +3,1427923823,7,How Can You Become a Java Champion,javaspecialists.eu +31,1427913927,5,Java 8 functional programming book,self.java +7,1427908457,6,RichFaces 4 5 4 Final released,developer.jboss.org +8,1427902920,20,Why Netty makes you do reference counting for ByteBuffers Isn t it supposed to be single threaded through Java NIO,netty.io +19,1427881990,11,Orbit Framework from EA and Bioware for large scalable online services,orbit.bioware.com +6,1427881249,6,ZipRebel Download the Internet in Milliseconds,zeroturnaround.com +18,1427880728,13,Don t be Fooled by Generics and Backwards Compatibility Use Generic Generic Types,blog.jooq.org +5,1427877629,12,Build a Java 3 tier application from scratch Part 3 amp 4,janikvonrotz.ch +5,1427877234,15,Getting started with Spark it is possible to create lightweight RESTful application also in Java,tomassetti.me +1,1427873515,8,SELECT statements batch fetching with JDBC and Hibernate,vladmihalcea.com +80,1427868369,11,Top 20 Online Resources to Boost Up your Java Programming Skill,simplilearn.com +3,1427857415,8,New Spring Boot Project JdbcTemplate or Spring Data,self.java +12,1427821969,4,JavaLand 2015 Wrap Up,weblogs.java.net +10,1427820983,6,gradle release Release plugin for Gradle,github.com +11,1427818574,9,JSR 371 Model View Controller 1 0 First Draft,jcp.org +16,1427817778,10,Apache jclouds 1 9 released the Java multi cloud toolkit,jclouds.apache.org +13,1427815940,12,A fluent Java 8 interface to the Pivotal Tracker API seeking contributors,github.com +4,1427815506,13,I have been working on and off to create this limited feature game,youtube.com +13,1427813489,4,Stream Processing Using Esper,hakkalabs.co +8,1427809292,20,JavaLand 2015 result JavaFX 3d mosaic for dailyfratze de using Flyway jOOQ H2 JavaFX and the CIE94 color distance algorithm,info.michael-simons.eu +4,1427797324,8,Java 8 Consumer Supplier Explained in 5 minutes,blog.idrsolutions.com +7,1427792442,10,A Java EE 7 Startup Virtualizing Services with hubeo com,adam-bien.com +31,1427789071,12,Build a Java 3 tier application from scratch Part 2 Model setup,janikvonrotz.ch +6,1427787380,13,Has anyone successfully build Bruce Eckels Thinking in java 4th Edition using Eclipse,self.java +4,1427786182,4,Microservices Monoliths and NoOps,blog.arungupta.me +0,1427783537,11,Free JPA 2 1 Cheat Sheet by Thorben Janssen The Aquarium,blogs.oracle.com +19,1427772872,9,What other java community news type sites are there,self.java +6,1427752897,10,A memory leak caused by dynamic creation of log4j loggers,korhner.github.io +4,1427749046,11,JSF 2 2 Input Output JavaLand 2015 presentation by Ed Burns,reddit.com +1,1427748262,8,New book Web Development with Java and JSF,blogs.oracle.com +5,1427741117,9,Jackson module for model without default constructors and annotations,github.com +2,1427740598,7,Extending NetBeans with Nashorn Geertjan s Blog,blogs.oracle.com +24,1427733615,4,Microtyping in Java revisited,michael-snell.com +8,1427729109,4,JSF standard converters example,examples.javacodegeeks.com +31,1427729030,5,My Trip to JavaLand 2015,thoughts-on-java.org +8,1427728896,4,Developing applications using ICEfaces,genuitec.com +6,1427727890,5,Database Schema Migration for Java,java-tv.com +7,1427727702,11,Handling 10k socket connection on a single Java thread with NIO,coralblocks.com +7,1427723994,6,Infusing Java into the Asciidoctor Project,voxxed.com +13,1427719572,10,While You Were Sleeping The Top New Java 8 Additions,blog.takipi.com +4,1427717418,7,Lightweight Metrics for your Spring REST API,baeldung.com +18,1427715582,4,Future proofing Java objects,jacek.rzrz.pl +0,1427686435,14,Why do companies make apps in Java when it could be made in HTML,self.java +1,1427666757,14,Why You Should Care About the Java EE Management API 2 0 JSR 373,voxxed.com +2,1427666708,14,Maven Plugin Generate SoftWare IDentification SWID Tags according to ISO IEC 19770 2 2009,github.com +10,1427662594,8,How to OAUTH 2 0 With Spring Security,aurorasolutions.io +106,1427652244,10,I love documenting code Is this an actually useful skill,self.java +11,1427639821,8,Apache Maven Compiler Plugin Version 3 3 Released,mail-archives.apache.org +18,1427639750,6,Apache Tomcat 8 0 21 available,mail-archives.apache.org +6,1427639679,6,Apache PDFBox 1 8 9 released,mail-archives.apache.org +2,1427629143,12,Can you recommend any resources website in which I can practice OOP,self.java +26,1427606855,30,Brand new to programming 4 weeks and just finished my first program I don t hate with Java Swing I call it Calculator 2 0 Can I get some feedback,github.com +9,1427561486,23,Currently learning Java EE but how much into JavaScript should I learn if I don t want to be focused in front end,self.java +0,1427553410,7,JAXB Is Doing It Wrong Try Xembly,yegor256.com +3,1427551556,7,How to batch DELETE statements with Hibernate,vladmihalcea.com +5,1427551143,8,Being Functional with Java 8 Interfaces and JRebel,zeroturnaround.com +5,1427550805,14,Why You Should Care About the Java EE Management API 2 0 JSR 373,voxxed.com +7,1427485244,7,Build scalable feeds with GetStream and Java,github.com +0,1427482789,7,How to build a simple stack machine,unnikked.ga +0,1427471086,7,what level of programmer is this guy,self.java +0,1427470026,7,What s new in Spring Data Fowler,spring.io +7,1427468640,13,JBoss releases first beta of their beta AS WildFly 9 0 0 Beta1,developer.jboss.org +132,1427461508,12,Error Prone Google library to catch common Java mistakes at compile time,errorprone.info +2,1427461251,17,Sneak a peak at Vert x 3 0 and try out milestone 3 xpost from r vertx,vert-x3.github.io +12,1427443176,4,GUI Builders Good Bad,self.java +11,1427422973,6,Eclipse What are your favorite HotKeys,self.java +5,1427417803,11,Have you ever been part of an in office coding contest,self.java +7,1427407057,9,When should I used the DAO Impl design pattern,self.java +2,1427406199,16,Spring XD 1 1 1 adds Kafka manual acking improved perf amp Spark streaming reliable receiver,spring.io +3,1427395259,8,Websphere MQ JBoss EAP 6 integration via JCA,gautric.github.io +47,1427395074,11,If programming didn t pay well would you still do it,self.java +5,1427393336,8,Monitor Wildfly JBoss Server Stats through Google Analytics,self.java +22,1427382684,13,Spring Security 4 0 0 adds websocket Spring Data and better testing support,spring.io +5,1427381812,9,Spring Integration Kafka Support 1 1 GA is available,spring.io +0,1427377576,11,The top 11 Free IDE for Java Coding Development amp Programming,blog.idrsolutions.com +3,1427377087,6,REST API documentation generator for Java,miredot.com +0,1427373000,7,Getting tomcat amp httpd to play nice,self.java +17,1427367837,7,IntelliJ IDEA Live Templates for Unit Testing,vansande.org +0,1427351309,6,Microsoft Visual Studio 13 Compiling Java,self.java +17,1427333005,10,Anyone know how to get rid of this in eclipse,self.java +2,1427312270,7,Azul Systems Unveil New Clone Zulu Embedded,voxxed.com +9,1427305911,11,New Liberty features for Java EE 7 plus Java 8 support,developer.ibm.com +0,1427296409,4,Reactive Java Use Cases,self.java +0,1427296360,6,Down with Java Up with Lua,self.java +0,1427289775,34,What s the easiest way to generate basic CRUD functionality with a web front end and a MySQL backend Ex create edit delete search a simple Entity like Person with firstName lastName emailAddr cellPhoneNumber,self.java +2,1427287251,17,Is it a good idea to split the login from the application as a separate WAR file,self.java +0,1427279051,16,Java 1 7 0 55 SSL Cert Errors SSL CA Cert is in the Browser Keystore,self.java +17,1427276418,40,As a developer I find writing functional tests even using such great frameworks as Geb and Spock painstakingly boring Especially for lengthy scenarios How do you guys cope with this Is there a way to make this task not boring,self.java +1,1427272022,4,Performance monitoring tool recommendations,self.java +103,1427270492,10,Java 8 API by Example Strings Numbers Math and Files,winterbe.com +2,1427248844,5,Protected Static Possible use cases,self.java +0,1427246378,6,Best online tool to learn java,self.java +1,1427241489,6,Using makers to create clear tests,samatkinson.com +13,1427232275,18,Java The once and future king of Internet programming Internet of Things a natural home for Java work,javaworld.com +10,1427215957,9,Building an extensible HTTP client for GitHub in Java,clever-cloud.com +0,1427214895,7,jOOQ vs Hibernate When to Choose Which,blog.jooq.org +2,1427208363,7,Opensource Tibco RV alternative with Java support,self.java +143,1427204853,5,IntelliJ IDEA 14 1 Released,blog.jetbrains.com +20,1427169838,2,JavaLand 2015,self.java +18,1427162513,4,Java code certificate questions,self.java +1,1427161066,20,Can I use two different GUIs StudentGUI and InstructorGUI both being clients to communicate through a server with Socket Programming,self.java +12,1427151849,6,Resources For Data Structures Practice Problems,self.java +8,1427139052,12,Java Weekly 13 15 JCache RESTful conversations Java EE Management and more,thoughts-on-java.org +1,1427133156,9,How to add local IP to exception site list,self.java +4,1427132926,16,Multiple UI Applications and a Gateway Single Page Application with Spring and Angular JS Part VI,spring.io +8,1427130565,10,Good idea to choose WebSphere for a new JEE project,self.java +31,1427129597,7,Oracle Java Mission Control The Ultimate Guide,blog.takipi.com +14,1427127962,11,Dealing with a open source project maintainer who refuses to communicate,self.java +3,1427125041,19,Write webapp once run it on any platform such as Servlet Netty Grizzly Vert x Play and so on,cettia.io +0,1427121858,10,Looking for a browser IDE to mess around with Suggestions,self.java +14,1427111113,4,A Non Blocking Benchmark,techblog.bozho.net +16,1427108914,10,Java EE Management API 2 0 JSR 373 Spins Up,blogs.oracle.com +4,1427105726,5,PrimeFaces 5 2 RC1 Released,blog.primefaces.org +6,1427103399,8,Free One Day UK conference for NetBeans users,blog.idrsolutions.com +6,1427095980,12,Java Weekly 13 15 JCache RESTful conversations Java EE Management and more,thoughts-on-java.org +4,1427090041,5,Audit4j 2 3 1 Released,audit4j.org +8,1427073875,5,Dropwizard MongoDB and Gradle Experimenting,javacodegeeks.com +52,1427044610,8,How does Oracle Labs new JIT compiler work,youtube.com +4,1427039451,8,Apache Batik 1 8 Released CVE 2015 0250,mail-archives.apache.org +2,1427039225,7,HttpComponents Core 4 4 1 GA released,mail-archives.apache.org +76,1427004884,4,The snootiness of programmers,self.java +35,1426989677,8,JBake a Java based static site blog generator,jbake.org +3,1426984604,13,What do you consider to be the best resource to learn JAX RS,self.java +2,1426976017,11,Is there interest in an EventBus that doesn t use reflection,self.java +5,1426975404,5,Java web framework online lectures,self.java +13,1426974663,5,Java web framework like Django,self.java +3,1426960212,5,Bash Pipes vs Java Streams,github.com +36,1426955559,7,Does anybody using OpenJDK 8 in production,self.java +3,1426948983,36,Hi r java I ve halted development on an open source side project for image and video frame filtering on Android Would anybody use this If there s interest I ll continue development and release it,github.com +4,1426938371,8,Java 8 20 Date and Time API Examples,javarevisited.wordpress.com +8,1426931412,13,Show r java semantic amp full text code search for Java GitHub repos,sourcegraph.com +0,1426917696,7,Book recommandations BOOKS BOOKS AND MORE BOOKS,self.java +72,1426875488,20,The company I m at wants to do a complete upgrade from Java 6 Should I propose 7 or 8,self.java +3,1426865502,6,Spock by Example Introducing the Series,eclipsesource.com +13,1426863937,4,From Python to Java,self.java +0,1426850216,5,Java Cloneable critique discussion time,self.java +25,1426846040,8,JDK 9 Compiler support for private interface methods,mail.openjdk.java.net +19,1426844582,7,Did AngularJS borrow some concepts from JSF,maxkatz.org +4,1426836508,12,Recording and slides of Graal tutorial Compiler written in Java for JavaBytecode,mail.openjdk.java.net +5,1426829281,7,Critique time Java 8 Optional and chaining,self.java +18,1426813441,4,Java 9 and Jigsaw,self.java +5,1426812062,11,jPopulator a handy tool to populate Java Beans with random data,github.com +19,1426808237,7,Java EE authorization JACC revisited part III,arjan-tijms.omnifaces.org +43,1426802658,9,Ever heard of Selenium Check out this Java Tutorial,airpair.com +5,1426801477,4,Java projects for resume,self.java +4,1426782874,13,Optional in Java Why it can shield but not save you from null,michael-snell.com +4,1426781201,3,JavaScript to Java,self.java +2,1426773152,13,Java AOT compiler Excelsior Jet charity bundle is back starting at US 10,self.java +4,1426768311,7,The dark side of Hibernate AUTO flush,vladmihalcea.com +21,1426766616,11,Jackdaw is a Java Annotation Processor which allows to simplify development,github.com +98,1426764988,7,Java 9 will be lightweight and modular,in.techradar.com +16,1426763659,15,Why we are abandoning ImageIO and JAI for Image support in our commercial Java code,blog.idrsolutions.com +0,1426731729,7,How would you implement this Java class,self.java +3,1426719910,10,Spring Boot Support in Spring Tool Suite 3 6 4,spring.io +0,1426716853,9,Apache Maven JavaDoc Plugin Version 2 10 2 Released,mail-archives.apache.org +15,1426716530,4,Maven 3 3 1,maven.apache.org +4,1426713873,6,Jetty 9 2 10 v20150310 Released,dev.eclipse.org +1,1426713770,18,Netty Three releases a day 5 0 0 Alpha2 4 1 0 Beta4 and 4 0 26 Final,netty.io +16,1426713626,6,Apache Camel 2 15 0 released,mail-archives.apache.org +5,1426713037,4,Convert PDF to excel,self.java +0,1426708940,4,Java Hashmap quick question,self.java +3,1426699819,10,Async Goes Mainstream 7 Reactive Programming Tools You Must Know,blog.takipi.com +12,1426698923,6,Turning on GC logging at runtime,plumbr.eu +14,1426698812,9,Using JASPIC to secure a web application in GlassFish,voxxed.com +8,1426698684,7,Top tips and links for JSF developers,codebulb.ch +8,1426696639,12,JSF 2 3 now supports Map in ui repeat and h dataTable,jdevelopment.nl +81,1426690786,5,r java hits 40K subscribers,redditmetrics.com +3,1426684271,6,What Lies Beneath OpenJDK PDF slides,java.net +11,1426680701,7,Java 8 Functional Interfaces and Checked Exceptions,codingjunkie.net +81,1426677823,29,What GUI library for java do you or most people use these days Im still using swing with netbeans am I outdated Couple newbie questions for you awesome programmers,self.java +4,1426675209,9,How to batch INSERT and UPDATE statements with Hibernate,vladmihalcea.com +2,1426674123,4,JPA Database Schema Generation,radcortez.com +1,1426668641,7,Testing your Spring Boot application with Selenium,g00glen00b.be +17,1426665576,5,Primitives in Generics part 2,nosoftskills.com +2,1426653046,8,Luciano Fiandesio VIM configuration for happy Java coding,lucianofiandesio.com +2,1426631569,10,What are the best Spring in person paid courses training,self.java +12,1426631408,5,RebelLabs Java Performance Survey 2015,rebellabs.typeform.com +0,1426612348,22,I have a selenium screenshotting java file that I want to make more central to distribute across the company for usage help,self.java +11,1426606646,11,Free O Reilly Microservices eBook Migrating to Cloud Native Application Architecture,pivotal.io +0,1426604327,3,Eclipse or Intellij,self.java +2,1426593844,6,OkHttp 2 3 has HTTP 2,publicobject.com +1,1426585180,12,Suggest any project ideas to implement using Java springs and hibernate framework,self.java +137,1426560413,4,Java Forever And Ever,youtube.com +9,1426558239,6,jexer Pure Java Turbo Vision lookalike,github.com +6,1426545748,5,Apache JMeter 2 13 released,mail-archives.apache.org +2,1426542461,13,Java Weekly 12 15 CDI templating in MVC Keycloak recorded sessions and more,thoughts-on-java.org +14,1426537759,13,How do I implement an AJAX based polling on a web application efficiently,self.java +48,1426517007,10,The decline of Java application servers when using Docker containers,medium.com +1,1426504640,9,Externalizable interface and its implementation in Java with Example,codingeek.com +20,1426500806,4,Flyway 3 2 released,flywaydb.org +0,1426496256,9,Would you call Spring Security a type of AOP,self.java +1,1426494172,11,How to Convert Word to PDF in Java with Free tools,docmosis.com +12,1426492074,6,Avoiding Null Checks in Java 8,winterbe.com +5,1426483887,18,Prior to java 8 was the reflection API essentially the way you d be able to implement callbacks,self.java +4,1426456513,4,Remote programming on android,self.java +65,1426443682,10,What are good coding practices that you wish everyone used,self.java +11,1426416132,3,Tuning Java Servers,infoq.com +16,1426410986,5,Java Checked vs Unchecked Exceptions,jevaengine.com +2,1426362888,8,Release Notes for XWiki 7 0 Milestone 2,xwiki.org +18,1426355655,5,There can be only one,michael-snell.com +57,1426353799,7,Maven s Inflexibility Is Its Best Feature,timboudreau.com +2,1426352424,10,What would you choose between JavaFX 8 and NetBeans RCP,self.java +1,1426305452,15,Google WindowBuilder Does a system require the plugin to run an application developed using WindowBuilder,self.java +32,1426290770,7,Simplifying class instance matching with java 8,onoffswitch.net +2,1426282272,7,What practical programs exercises should I do,self.java +0,1426271984,9,MVC vs JSF a bit of a different perspective,weblogs.java.net +11,1426270108,11,Liberty EE 7 March 15 beta now supports JSF 2 2,developer.ibm.com +61,1426251505,6,10 Java Articles Everyone Must Read,blog.jooq.org +7,1426246261,4,Baeldung Weekly Review 11,baeldung.com +52,1426236994,14,NetBeans have updated their Tutorials Guides and Articles something for both beginners and Experts,netbeans.org +31,1426202802,10,How useful are abstract classes now that interfaces have defaults,self.java +1,1426180082,3,BenchmarkSQL for Firebird,firebirdnews.org +22,1426172511,5,JBoss PicketLink or Apache Shiro,self.java +2,1426169354,7,Exploring the Start Page in NetBeans IDE,blog.idrsolutions.com +5,1426166757,15,Here s how I implemented a safe I forgot my password feature with Spring Security,baeldung.com +0,1426164071,18,How long would it take to self learn java for a person with almost non existant programming knolowdge,self.java +30,1426160200,4,Groovy Moving to Apache,infoq.com +35,1426148426,7,9 Docker Recipes for Java EE Applications,voxxed.com +9,1426148281,4,Hibernate CascadeType LOCK gotchas,vladmihalcea.com +8,1426146386,13,What JVM tech stack architecture process candidates are there to satisfy these requirements,self.java +10,1426127537,4,Book for Learning Java,self.java +7,1426119030,13,The most popular Java EE servers in 2014 2015 according to OmniFaces users,arjan-tijms.omnifaces.org +0,1426110470,10,How do I get the Ask toolbar when installing Java,self.java +2,1426108399,5,Best Book for programming newbies,self.java +4,1426102658,7,Optimizer for Eclipse for Slow Eclipse installations,zeroturnaround.com +23,1426098155,9,ZeroTurnaround Kick Things Up on Eclipse with Free Optmiser,voxxed.com +55,1426097044,19,RoboVM 1 0 released write native iOS apps in Java Scala Kotlin share code with Android and your backend,robovm.com +16,1426096359,7,SceneBuilder 8 0 0 installers available Gluon,gluonhq.com +5,1426081225,5,Getting Java Event Notification Right,codeaffine.com +0,1426061800,8,What we learnt about Spring while developing Quizzie,blog.ninja-squad.com +186,1426054829,13,Came across this repository It includes examples and documentation about Java design patterns,github.com +23,1426052073,6,Free Java Game Dev Tutorials ongoing,youtube.com +3,1426049874,8,How good can video games get using java,self.java +3,1426027505,6,Drools 6 2 0 Final Released,blog.athico.com +12,1426025668,8,Apache Maven Jar Plugin Version 2 6 Released,markmail.org +27,1425998578,12,OptaPlanner 6 2 0 Final released giant leap for vehicle routing scalability,optaplanner.org +7,1425997083,5,PrimeFaces Sentinel Live Preview Demo,blog.primefaces.org +16,1425994972,6,The Java Legacy is Constantly Growing,blog.jooq.org +18,1425989732,9,How to activate Hibernate Statistics to analyze performance issues,thoughts-on-java.org +26,1425979532,9,Java EE Security API JSR 375 Update The Aquarium,blogs.oracle.com +0,1425979480,15,Java Basic Data Types Java Basic Data Types Tutorials 2015 Primitive Data Types in JAVA,youtu.be +2,1425978636,9,Using Spring Data Crate with your Java REST Application,crate.io +6,1425975725,3,Spring Boot downsides,self.java +7,1425940483,7,JavaFX links of the week March 9,fxexperience.com +6,1425932183,9,Questions about Vaadin coming from a full stack developer,self.java +18,1425929008,9,Java IO Benchmark Quasar vs Async ForkJoinPool vs managedBlock,blog.takipi.com +2,1425928991,4,Jenkins in a Box,supposed.nl +0,1425928341,6,Question about University College Programming Courses,self.java +3,1425923897,15,Professional devs how much programming knowledge did you have before you got your first job,self.java +10,1425921920,9,Screencast Up amp Running with Comsat Dropwizard and Tomcat,blog.paralleluniverse.co +9,1425916026,21,I m planning to learn a Java web framework and I m complete noob about the ecosystem What would you recommend,self.java +53,1425915085,6,Is there a better looking javadoc,self.java +8,1425913522,14,Java Weekly 11 15 Java Money REST API evolution CDI 2 0 and more,thoughts-on-java.org +0,1425908471,10,uniVocity parsers 1 4 0 released with even more features,univocity.com +24,1425895918,43,I had left the Java world behind since 2010 and I am about to join a new Java project soon that is mainly based on the Spring Framework How popular is Spring these days Career wise does it still worth investing in it,self.java +6,1425892664,6,RichFaces 4 5 3 Final released,developer.jboss.org +6,1425889927,7,How to test Collection implementations with Guava,blog.codefx.org +61,1425877261,14,Dropwizard is a Java framework for developing ops friendly high performance RESTful web services,dropwizard.io +3,1425871678,8,Recommended code generation tools for Bean DTO mappings,self.java +13,1425842898,9,Getting Started with Gradle Creating a Web Application Project,petrikainulainen.net +13,1425823023,6,Composite Decorators aka decorator pattern rocks,yegor256.com +51,1425819815,10,Implementing a world fastest Java int to int hash map,java-performance.info +15,1425818518,9,Streamable is to Stream as Iterable is to Iterator,self.java +26,1425808854,4,Java Development without GC,coralblocks.com +0,1425773093,11,Is it just me or is the JavaFX scene builder shit,self.java +0,1425762068,14,How to make a 2D game for Android Episode 5 Using ArrayList and Paint,youtube.com +37,1425746681,25,It appears as though I have landed my first java web services development job What are some tools libraries APIs that are a must have,self.java +0,1425731811,8,Adding Mnemonic and Accelerator to Menuitem JMenuItem Swing,java2s.com +14,1425724919,5,Maven multi module release plugin,danielflower.github.io +5,1425723984,7,Visualizing CDI dependency graphs with Weld Probe,blog.eisele.net +2,1425680208,5,Is OCAJP good for starter,self.java +9,1425679033,3,Release Notes Dropwizard,dropwizard.io +6,1425673175,10,JSF 2 3 now supports Iterable in UIData amp UIRepeat,jdevelopment.nl +0,1425668996,12,How to make a 2D game for Android Episode 4 The Player,youtube.com +0,1425668379,13,How to make a 2D game for Android Episode 2 The Game Loop,youtube.com +8,1425666256,9,Name Munging camelCase to underscore_separated etc for Java 8,github.com +4,1425661801,9,Style poll private static final LOG log or logger,self.java +81,1425660487,12,Oracle now bundling Ask com adware with Java for Mac Linux next,macrumors.com +0,1425660149,12,Need some way to share code and not have it be copied,self.java +1,1425647529,4,Enumerating NamedQuery within NamedQueries,davidsalter.com +9,1425646243,4,50 Shades of TomEE,tomitribe.com +7,1425640832,9,Apache Spark as a no single point of failure,self.java +11,1425617201,14,How to make a 2D game in Android Episode 1 Setting up Android Studio,youtube.com +1,1425612225,4,Java XML based framework,self.java +1,1425610954,8,Convert java program to javascript for a webapp,self.java +1,1425605827,4,Eclipse exporting a jar,self.java +84,1425604118,10,Now MacJava Users Can Have an Ask Toolbar from Oracle,zdnet.com +7,1425600330,6,java net website being ridiculously slow,self.java +0,1425589114,13,Criteria Update Delete The easy way to implement bulk operations with JPA2 1,thoughts-on-java.org +8,1425588860,5,BootsFaces 0 6 5 released,beyondjava.net +2,1425588790,9,Difference between interfaces and abstract classes pre java 8,programmerinterview.com +1,1425578989,5,Caching hashcode Good or bad,self.java +3,1425578396,7,How to deal with subprocesses in Java,zeroturnaround.com +14,1425565605,9,Implementing a 30 day trial for a Java library,self.java +9,1425559239,8,Java 8 Repeating Annotation Explained in 5 minutes,blog.idrsolutions.com +31,1425548719,13,Oracle s piping hot new pot of Java takes out the trash faster,theregister.co.uk +27,1425544593,8,Fixing Java 8 Stream Gotchas with IntelliJ IDEA,winterbe.com +9,1425544034,10,A beginner s guide to JPA and Hibernate Cascade Types,vladmihalcea.com +4,1425506685,10,Java workflow engine how to build a user defined workflow,self.java +7,1425506649,5,A Simple Java Incremental Builder,github.com +5,1425497079,7,constant java version upgrades for server app,self.java +1,1425496474,9,Spring Cloud 1 0 0 delivers infrastructure for microservices,spring.io +3,1425485468,19,Are lambdas in Java a preference for a minority of developers or are they going to be the norm,self.java +8,1425482521,10,Package your Java EE application using Docker and Kubernetes VirtualJUG,virtualjug.com +1,1425482435,5,The Live Reflection Madness VirtualJUG,virtualjug.com +8,1425477675,5,Prevent Brute Force Authentication Attempts,baeldung.com +41,1425473873,9,How to Map Distinct Value Types Using Java Generics,codeaffine.com +23,1425473070,15,Go for the Money JSR 354 Adds First Class Money and Currency Support to Java,infoq.com +16,1425472984,7,JBoss has started a JBoss Champions program,jboss.org +19,1425467164,12,Resource Handling in Spring MVC 4 1 x post from r springsource,spring.io +6,1425465677,2,TrueVFS Tutorial,truevfs.java.net +3,1425464086,7,Tutorial The JSR 203 file attribute API,codementor.io +13,1425454935,8,CDI 2 0 A glimpse at the future,cdi-spec.org +1,1425441648,5,Any success stories with RoboVM,self.java +4,1425436404,7,Java Tip Retrying operation with Guava Retrying,ashishpaliwal.com +1,1425434615,12,Beginner looking for an example for a function in purpose of understanding,self.java +4,1425422714,12,Core Java J2EE Spring Hibernate JAX RS EJB Tutorials powered by FeedBurner,feeds.feedburner.com +5,1425420690,6,Apache Archiva 2 2 0 Released,mail-archives.apache.org +89,1425416730,3,Java 8u40 released,oracle.com +5,1425414299,9,Setting up JavaFX Scene builder and IntelliJ 14 question,self.java +16,1425411101,9,Recursive ConcurrentHashMap computeIfAbsent call never terminates Bug or feature,stackoverflow.com +8,1425409567,9,Managing your Microservices on Heroku with Netflix s Eureka,blog.heroku.com +1,1425393055,5,NetBeans Weekly Newsletter Issue 678,netbeans.org +2,1425392392,4,MongoDB 3 0 released,self.java +36,1425381256,3,REST API Evolution,radcortez.com +10,1425362188,7,SO Why are Java Streams once off,stackoverflow.com +8,1425360883,7,JBoss Tools Docker and WildFly Part 1,tools.jboss.org +32,1425347584,3,Why Non Blocking,techblog.bozho.net +8,1425346205,13,To those of you who program Java for a living how is it,self.java +6,1425329438,6,The Portable Cloud Ready HTTP Session,spring.io +6,1425328872,8,SimpleFlatMapper Jdbc mapping now support 1 n relationship,github.com +10,1425320459,13,Java Weekly 10 15 Java Threads lock modes JAX RS caching and more,thoughts-on-java.org +3,1425319887,18,Best book for Java Collections I struggle with figuring out whats the best mechanism for holding multiple objects,self.java +4,1425319369,6,Java Bootstrap Dropwizard vs Spring Boot,blog.takipi.com +50,1425318760,9,Story of a Java 8 Compiler Bug JDK 8064803,blog.dogan.io +50,1425317827,11,SmileMiner A Java library of state of art machine learning algorithms,github.com +8,1425315436,3,Optional ifPresent otherwise,self.java +29,1425306536,10,Head of Groovy Project Guillaume Laforge Joining API Platform Restlet,restlet.com +15,1425304309,12,Why I Am Excited About JDK 8 Update 40 Geertjan s Blog,blogs.oracle.com +0,1425288508,4,removing java deployment rule,self.java +1,1425270832,10,Tool to bulk import large amounts of files into S3,github.com +21,1425266427,7,Google Doc Analog for live editing code,self.java +23,1425252259,19,Easy Batch 3 0 is finally out Check it out and give us your feedback we need your help,easybatch.org +6,1425239709,10,Remove JPA annotations before building JAR for 3rd party use,self.java +26,1425225084,6,Apache POI 3 12 beta1 released,mail-archives.apache.org +8,1425204884,8,How to shoot yourself in foot with ThreadLocals,javacodegeeks.com +2,1425179441,2,Help needed,self.java +16,1425178364,21,Spring Framework Have you ever had to implement the BeanNameAware interface in your applications Why was it needed to do so,self.java +28,1425161077,7,Any good libraries for reading mp3 files,self.java +0,1425160650,4,Best book for beginners,self.java +6,1425155792,13,CVE 2015 0254 XXE and RCE via XSL extension in JSTL XML tags,mail-archives.apache.org +25,1425155753,5,Apache Log4j 2 2 released,mail-archives.apache.org +1,1425140743,13,Looking for guidance on how to approach a game I want to make,self.java +19,1425140224,5,JavaFX Tutorial 5 Media Elements,youtube.com +29,1425136380,4,C the Java way,self.java +0,1425075743,14,Object Oriented Test Driven Design in C and Java A Practical Example Part 4,insidethecpu.com +0,1425066071,30,I can t run most applets because java security blocks them How do I lower security to medium low nonexistent for java 8u31 Why doesn t this option exist anymore,self.java +4,1425062863,7,Relatively easy open source projects to deconstruct,self.java +9,1425062705,10,Using Java 8 Lambda expressions in Java 7 or older,mscharhag.com +4,1425054286,7,Java Generics in Depth maybe part 1,stanpalatnik.github.io +1,1425044796,3,Reusable monadic computations,self.java +155,1425042278,11,Codehaus birthplace of many Java OSS projects coming to an end,self.java +10,1425032534,9,Fast way to improve loops performance using java 8,self.java +4,1425029963,5,replacing DocProperty in docx file,self.java +0,1425028060,7,Spring Security 4 0 0 RC2 Released,spring.io +0,1425027483,5,Online Professional Core Java Tutorials,self.java +4,1425027317,7,Houdini type conversion system for Spring framework,github.com +14,1425022038,3,PrimeFaces Sentinel Released,blog.primefaces.org +0,1425013432,6,Java amp JVM Conquer the World,zeroturnaround.com +10,1424996156,11,From compiler to backward compatibility here are 10 reasons Java RULES,voxxed.com +4,1424986326,9,Best Hibernate book to date for experienced Java developers,self.java +12,1424978406,8,Interface Evolution With Default Methods Part I Methods,blog.codefx.org +27,1424976895,7,what do you guys like in java,self.java +11,1424972499,6,Best practice for mocking a ResultSet,self.java +3,1424966074,16,How to show exactly whether the popularity of Java for desktop is increasing decreasing or dead,self.java +0,1424963019,4,Mocking should be Mocked,matthicks.com +1,1424961140,15,Is there a way or vm to run unsigned or self signed applet or jnlp,self.java +0,1424960532,13,What features tools conventions standards would you like Java to take ideas from,self.java +21,1424954483,6,Should I test drive my builders,ncredinburgh.com +6,1424905095,12,Package Drone 0 2 0 released The OSGi first software artifact repository,packagedrone.org +15,1424901948,34,CVE 2014 3578 Directory traversal vulnerability in Pivotal Spring Framework 3 x before 3 2 9 and 4 0 before 4 0 5 allows remote attackers to read arbitrary files via a crafted URL,cvedetails.com +25,1424901689,9,Getting up to speed with Java 7 and 8,self.java +9,1424901578,8,Bouncy Castle dev crypto 1 52 release candidate,bouncycastle.org +6,1424901039,9,Critical Security Release of Jetty 9 2 9 v20150224,dev.eclipse.org +4,1424900966,6,Apache Commons DBCP 2 1 released,mail-archives.apache.org +9,1424900900,6,Apache Tomcat 8 0 20 available,mail-archives.apache.org +0,1424898812,4,ELI5 void return type,self.java +1,1424893379,4,Benefits of micro frameworks,self.java +1,1424893144,8,How to add JasperReports library to Gradle project,dziurdziak.pl +0,1424886666,16,Help us learn more about current software architecture roles with this short survey from O Reilly,oreil.ly +10,1424880009,4,Introducing EagerFutureStream amp LazyFutureStream,medium.com +30,1424876740,4,Java 8 code style,self.java +12,1424867563,14,JSF 2 3 news facelets now default to non hot reload in production stage,jdevelopment.nl +17,1424864975,9,JVM Minor GC vs Major GC vs Full GC,plumbr.eu +10,1424860946,6,Runescape the most famous java game,self.java +0,1424858801,6,Retry After HTTP header in practice,nurkiewicz.com +13,1424856613,9,Experiences of a startup with using Java EE 7,adam-bien.com +1,1424855957,17,Mocking in Java why mocking why not mocking mocking also those awful private static methods Federico Tomassetti,tomassetti.me +0,1424814817,12,Why we built illuminate and where we think APM is going next,jclarity.com +0,1424814371,11,Can anyone help me find out the problem here NEWBIE HELP,self.java +17,1424814249,20,How would you structure your web application to keep one code base for several customers each with their own customizations,self.java +6,1424812248,7,JSF 2 3 project overview and progress,jsf.zeef.com +0,1424784905,11,Where can I find good resources about p2p decentralized application development,self.java +28,1424783615,13,Some really old legacy from Oak the predecessor of Java Java abstract interface,stackoverflow.com +0,1424781621,11,Mac Java 8 update 31 has been updated to Update 31,self.java +94,1424780931,19,Proving that Android s Java s and Python s sorting algorithm is broken and showing how to fix it,envisage-project.eu +1,1424776127,12,An implementation of an argmax collector using the Java 8 stream APIs,gist.github.com +4,1424775958,7,Java Bug Fixed with Formal Methods CWI,cwi.nl +0,1424774805,12,A bookmarklet to switch from Java 7 to Java 8 API documentation,gist.github.com +18,1424771481,6,Hierarchical projects coming to Eclipse Mars,tools.jboss.org +13,1424734244,10,How does Java Both Optimize Hot Loops and Allow Debugging,cliffc.org +121,1424730377,2,Freaking Brackets,i.imgur.com +9,1424719198,5,Does Java need more Tutorials,self.java +1,1424717193,9,Stupid question How do I start my java programs,self.java +6,1424716231,8,Building RESTful Java EE Microservices with Payara Embedded,voxxed.com +9,1424715152,7,Work around same erasure errors with Lambdas,benjiweber.co.uk +25,1424713291,4,Is NetBeans frowned upon,self.java +3,1424710873,18,Newbie here Wanted to know what is the difference in Java 6 and Java 7 and Java 8,self.java +6,1424710819,8,Why you should be monitoring your connection pools,vladmihalcea.com +4,1424707510,4,Spring Security Registration Tutorial,baeldung.com +4,1424701845,4,Baeldung Weekly Review 7,baeldung.com +10,1424700948,13,Java Weekly 9 15 Reflection a Java 8 pitfall Flyway MVC and more,thoughts-on-java.org +5,1424695879,22,A new blog related to the Oracle Certified Master Java Enterprise Architect certification Need comments and ideas to take it forward Thanks,javaenterprisearchitect.com +6,1424685341,10,Episode 25 of the long running Enterprise Java Newscast series,blogs.jsfcentral.com +13,1424682425,3,PrimeFaces Sentinel Video,youtube.com +33,1424679792,8,How to get started with webapps in java,self.java +4,1424674386,13,How to embed a self signed applet without having to add an exception,self.java +13,1424638606,17,Noob warning New grad been working with Java for 3 years never used JBoss why should I,self.java +0,1424637219,12,Java Makes Programmers Want To Do Absolutely Anything Else With Their Time,forbes.com +17,1424634346,7,What is Java s equivalent of Monogame,self.java +0,1424625298,9,java lang NoSuchFieldError INSTANCE with Spring Social on Azure,stackoverflow.com +0,1424591047,11,Another one bites the Maven Central dust and saved by Bintray,blog.bintray.com +0,1424578300,9,How do I install Java when this comes up,i.imgur.com +9,1424577063,8,Creating a MYSQL JDBCProvider in IBM Integration Bus,daveturner.info +3,1424538239,4,Generating REST client jar,self.java +12,1424537913,11,How specialized are the Stream implementations returned by the standard collections,stackoverflow.com +4,1424522950,6,HttpComponents Client 4 4 GA Released,mail-archives.apache.org +0,1424522428,1,java,self.java +42,1424521068,11,Spring Framework 4 1 5 released x post from r springsource,spring.io +0,1424486788,2,Learning Java,self.java +24,1424459449,3,Value Based Classes,blog.codefx.org +0,1424456632,16,Do you think that Code Review checklist is a mandatory thing that a developer should follow,j2eebrain.com +0,1424454505,14,Object Oriented Test Driven Design in C and Java A Practical Example Part 3,insidethecpu.com +0,1424452552,6,Java EE Tutorial 12 1 Maven,youtube.com +5,1424445653,9,London JavaEE and GlassFish User Group with Peter Pilgrim,payara.co.uk +16,1424433967,13,All about MVC 1 0 the new MVC framework for Java EE 8,mvc.zeef.com +0,1424423659,4,Baeldung Weekly Review 8,baeldung.com +2,1424404662,3,Salary raise negotiation,self.java +4,1424388066,8,Spring Boot on OpenShift and Wildfly 8 2,blog.codeleak.pl +10,1424381420,5,Dependency Injection Without a Framework,drew.thecsillags.com +10,1424378567,9,Reactor 2 0 0RC1 debuts native reactive streams support,spring.io +4,1424372145,9,Using a JMS Queue to audit JPA entity reads,c4j.be +6,1424371676,9,Database Migrations in Java EE using Flyway Hanginar 6,blog.arungupta.me +3,1424364472,12,Instantly develop web apps on line with Rapidoid Java 8 cloud IDE,rapidoid.io +35,1424348230,17,Does a script language such as Python running on the JVM has the same performance as Java,quora.com +0,1424331617,4,Android studios help needed,self.java +4,1424328554,4,Getting Eclipse on arm,self.java +1,1424305684,7,RMI Problems Wall of exception via tcpdump,self.java +0,1424295086,6,Architecture Play 2 RESTful API AngularJS,self.java +2,1424293777,3,Opinions on school,self.java +3,1424291869,9,Liberty application server now free if RAM lt 2GB,developer.ibm.com +2,1424289461,8,Place with quality open source code for learning,self.java +0,1424276645,5,Junior Java Developer Position Available,self.java +1,1424268263,10,Java SDK for accessing data from forums news amp blogs,github.com +67,1424263736,7,Thou Shalt Not Name Thy Method Equals,blog.jooq.org +17,1424227633,17,As a professional do you spend more time writing your own code for editing someone else s,self.java +8,1424198646,7,SpringOne2GX 2015 CFP open close April 17th,springone2gx.com +25,1424196246,7,Netflix Nicobar Dynamic Scripting Library for Java,techblog.netflix.com +8,1424195619,5,What happened to spring rpc,self.java +3,1424177891,7,JavaLand 2015 Early Adopter s Area Preview,weblogs.java.net +8,1424177866,5,Quick view of fabric8 v2,vimeo.com +27,1424148819,9,JPA 2 1 12 features every developer should know,thoughts-on-java.org +11,1424142437,6,How useful are Sun SPOTs now,self.java +13,1424130069,11,why doesn t Java s type inference extend beyond lambda declarations,self.java +11,1424118065,18,Are there any libraries that mimic input devices such as keyboard mouse that is not the Robot class,self.java +9,1424106130,11,Does a library for getting objects from another running application exist,self.java +26,1424101056,16,Stagemonitor the open source java web application performance monitoring tool now has a public live demo,stagemonitor-demo.isys-software.de +37,1424095676,9,Byteman the Swiss army knife for byte code manipulation,blog.eisele.net +56,1424093133,12,Beginners Guide to Using Mockito and PowerMockito to Unit Test Java Code,johnmullins.info +6,1424072421,13,Java Weekly 8 15 Docker JVM mysteries a dynamic scripting lib and more,thoughts-on-java.org +3,1424071525,9,Hibernate locking patterns How does PESSIMISTIC_FORCE_INCREMENT Lock Mode work,vladmihalcea.com +31,1424069880,8,A Thorough Guide to Java Value Based Classes,blog.codefx.org +27,1424020301,6,Apache Tomcat 7 0 59 released,mail-archives.apache.org +0,1424015965,9,Strange behaviour of DELETE sub resource in Spring MVC,stackoverflow.com +0,1424010380,4,I need little help,self.java +0,1423993125,14,so the console is not giving me any output Any ideas why that is,imgur.com +5,1423955473,6,Java 8 streams API and parallelism,radar.oreilly.com +4,1423955049,9,Interesting things about the tests in the JUnit project,sleepeasysoftware.com +74,1423944184,19,I gathered all the Java 8 articles and presentations I was able to find on this one resources page,baeldung.com +0,1423929612,8,java 8 31 download broken on java com,self.java +22,1423925433,4,Multi Version JAR Files,openjdk.java.net +25,1423925306,13,Proposal removing all methods that use the AWT peer types in JDK 9,mail.openjdk.java.net +69,1423916032,7,Java Doesn t Suck Rockin the JVM,spring.io +15,1423886215,9,Where to go next with learning advanced Java concepts,self.java +3,1423870599,13,Is there a scientific calculator that can run java class files or jars,self.java +0,1423869092,3,Hot New Language,adamldavis.com +0,1423864675,8,Need ideas for a java based dissertation project,self.java +11,1423863436,27,Is there a service where you point it at a Github repo containing a pom xml file and it will automatically deploy to a public maven repo,self.java +7,1423830665,8,Oracle And IBM Are Moving In Opposite Directions,adam-bien.com +3,1423828137,8,Setting up Spring MVC JPA Project via XML,self.java +3,1423816139,2,Hardware programming,self.java +1,1423797988,7,Most similar Spring setup for Symfony2 team,self.java +29,1423797697,4,From net to Java,self.java +4,1423770276,4,Gemnasium alternatives for Java,self.java +8,1423765541,10,Ignore the Hype 5 Docker Misconceptions Java Developers Should Consider,blog.takipi.com +6,1423761969,14,Spring XD 1 1 GA goes big on streaming with Spark RxJava and Reactor,spring.io +33,1423760957,7,The Black Magic of Java Method Dispatch,shipilev.net +39,1423750477,5,Why Java Streams once off,stackoverflow.com +0,1423750039,7,Styling AEM forms and their error messages,blog.karbyn.com +17,1423742812,4,Writing Just Enough Documentation,petrikainulainen.net +5,1423726750,9,JavaFX desktop app through web start jnlp inconsistent behaviour,self.java +6,1423715975,12,What are some quick ways to learn a developement framework for Java,self.java +8,1423697858,4,Opinions on Oracle certification,self.java +8,1423692013,5,Building Microservices with Spring Boot,infoq.com +2,1423679037,3,Why use Java,self.java +0,1423676922,9,How to get date from JDateChooser into the textfield,self.java +8,1423671212,8,Better application events in Spring Framework 4 2,spring.io +2,1423670267,6,Reading log files of transaction system,self.java +9,1423668114,13,Why is my JVM having access to less memory than specified via Xmx,plumbr.eu +0,1423661162,7,Four NOs of a Serious Code Reviewer,yegor256.com +0,1423659949,9,Spring Integration Kafka Extension 1 0 GA is available,spring.io +55,1423656245,8,Various ways of writing SQL in Java 8,jooq.org +0,1423645241,7,Microbench Simple to use java microbenchmarking library,self.java +4,1423641186,10,Java 8 is it really nicer to use it everywhere,self.java +2,1423639657,6,Link Serialization With JAX RS 2,adam-bien.com +0,1423635456,5,OSGi Service Test Helper ServiceRegistrationRule,codeaffine.com +5,1423620791,6,Entry point try block why bad,self.java +3,1423613663,4,non enterprise build system,self.java +1,1423604917,13,Just starting to learn Java here curious about the steps in learning java,self.java +4,1423603734,5,Spring vs Stripes security wise,self.java +0,1423602221,6,Java Rant what do you think,self.java +2,1423598923,6,Spring Integration debuts a Kafka Extension,spring.io +5,1423597857,13,Spring for Apache Hadoop 2 1 goes big on YARN and Spring Boot,spring.io +0,1423582410,4,How to Use eBay,prolificprogrammer.com +92,1423577754,2,The Irony,i.imgur.com +32,1423562784,10,An introduction to JHipster the Spring Boot AngularJS application generator,spring.io +18,1423562366,7,Tips Tweaks and being Productive with Eclipse,codemonkeyism.co.uk +2,1423542113,3,Minimum Snippet Algorithm,self.java +0,1423540897,16,Need help with a text adventure on how to populate a monster to a specific room,self.java +4,1423524447,14,What are the methods that you use most that you had to create yourself,self.java +0,1423511616,10,Java is the Second Most Popular Programming Language of 2015,blog.codeeval.com +9,1423498819,11,Five years later how is the Oracle Sun marriage working out,itworld.com +0,1423497299,8,Android Studio Migration from Maven Central to JCenter,blog.bintray.com +57,1423497296,7,Dell develops new Java pattern matching solution,opensource.com +16,1423484947,12,Java Weekly 7 15 Clustering WebSockets Batch API Lab Valhalla and more,thoughts-on-java.org +2,1423475732,5,Primitives in Generics part 1,nosoftskills.com +2,1423472101,4,CFV New Project Kona,mail.openjdk.java.net +0,1423471431,7,From JSP to Thymeleaf with Spring Boot,c4j.be +1,1423464028,3,Geo Mapping Library,self.java +0,1423462557,7,Java Code Hacks The Ultimate Deadlock Workaround,blog.takipi.com +0,1423457244,8,Intro Java Tutorial Your 1st Program HelloWorld java,youtu.be +0,1423427043,3,Enumerations Numaraland rmalar,yusufkildan.com +24,1423425033,7,Musings about moving from Java to Scala,blog.rntech.co.uk +0,1423424351,5,Project i was working on,self.java +14,1423422832,7,Groovy in the light of Java 8,javaguru.co +4,1423416919,7,Algorithm for pretty printing a binary tree,self.java +0,1423415056,7,Intro Java Tutorial Install Java and Eclipse,youtu.be +1,1423358828,10,Building A Better Build Our Transition From Ant To SBT,codeascraft.com +6,1423351256,4,2D Java Minecraft Clone,self.java +6,1423350892,9,The Java Posse Java Posse 461 The last episode,javaposse.com +49,1423343939,15,JVM implementation challenges Why the future is hard but worth it JFokus Slides 2015 PDF,cr.openjdk.java.net +0,1423340518,5,Common Maven Problems and Pitfalls,voxxed.com +0,1423336227,4,Proper Usage Of Events,stackoverflow.com +6,1423328459,5,Testing with Spring 4 x,infoq.com +1,1423317666,8,Performance considerations iterating ResultSet vs linked H2 tables,self.java +0,1423307192,10,I need help I don t understand Java at all,self.java +6,1423307065,9,Project which populates a maven repository from github releases,self.java +0,1423307029,18,Wondering the best way to convert multiple lines of user input from console to one line of string,self.java +5,1423285068,12,JUnits How to compare 2 complex objects without overriding toequals hashcode methods,self.java +12,1423284011,12,Anyone have experience with Java based real time heavy processing oriented architectures,self.java +0,1423280183,4,Java DL website broken,javadl.sun.com +5,1423278535,9,Git Repos and Maven Archetypes Our First Web App,youtu.be +0,1423259277,14,Object Oriented Test Driven Design in C and Java A Practical Example Part 2,insidethecpu.com +2,1423257225,13,SimpleFlatMapper v1 5 0 csv and resultset mapper now with better customisation support,github.com +3,1423249290,12,ParsecJ Introduction to monadic parsing in Java x post from r programming,github.com +37,1423248701,5,New Java Champion Jacek Laskowski,blogs.oracle.com +10,1423242602,12,Embracing the Void 6 Refined Tricks for Dealing with Nulls in Java,voxxed.com +9,1423235430,7,What s new in JSF 2 3,jdevelopment.nl +7,1423233850,6,SIGAR System Information Gatherer And Reporter,self.java +0,1423213368,7,Java Training Courses Ahmedabad Java Coaching Classes,prabhasolutions.in +42,1423193774,9,JUniversal A new Java based approach to cross platform,msopentech.com +0,1423190946,15,Installed the JDK but it has adware in the installer did I mess up somehow,self.java +21,1423162668,4,All JavaOne 2014 Sessions,oracle.com +2,1423156070,13,I can t find a good tutorial for making Swing GUIs in IntelliJ,self.java +23,1423154898,8,Java 8 Method References explained in 5 minutes,blog.idrsolutions.com +2,1423139218,5,What is a Portlet 2005,onjava.com +90,1423133766,7,Top 10 Easy Performance Optimisations in Java,blog.jooq.org +2,1423131545,5,Primitives in Generics part 1,nosoftskills.com +4,1423113332,5,OSGi Service Test Helper ServiceCollector,codeaffine.com +17,1423105058,9,any good book for designing reactive systems in java,self.java +5,1423092604,5,Apache HttpClient 4 x Timeout,blog.mitemitreski.com +4,1423082542,4,Java Lambdas Quick Primer,self.java +3,1423077392,16,What kind of impact has Lamda expressions had on the refactoring tools and java code analysis,self.java +17,1423074406,10,r springsource Sub reddit for resources related to Spring framework,self.java +3,1423072149,6,Getting started with ArangoDB and Java,arangodb.com +0,1423069219,26,I was thinking about sending this to a girl whose in computer science The code doesn t quite work yet but I kinda like this idea,self.java +0,1423059926,3,45 Java Quiz,thecodersbreakfast.net +2,1423053344,5,Batch API Hands on Lab,blogs.oracle.com +1,1423023699,5,oracle java cloud services PaaS,cloud.oracle.com +1,1423023039,7,java play framework for lightweight web applications,playframework.com +9,1423007316,12,Is it possible to simulate a mouse click without moving the mouse,self.java +1,1423006461,3,InetSocketAddress Considered Harmful,tellapart.com +3,1423000839,9,Introducing Package Drone An OSGi first software artifact repository,packagedrone.org +31,1423000430,11,Trying to decide what to dive into next Scala or Groovy,self.java +6,1422996455,5,Maven support for Tomcat 8,self.java +9,1422988378,9,Moving from ANT scripts to Gradle for Java Projects,self.java +17,1422988171,10,SSO with OAuth2 Angular JS and Spring Security Part V,spring.io +12,1422984204,18,Trillian Mobile us RoboVM folks and Lodgon partner so you can write JavaFX apps for Android and iOS,voxxed.com +3,1422981493,15,In search of a tutorial which demonstrates login with Java EE 7 Netbeans and Glassfish,self.java +11,1422974014,8,DAGGER 2 A New Type of dependency injection,youtube.com +6,1422969074,6,Scaling Uber s Realtime Market Platform,qconlondon.com +21,1422964254,8,Why does JSF not just use plainish HTML,self.java +2,1422942176,10,GlassFish Became The Killer AppServer And Then Changed Its Name,adam-bien.com +1,1422935281,6,Hibernate config settings WAS to tomcat,self.java +0,1422923768,3,Suggested Java basics,self.java +16,1422922682,10,Do you use or have you used TomEE for production,self.java +0,1422919320,4,Scratch Java and Rotation,self.java +5,1422911224,9,Hibernate OGM NoSQL solutions for Java EE Hanginar 4,blog.arungupta.me +3,1422911171,13,Java Weekly 6 15 Micro Benchmarking NoSQL with Hibernate Horror Stories and more,thoughts-on-java.org +1,1422911001,9,Bitsquare A decentralized bitcoin fiat exchange coded in Java,self.java +0,1422903388,5,Why do programmers love coffee,giorgiosironi.com +2,1422899087,7,The Holy Grail a REST Query Language,baeldung.com +6,1422894537,8,5 Error Tracking Tools Java Developers Should Know,blog.takipi.com +7,1422893549,16,Just Graduated From Georgia State University CS Degree Looking for a Java job need some tips,self.java +34,1422891538,26,A NEW Java based Conway s Game of Life emulator with a multiplayer twist Looking for testers recommendations improvements Let me know what you think Thanks,github.com +3,1422884284,24,Trying to dust off Java skills after 5 years what can i add to my tiny project OR what can i do much better,github.com +6,1422880460,6,Recommendations of Software Developer Colaboration Tools,self.java +1,1422877088,10,Developer Interview DI13 Vlad Mihalcea vlad_mihalcea about High Performance Hibernate,blog.eisele.net +34,1422845758,7,Dropwizard painless RESTful JSON HTTP web services,codeaweso.me +3,1422831372,5,An introduction to Open Dolphin,guigarage.com +0,1422829716,21,What would be the best usage of these Interfaces And does order matter in any of these If so which ones,self.java +0,1422817961,10,How can I auto minify my css html and js,self.java +23,1422809144,3,Introduction to Akka,ivanyu.me +13,1422794575,4,Spring JPA Multiple Databases,baeldung.com +7,1422777678,6,ORM Haters Don t Get It,techblog.bozho.net +0,1422776078,8,is marketplace eclipse org down for anyone else,self.java +0,1422761089,6,Noob Java student need help please,self.java +1,1422758905,7,Access file outside of tomcat bin directory,self.java +0,1422750119,14,Java 8 security settings have rendered it useless to me Anybody got any suggestions,self.java +13,1422743341,8,How can I compile a users inserted code,self.java +0,1422726654,14,How can I detect 2d shapes in an image like circles squares and rectangles,self.java +0,1422721852,6,Run a method from another class,self.java +3,1422721633,11,What s new in Payara a GlassFish fork 4 1 151,payara.co +22,1422720232,3,LMDB for Java,github.com +4,1422708204,10,Java 8 Auto Update Java 7 End of Public Update,infoq.com +9,1422705321,4,Apache Maven quarterly report,maven.40175.n5.nabble.com +27,1422698716,5,Spring 4 and Java 8,infoq.com +0,1422696556,12,Please format the following piece of Java code to your preferred style,self.java +2,1422670795,23,Need to hash sets of primitive types I wrote a little utility class that does based on the methods described in Effective Java,gist.github.com +0,1422664975,5,Need help with dividing numbers,self.java +8,1422659783,4,The Serialization Proxy Pattern,blog.codefx.org +0,1422653918,7,found javascript spyware what does it do,self.java +0,1422653529,7,Issues with loading an image to screen,self.java +0,1422646987,5,Nedd Help Java w GUI,self.java +6,1422638453,17,Dropwizard Jhipster or just SpringBoot SpringMVC for modern java web development in a restful and enjoyable way,self.java +1,1422638230,6,Alternatives for ARM less JavaFX Users,voxxed.com +7,1422635774,13,New version of Java run time 8u31 is available with important security updates,oracle.com +25,1422624053,7,FYI java util Optional is not Serializable,stackoverflow.com +1,1422608385,4,A question about ArrayLists,self.java +6,1422608144,6,100 High Quality Java Developers Blogs,programcreek.com +0,1422602804,17,What s the status of relation between JEP 169 Value Objects Value Types for Java Object Layout,mail.openjdk.java.net +249,1422600617,12,Congratulations r Java has been chosen as the SUBREDDIT OF THE DAY,reddit.com +0,1422571936,7,500 Java Interview Questions answered with diagrams,java-success.com +1,1422563294,2,Struts2 Learning,self.java +4,1422560957,8,Static Inner Classes When is it too much,self.java +31,1422553985,8,Why does java not include overflow exception checking,self.java +0,1422550232,9,7 JIRA Integrations to Optimize Your Java Development Workflow,blog.takipi.com +0,1422549826,10,One of my favorite features of Intellij IDEA Call Hierarchy,sleepeasysoftware.com +4,1422548296,14,Spring XD 1 1 RC1 goes big on streaming with Spark Reactor and RxJava,dzone.com +2,1422545678,6,jClarity RMI and System gc Unplugged,jclarity.com +5,1422545609,6,CDI Part 2 The Advanced Features,youtube.com +20,1422545585,7,You Will Regret Applying Overloading with Lambdas,blog.jooq.org +3,1422541175,11,Should I learn any other languages or anything else before proceeding,self.java +15,1422539832,10,Simple Fluent Api for Functional Reactive Programming with Java 8,github.com +3,1422518172,7,Limitations of Java C C vs Java,self.java +5,1422503346,10,Net Web Developer looking to jump aboard the Java ship,self.java +55,1422502715,25,Do you ever feel like you ve spent so much of your profession in Java EE that it isn t worth it to jump ship,self.java +3,1422498929,10,What s a good tool to monitor alert JMX metrics,self.java +18,1422493501,7,Java Book Recommendations for Intermediate Advanced learning,self.java +8,1422484300,12,Is there a Java JSP equivalent to the ruby on rails guides,self.java +7,1422479733,8,Implementing a RESTful API Using Spring MVC Primer,self.java +1,1422479478,8,Part 3 Almost Everything about Replication feat Hazelcast,pushtechnology.com +0,1422478110,7,How to run 2 different java versions,self.java +0,1422475581,9,how can I download java version 1 6 0_29,self.java +6,1422470946,11,The API Gateway Pattern Angular JS and Spring Security Part IV,spring.io +0,1422465242,13,Does Maven Already Ship Witch Eclipse Luna or Should I Still Install It,self.java +13,1422457600,8,The Double Curly Braces Idiom a Poisoned Gift,beyondjava.net +4,1422447294,5,Java Management Extensions Best Practices,oracle.com +18,1422436544,5,Responsive PrimeFaces DataTable Part II,blog.primefaces.org +7,1422427635,12,How will Java 8 handle the leap second of June 30th 2015,self.java +0,1422426749,6,Difference between Abstract Class and Interface,net-informations.com +6,1422420097,9,SWT Look and Feel Customize FlatScrollBar Color and More,codeaffine.com +2,1422416539,5,Just getting into java programming,self.java +3,1422405187,4,javafx shape intersect image,self.java +12,1422400710,14,First official JSF 2 3 contribution from zeef com injection of generic application map,jdevelopment.nl +4,1422389702,4,Use Maven Not Gradle,rule1.quora.com +6,1422387157,10,Honest question what do you consider Java s biggest strength,self.java +7,1422381724,10,Drop in servlet plugin for user auth and user management,stormpath.com +52,1422351450,10,Grrrr Eclipse is still faster than IntelliJ gt Run program,self.java +21,1422350081,12,I m an experienced developer new to java what should I know,self.java +5,1422343013,13,ET a small library for exception conversion helps getting rid of checked exceptions,github.com +0,1422333574,7,What is this Eclipse icons for ants,imgur.com +0,1422323650,15,Why isn t there a package manager that s as good as NPM for Java,self.java +0,1422323642,7,Come watch me stream Spring and Hibernate,twitch.tv +23,1422315637,8,What motivated you to become a better programmer,self.java +23,1422307574,11,JavaEE learning resources for beginners Java EE Enterprise Edition Tutorial Learning,self.java +2,1422298448,6,Debugging Java 8 Lambdas with Chronon,chrononsystems.com +1,1422281722,9,Could anyone recommend some good project based java books,self.java +1,1422280682,13,Java Weekly 5 15 CDI in Java SE DeltaSpike James Gosling and more,thoughts-on-java.org +0,1422280090,9,The easiest ERD ORM integration ever Vertabelo and jOOQ,vertabelo.com +25,1422278433,2,OCaml Java,ocamljava.org +2,1422272942,9,Hibernate locking patterns How does Optimistic Lock Mode work,vladmihalcea.com +7,1422271057,9,What project management issue tracking software do you use,self.java +0,1422270213,9,Object Oriented Test Driven Design in C and Java,insidethecpu.com +1,1422265986,13,Firebird JDBC driver Jaybird 2 2 7 is released with a few fixes,firebirdsql.org +6,1422240165,6,IDEA users Have you used WebStorm,self.java +0,1422228780,7,Java Security Exception for Locally Run Applet,self.java +40,1422227304,5,Not Your Father s Java,voxxed.com +71,1422217229,15,What are the 5 Java frameworks I will use most frequently as a software developer,self.java +0,1422214472,16,I have a problem on hand more like a programming question rather than a java question,self.java +0,1422210862,6,How to make tetris in java,self.java +24,1422184497,21,Zero allocation Hashing 0 2 receives MurmurHash3 3 9 GB s on i5 4200M Now looking for volunteers to implement FarmHash,github.com +13,1422153170,7,I want to make something in Java,self.java +0,1422120401,7,Can someone help me with a program,self.java +8,1422118835,10,Search In A Box With Docker Elastic Search and Selenium,alexecollins.com +0,1422118741,4,Capture Behaviors in Closures,medium.com +46,1422114093,4,Announcing Gradle Tutorial Series,rominirani.com +0,1422110816,4,ExecuteQuery v4 3 0,executequery.org +0,1422104801,5,Tapestry 5 4 beta 26,tapestry.apache.org +0,1422104741,5,Jetty 9 2 7 v20150116,dev.eclipse.org +0,1422104548,5,Javassist 3 19 0 GA,github.com +0,1422104493,6,Apache Tomcat 8 0 17 available,mail-archives.apache.org +16,1422103084,10,The Resource Server Angular JS and Spring Security Part III,spring.io +14,1422084891,10,There is any good quality image manipulation library in Java,self.java +16,1422061178,3,Best Java Conferences,self.java +3,1422029711,10,A recipe for a data centric rich internet application Blog,vaadin.com +0,1422023234,8,help with a simple java program stack unstack,self.java +13,1422012208,11,How to Translate SQL GROUP BY and Aggregations to Java 8,blog.jooq.org +11,1422006439,9,youtube Java and the Wave Glider with James Gosling,youtube.com +0,1422005467,16,Need help looking for ebook Starting Out with Java Early Objects 5th Edition isbn 978 0133776744,self.java +0,1422002737,14,Thread Magic Tricks 5 Things You Never Knew You Can Do with Java Threads,blog.takipi.com +0,1421975227,5,Eclipse HELP lost my workspace,self.java +0,1421973886,12,For all you people with insomnia i made an App for you,self.java +6,1421973711,8,Converting an Image to Gray Scale in Java,codesquire.com +3,1421972225,24,Here is an image of my javadoc setup for LWJGL Can you tell me why this doesn t work eclipse says it s valid,i.imgur.com +7,1421967728,4,PrimeFaces responsive data table,primefaces.org +17,1421956667,14,Looking for an article about how coding to make testing easier improves code design,self.java +10,1421953482,10,Real time performance graphs for java web applications Open Source,stagemonitor.org +7,1421953048,6,Let s bring Swift to JVM,self.java +0,1421951446,5,Help with installing Eclipse luna,self.java +8,1421946223,5,Partial Functions in Java 8,self.java +5,1421944494,8,Java testing using FindBugs and PMD in NetBeans,blog.idrsolutions.com +4,1421942063,9,NoSQL with Hibernate OGM 101 Persisting your first entities,in.relation.to +87,1421938138,10,5 Advanced Java Debugging Techniques Every Developer Should Know About,infoq.com +9,1421935664,12,The most popular upcoming Java EE 8 technologies according to ZEEF users,arjan-tijms.omnifaces.org +2,1421935346,5,Development Horror Story Release Nightmare,radcortez.com +0,1421930699,5,Polymorphism in any IT system,self.java +20,1421928286,5,If Then Throw Else WTF,yegor256.com +0,1421917696,4,Lombok and JSTL issue,self.java +0,1421914876,5,Help with Binary Converter Program,self.java +0,1421907934,13,My Opinion Banning break and continue from your loops will improve code quality,sleepeasysoftware.com +5,1421898755,5,Help with try catch statements,self.java +18,1421880955,6,Lightweight Javac Warning Annotation library 3kb,github.com +12,1421872748,8,Web App Architecture the Spring MVC AngularJs stack,blog.jhades.org +2,1421867986,7,Top testing tips for discriminating java developers,zeroturnaround.com +12,1421855266,9,A New Try with resources Improvement in JDK 9,blog.mitemitreski.com +4,1421853065,12,Is Spring Framework a good choice for an Internet of Things backend,self.java +45,1421844692,9,More concise try with resources statements in JDK 9,blogs.oracle.com +10,1421842865,5,New IntelliJ Tricks Part 2,trishagee.github.io +27,1421840334,5,Safe casting idiom Java 8,self.java +1,1421835245,7,How to make 2d games in java,self.java +13,1421832757,15,Yeoman generator for java library hosted on github with quality checks and maven central publishing,github.com +2,1421829341,12,20 Reasons Why You Should Move to JavaFX and the NetBeans Platform,informit.com +18,1421828801,14,Ben Evans Java Champion reviews Java in 2014 and looks forward to Java 9,jclarity.com +5,1421802645,3,Java Developer Roadmap,self.java +15,1421792859,7,Oracle Critical Patch Update Advisory January 2015,oracle.com +11,1421789016,8,Examples of GoF Design Patterns in Java APIs,stackoverflow.com +0,1421784724,9,Graduate Java Developer looking for advices on his portfolio,self.java +1,1421782828,5,MDB JMS and vice versa,dzone.com +11,1421782710,9,Heads Up on Java EE DevNexus 2015 The Aquarium,blogs.oracle.com +33,1421782279,13,Fork Join Framework vs Parallel Streams vs ExecutorService The Ultimate Fork Join Benchmark,blog.takipi.com +5,1421780194,13,Suis je Groovy No What Pivotal s Decision Means for Open Source Software,java.dzone.com +0,1421779929,10,The Resource Server Angular JS and Spring Security Part III,spring.io +11,1421779559,11,Microservice Registration and Discovery with Spring Cloud and Netflix s Eureka,spring.io +2,1421754990,7,Apache FOP Integration with Eclipse and OSGi,codeaffine.com +9,1421753233,9,Bug in JavaFX SceneBuilder how can I report it,self.java +37,1421753071,20,As I haven t found any examples of Java music visualisers I m sharing the solution I came up with,github.com +0,1421728504,5,Where can I execute EJBs,dzone.com +18,1421728476,8,Micro Benchmarking with JMH Measure Don t Guess,voxxed.com +0,1421707644,19,What is involved in a graduate scheme when joining an IT company as a graduate Java developer or equivelant,self.java +23,1421699117,19,Pivotal drops sponsorship of Grails but Grails will continue active development according to Graeme Rocher head of Grails project,grails.io +15,1421698512,10,Java 8 LongAdders The Fastest Way To Add Numbers Concurrently,blog.takipi.com +8,1421695701,7,A simple search app for maven archetypes,wasis.nu +8,1421695471,10,How to execute bat files from an executable jar file,self.java +64,1421688059,15,Groovy 2 4 And Grails 3 0 To Be Last Major Releases Under Pivotal Sponsorship,blog.pivotal.io +7,1421687917,18,Pivotal is no longer sponsoring Grails I have a Grails project in the works What should I do,self.java +3,1421677972,5,Question on Jasper Report JRXML,self.java +9,1421675734,12,Best tools for creating a quick prototype demo gui for rest services,self.java +2,1421641826,7,Is 3D game programming good for beginners,self.java +17,1421613921,11,How much did do you earn as a graduate Java Developer,self.java +7,1421610534,8,Looking for code coverage tooling with Maven integration,self.java +11,1421610356,7,Java 8 lambda performance is not great,self.java +22,1421610197,7,TeaVM Compiles Java byte code to Javascript,teavm.org +15,1421608773,7,How to write your own annotation processor,hannesdorfmann.com +59,1421597444,9,JitPack Easy to use package repository for Java projects,jitpack.io +19,1421593067,5,Working with doc docx files,self.java +10,1421590083,9,Getting Started with Gradle Creating a Multi Project Build,petrikainulainen.net +9,1421589816,10,2015 Proof Of Concept JSF 2 0 Distributed Multitiered Application,java.dzone.com +11,1421588918,6,Whiteboards do you guys use them,self.java +19,1421565181,5,Audit4j 2 2 0 released,audit4j.org +4,1421512037,8,Follow JSF 2 3 development via GitHub mirror,jdevelopment.nl +25,1421510814,5,Apache Tika 1 7 Released,mail-archives.apache.org +0,1421506159,10,Simple Java EE JSF Login Page with JBoss PicketLink Security,ocpsoft.org +13,1421505501,8,JSF 2 3 Using a CDI managed Converter,weblogs.java.net +2,1421504898,14,HELP Program only detects 32bit java but requires 64bit java to increase ram usage,self.java +2,1421476177,7,Jgles2 a slim wrapper around GLES2 0,self.java +0,1421465023,2,Eclipse Issue,self.java +16,1421463460,9,Example java applications that don t use an ORM,self.java +3,1421440494,13,Take a look at my seminar work It is a math expression parser,pilif0.net +4,1421432301,26,SimpleFlatMapper v1 3 0 very fast micro orm that can be plugged in jooq sql2o spring jdbc and fast and easy to use csv parser mapper,github.com +10,1421428466,6,Favorite Java build and deploy toolchain,self.java +0,1421420874,10,Top Java Blogs redesigned with blog icons and top stories,topjavablogs.com +40,1421416882,7,Java 9 Doug Lea reactive programming proposal,cs.oswego.edu +5,1421416282,5,Printing of a big jTable,self.java +0,1421399936,8,How to shut mouth of a C bigot,self.java +35,1421395380,8,Everything You Need To Know About Default Methods,blog.codefx.org +19,1421386561,7,New to Intellij IDEA IDE tips tricks,self.java +6,1421386044,3,Java serial comm,self.java +0,1421363705,5,Java BMI Calculator Using Eclipse,self.java +14,1421357849,9,vJUG Java and the Wave Glider with James Gosling,voxxed.com +0,1421357447,15,How can I run methods outside of main in Eclipse with ease like in BlueJ,self.java +5,1421353984,7,Deep Dive All about Exceptions Freenode java,javachannel.org +6,1421351815,8,Micro Benchmarking with JMH Measure don t guess,antoniogoncalves.org +7,1421342387,7,RichFaces 4 5 2 Final Release Announcement,developer.jboss.org +14,1421341541,6,Class Reloading in Java A Tutorial,toptal.com +11,1421341391,10,Mysterious 4 4 1 20150109 Eclipse Luna update is SR1a,jdevelopment.nl +14,1421335863,12,HighFaces new open source JSF 2 chart component library based on HighCharts,highfaces.org +5,1421333917,8,Surprisingly useful methods that do nothing at all,benjiweber.co.uk +2,1421332080,17,Question would it be better to change my KryoNet based communication between programs for a RabbitMQ RPC,self.java +8,1421327360,6,Thoughts on Object Oriented Class Design,chase-seibert.github.io +3,1421326522,5,Lightweight Java Database APIs Frameworks,self.java +12,1421325157,20,What s the best way to throw exceptions The old school don t use go to s or returns debate,self.java +5,1421321695,5,Spring Clound and centralized configuration,spring.io +3,1421317666,7,How do you evaluate a Java Game,self.java +0,1421316597,4,The Rubber Ducky Debugging,youtube.com +0,1421306368,10,Stream js The Java 8 Streams API ported to JavaScript,github.com +8,1421288621,10,What is working for a company that uses Java like,self.java +8,1421286538,6,Where do you go for hosting,self.java +4,1421278504,7,12 Factor App Style Configuration with Spring,spring.io +0,1421278414,4,FourorLess my first App,gcclinux.co.uk +62,1421272866,9,What s the neatest code you ve ever seen,self.java +1,1421267119,10,static mustache Statically checked compiled logicless templating engine for java,github.com +1,1421264079,7,Stalwarts of Tech Interview with John Davies,jclarity.com +1,1421259535,5,A question about lambda expressions,self.java +20,1421255662,6,Advanced Java Application Deployment Using Docker,blog.tutum.co +1,1421252592,19,Is there a way I can use the libraries imported by another java file w o importing it again,self.java +4,1421246754,7,JSF amp PrimeFaces amp Spring video tutorial,javavids.com +10,1421245017,9,Is Java pass by value or pass by reference,javaguru.co +19,1421242240,7,Good news Java developers Everyone wants you,infoworld.com +27,1421241785,10,Four techniques to improve the performance of multi threaded applications,plumbr.eu +5,1421214037,14,Self Contained Systems and ROCA A complete example using Spring Boot Thymeleaf and Bootstrap,blog.codecentric.de +27,1421199938,6,JUnit tests that read like documentation,mikedeluna.com +0,1421197971,6,Lerning Java Online Where to start,self.java +0,1421187174,10,Idea gathering for Java related course project topic 100 150hours,self.java +0,1421186530,8,Stop webapp on tomcat from CMD line issues,self.java +9,1421185698,19,Switching from the love of my life Intellij Idea to eclipse A quick question that bugs me like crazy,self.java +1,1421174827,8,Java 8 Streams API as Friendly ForkJoinPool Facade,squirrel.pl +6,1421172114,5,Valhalla Caution bleeding edge ahead,mail.openjdk.java.net +0,1421169042,12,Mental Manna Traverse a BST in order using iteration instead of recursion,geekviewpoint.com +7,1421167677,5,Java8 Sorting BEWARE Performance Pitfall,rationaljava.com +0,1421164859,10,What s Stopping Me Using Java8 Lambdas Try Debugging Them,rationaljava.com +2,1421164615,16,Looking for conference topics what is new and exciting in the world of Java in 2015,self.java +26,1421162706,22,What topics would you include in an hour long lecture on Java for students with no prior experience with object oriented programming,self.java +15,1421162285,9,Running tests on both JavaFX and Swing using Junit,blog.idrsolutions.com +13,1421160754,7,Easy to understand Java 8 predicate example,howtodoinjava.com +12,1421157190,5,System in stdin through Tomcat,self.java +13,1421143228,12,Neanderthal a fast native Clojure matrix library 2x faster than jBLAS benchmarks,neanderthal.uncomplicate.org +2,1421142581,6,PrimeFaces Elite 5 1 8 Released,blog.primefaces.org +21,1421139302,7,DoorNFX Touchscreen JavaFX 8 on Raspberry Pi,voxxed.com +5,1421128699,5,Spring Security Roles and Privileges,baeldung.com +11,1421116021,8,How to tell if a file is accessed,self.java +0,1421113499,7,Why Java could not compete with PHP,github.com +1,1421112805,17,15 Want to get a jump on Java before taking my school s AP Computer Science class,self.java +32,1421097555,5,What ORM do you use,self.java +3,1421092776,14,How does Facebook integration work with web applications when retrieving data from their database,self.java +0,1421089335,9,How often do you need to configure a bean,self.java +12,1421088377,10,Flavors of Concurrency in Java Threads Executors ForkJoin and Actors,zeroturnaround.com +12,1421084611,7,Getting Started With IntelliJ IDEA Live Templates,voxxed.com +1,1421083929,8,AYLIEN Java client Library for Text Analysis SDK,github.com +75,1421073543,5,Java 8 No more loops,deadcoderising.com +6,1421071804,5,Flyway 2014 Year in Review,flywaydb.org +5,1421063462,9,How do you handle Configuration for your web apps,self.java +2,1421048988,8,A beginner s guide to Java Persistence locking,vladmihalcea.com +59,1421044559,18,Code Bubbles is an IDE that allows you to lay out and edit your code visually by function,cs.brown.edu +2,1421021230,5,College Student New to Java,self.java +22,1421003322,5,New Blog for Java 8,java8examples.com +37,1421002370,10,Brian Goetz Lambdas in Java A peek under the hood,youtube.com +33,1420956291,9,Any projects open source projects need a java developer,self.java +0,1420908720,8,Get Keywords By Using Regular Expression in Java,programcreek.com +4,1420905378,13,Eclipse not being able to guess the types of elements in a collection,self.java +3,1420903673,5,Good introductory texts for Java,self.java +4,1420890437,7,Business Rules Management in Java with Drools,ayobamiadewole.com +28,1420877028,5,First rule of performance optimisation,rationaljava.com +0,1420833824,11,Why Now is the Perfect Time to Upgrade to Java 8,blog.appdynamics.com +6,1420831837,11,Why is there no official mature library for modern Rest Authentication,self.java +19,1420830582,7,How to get Groovy with Java 8,javaguru.co +3,1420827857,8,Arquillian Container WebLogic 1 0 0 Alpha3 Released,arquillian.org +6,1420827310,8,Any good JSF libraries for JCR Modeshape content,self.java +7,1420819946,9,Make your Primefaces app load faster with lazy loading,blogs.realdolmen.com +8,1420817610,8,A Look Back at 2014 8 Great Things,blogs.oracle.com +7,1420796777,6,Initial milestone of JSF 2 3,blogs.oracle.com +0,1420792276,9,Calendar to Date issue This could cause big problems,stackoverflow.com +78,1420791085,5,Java quirks and interview gotchas,dandreamsofcoding.com +5,1420790412,12,Open source APM tool for large scale distributed systems written in Java,github.com +8,1420782826,6,Spring Session 1 0 0 RELEASE,spring.io +9,1420756636,5,Java 8 Streams and JPA,blog.informatech.cr +0,1420754377,9,Call stored proc using Spring JDBC with input output,self.java +1,1420752275,10,Curious What did you read to help you learn Java,self.java +3,1420748337,7,Java IDE IntelliJ Community Edition or Eclipse,self.java +12,1420748266,2,Programmer Knowledge,henrikwarne.com +3,1420746380,13,Another nail in the app server coffin Spring Session 1 0 0 GA,spring.io +4,1420745642,13,Java 8 Q amp A with Brian Goetz and Anglika Langer video JAX2014,jaxenter.de +21,1420743409,6,Securing REST APIs With Spring Boot,ryanjbaxter.com +16,1420740423,15,JVM support for structural descriptions of dynamically generated pattern instantiating classes x post r programming,cr.openjdk.java.net +6,1420737968,5,LWJGL 2 9 2 Released,blog.lwjgl.org +1,1420735556,15,Is it possible to import dictionaries natural languages like English and Spanish into your programs,self.java +1,1420725451,7,How To Build A Boolean Expression Evaluator,unnikked.ga +5,1420725267,13,The Ultimate Guide 5 Methods for Debugging Production Servers at Scale High Scalability,highscalability.com +2,1420723345,6,I need advice for solo Java,self.java +67,1420722483,8,Java 8 Default Methods Explained in 5 minutes,blog.idrsolutions.com +4,1420721286,3,Fastest Matrix Library,self.java +10,1420716922,4,Lambda VS clean code,self.java +0,1420716417,9,My Journey away from Play Framework and back again,medium.com +6,1420709806,7,New advanced diagram component introduced in PrimeFaces,blog.primefaces.org +5,1420700990,12,NetBeans Software for Explosive Ordnance Disposal amp Clearance Divers Geertjan s Blog,blogs.oracle.com +9,1420698985,7,New Javadoc Tags apiNote implSpec and implNote,blog.codefx.org +11,1420697204,8,gngr a browser under development in pure Java,gngr.info +11,1420695836,16,Interview with Charles Nutter co lead of the JRuby project on the future of the JVM,ugtastic.com +7,1420678842,9,How to make some sort of an executable file,self.java +11,1420678377,11,Need Advice What would the best way to modularize JSF applications,self.java +0,1420654896,18,Get started in no time with JAX RS Jersey with Spring Boot Spring Data Spring Security Spring Test,blog.codeleak.pl +15,1420647199,6,Using Comsat with Standalone Servlet Containers,blog.paralleluniverse.co +29,1420645742,9,Inside the Hotspot VM Clocks Timers and Scheduling Events,blogs.oracle.com +25,1420645135,14,Thread Magic Tricks 5 Things You Never Knew You Can Do with Java Threads,blog.takipi.com +11,1420640559,5,Need recommendations on Cassandra books,self.java +19,1420636334,10,Tutorial IntelliJ IDEA Plugin Development Getting Started and the StartupActivity,cqse.eu +2,1420632349,12,using uniVocity 1 0 7 to export data and generate test databases,univocity.com +2,1420620338,16,Beginner with the Java tech What softwares do i need on my computer to learn efficiently,self.java +0,1420601906,10,Scraping Vine Videos from the Twitter Streaming APIs in Java,dannydelott.com +23,1420592628,10,I want to get ahead of my Computer Science class,self.java +12,1420587601,7,Java EE authorization JACC revisited part II,arjan-tijms.omnifaces.org +0,1420585358,9,Caching and Messaging Improvements in Spring Framework 4 1,infoq.com +0,1420583891,7,Package JSF Flow in a JAR file,byteslounge.com +2,1420582276,8,IntelliJ idea Any video tutorial to run jUnit,self.java +0,1420576723,5,Java code noob help plz,self.java +7,1420573479,12,Loading view templates from a database with Thymeleaf composing multiple template resolvers,blog.kaczmarzyk.net +14,1420572777,9,Simple Java to Java remoting library using HTTP S,self.java +3,1420567662,9,From JPA to Hibernate legacy and enhanced identifier generators,vladmihalcea.com +6,1420566949,9,Building a HATEOAS API with JAX RS and Spring,blog.codeleak.pl +5,1420562089,20,Any Spring Roo users here How does the new 1 3 version compare with Spring Boot for a new project,self.java +6,1420554169,9,FreeBuilder automatic builder pattern implementation for your value types,freebuilder.inferred.org +9,1420549316,14,5 reasons why JavaFX is better than Swing for developing a Java PDF viewer,dzone.com +7,1420534526,9,NetBeans Top 5 Highlights of 2014 Geertjan s Blog,blogs.oracle.com +0,1420522888,6,Using Netflix Hystrix annotations with Spring,java-allandsundry.com +3,1420521565,8,How to get NBA scores for my application,self.java +0,1420511386,26,Seeking opinions Does the fact that Oracle s Java Mission Control was built on the Eclipse platform mean anything for the future of the NetBeans platform,self.java +1,1420506426,9,Java Web Start In or Out of the Browser,blogs.oracle.com +11,1420505177,16,la4j 0 5 0 with composable iterators is released up to 20x speedup on sparse data,github.com +22,1420504069,11,A Persistent KeyValue Server in 40 Lines and a Sad Fact,voxxed.com +3,1420487192,16,Simple Flat Mapper v 1 2 0 fast and easy to use mapper from flat record,github.com +4,1420456719,4,Finally Retry for Spring,java-allandsundry.com +6,1420456162,10,Login For a Spring Web App Error Handling and Localization,baeldung.com +32,1420453319,12,Difference between WeakReference vs SoftReference vs PhantomReference vs Strong reference in Java,javacodegeeks.com +1,1420445047,12,Spring from the Trenches Resetting Auto Increment Columns Before Each Test Method,petrikainulainen.net +0,1420442573,13,An alternative API for filtering data with Spring MVC amp Spring Data JPA,blog.kaczmarzyk.net +31,1420441832,15,Java 9 and Beyond Oracle s Brian Goetz and John Rose Glimpse into the Future,infoq.com +2,1420400192,9,Anyone have any J2EE EJB primer books to recommend,self.java +0,1420390837,4,Learn Java with Examples,adarshspatel.in +7,1420382516,4,Twitter bot with Java,self.java +53,1420373917,3,Java without IDE,self.java +4,1420370593,14,Spring Framework 4 1 4 amp 4 0 9 amp 3 2 13 released,spring.io +9,1420328929,5,Java Past Present and Future,infoq.com +5,1420309062,6,Netty 4 0 25 Final released,netty.io +23,1420304550,4,Valhalla The Any problems,mail.openjdk.java.net +4,1420303716,6,Apache Commons Pool 2 3 released,mail-archives.apache.org +54,1420303317,10,My first path tracer that I wrote purely in Java,github.com +9,1420279466,8,Todd Montgomery Discusses Java 8 Lambdas and Aeron,infoq.com +9,1420263186,2,Invokedynamic 101,javaworld.com +2,1420231387,10,A simple use case comparison of JVM libraries for MongoDB,insaneprogramming.be +43,1420215381,6,Mockito Mock Spy Captor and InjectMocks,baeldung.com +17,1420185926,5,Instances of Non Capturing Lambdas,blog.codefx.org +23,1420183912,10,A beginner s guide to JPA Hibernate entity state transitions,vladmihalcea.com +5,1420150616,5,Java 2D game Space Shooter,github.com +0,1420149757,6,how to draw shapes using java,cakejava.com +0,1420144699,8,NetBeans is awfully sluggish laggy on retina MBP,self.java +5,1420134938,7,Is comparing String different than comparing objects,javaguru.co +0,1420126528,14,Anybody wants to create a Java game libgdx for android and ios with me,self.java +14,1420124536,9,Develop powerful Big Data Applications easily with Spring XD,youtube.com +21,1420065755,10,What is The Best Way To Monitor A Java Process,self.java +1,1420043485,11,For Spring development is the Spring Tool Suite better than Netbeans,self.java +3,1420039756,13,Article on using FindBugs to squash bugs in Java with NetBeans and Ant,dzone.com +10,1420024804,12,A tutorial for persisting XML data via JAXB and JPA with HyperJAXB3,confluence.highsource.org +29,1420019679,6,Java 8 The Design of Optional,blog.codefx.org +2,1420004818,7,2014 A year review for Spring projects,spring.io +25,1419974615,6,Java 8 WTF Ambiguous Method Lookup,jvilk.com +3,1419973391,9,JAX RS Rest Service Example with Jersey in Java,memorynotfound.com +2,1419973333,14,Tutorial 19 JSTL Afficher le contenu d un fichier XML dans une page JSP,cakejava.com +6,1419972785,10,Calculate Relative Time also known as Time Ago In Java,memorynotfound.com +16,1419968120,21,Fast and stateless API authentication with Spring Security an article with a demo app Java Config embedded Jetty 9 EHCache etc,resilientdatasystems.co.uk +6,1419947636,6,Sizzle java singleton dependency management library,self.java +15,1419941309,2,Hibernate Pagination,baeldung.com +32,1419931276,9,New Java 8 Date and JPA 2 1 Integration,adam-bien.com +0,1419930214,6,Java vs PHP for website development,self.java +6,1419895241,8,Under The Hood With Java 10 Enhanced Generics,infoq.com +0,1419886935,3,Java SE Cakejava,cakejava.com +0,1419883798,4,Java developers on Logging,self.java +6,1419877911,8,Apache Maven Surefire Plugin 2 18 1 Released,maven.40175.n5.nabble.com +16,1419869974,6,Apache Commons Math 3 4 Released,mail-archives.apache.org +0,1419869263,14,What would be the effects of a significant breakthrough in quantum computing for programmers,self.java +0,1419857927,11,Leaky Abstractions or How to Bind Oracle DATE Correctly with Hibernate,blog.jooq.org +75,1419856122,14,Java based open source tool Cryptomator encrypts your cloud files Join me on Github,cryptomator.org +0,1419836973,8,Top 10 Websites for Advanced Level Java Developers,programcreek.com +2,1419836292,10,Difference between servlet xml and applicationContext xml in Spring framework,javaguru.co +30,1419833244,6,Iterating over collections in Java 8,javaworld.com +2,1419817218,5,Spring with intellij community edition,self.java +19,1419811403,7,Exact String Matching Algorithms Animation in Java,www-igm.univ-mlv.fr +15,1419804109,7,Java EE authorization JACC revisited part I,arjan-tijms.omnifaces.org +11,1419780000,9,Manipulating JARs WARs and EARs on the command line,javaworld.com +2,1419770177,5,Spring Batch Hello World Tutorial,javahash.com +0,1419767598,11,I d like to learn java No prior experience with programming,self.java +6,1419764821,7,Space verus Time in Java s ObjectOutputStream,maultech.com +6,1419762582,4,Asynchronous timeouts with CompletableFuture,nurkiewicz.com +74,1419758773,12,Marco Behler s 2014 Ultimate Java Developer Library Tool amp People List,marcobehler.com +3,1419752504,9,JPA 2 1 How to implement a Type Converter,thoughts-on-java.org +19,1419718182,18,Can someone explain to me container less deployment and why it s better than using tomcat with spring,self.java +8,1419716950,18,Do you think there s any reason to pick up Scala in 2015 is Java 8 widespread enough,self.java +3,1419708131,6,Should I upgrade to Java 8,self.java +41,1419692550,8,Three Reasons Why I Like the Builder Pattern,petrikainulainen.net +15,1419691689,2,Java Timer,baeldung.com +29,1419674403,6,Apache Maven 3 2 5 Release,maven.40175.n5.nabble.com +11,1419674329,5,Apache POI 3 11 released,mail-archives.apache.org +6,1419617927,6,Java Question Making your database portable,self.java +36,1419606056,6,How to build a Brainfuck interpreter,unnikked.ga +14,1419603250,4,Java 8 flatMap example,adam-bien.com +1,1419588566,6,Java book for an experienced programmer,self.java +0,1419578206,4,Best Java Swing books,self.java +8,1419574052,11,Java question Can you make an iOS game app with Java,self.java +0,1419548318,4,Oracle Certification JSE Programmer,self.java +7,1419543024,8,Interview with Erin Schnabel on the Liberty Profile,infoq.com +34,1419534330,16,Performance of various general compression algorithms some of them are unbelievably fast Java Performance Tuning Guide,java-performance.info +57,1419533467,11,Random value has a 25 75 distribution instead of 50 50,stackoverflow.com +23,1419524368,6,Unsigned int considered harmful for Java,nayuki.io +0,1419497208,6,Books for Java beginners on Nook,self.java +0,1419480821,5,Declaring Objects in java question,self.java +8,1419442350,7,14 Tips for Writing Spring MVC Controller,codejava.net +34,1419438244,6,Merry Christmas to all who Celebrate,self.java +0,1419432879,6,Install Java and Set class path,youtube.com +15,1419431619,8,My 3 Christmas wishes for Java EE Security,self.java +6,1419423648,17,why there is no JSR specification for Aspect oriented programming like jpa servlet if there is no,self.java +16,1419376893,14,Spring XD 1 1M2 introduces Kafka based message bus deeper Reactor and RabbitMQ support,spring.io +3,1419359805,19,Is there anyway i can code an app widget that can help me automate the work that i do,self.java +5,1419341647,12,Developing web sites in Java frameworks JFS JSP MVC good or bad,self.java +10,1419333980,11,What s up with Java EE 8 A Whistle Stop Tour,voxxed.com +15,1419333275,18,PrimeFaces Elite 5 1 7 is released featuring the new Steps Component new PhotoCam improved accessibility and more,blog.primefaces.org +0,1419325692,8,JDK JRE Class Loader Bytecode Bytecode Interpretor JVM,youtube.com +16,1419314844,11,A beginner s guide to transaction isolation levels in enterprise Java,vladmihalcea.com +17,1419312452,8,Audit4j An open source auditing framework for Java,audit4j.org +0,1419301317,7,What can I actually build with Java,self.java +0,1419280080,4,Teaching Kids Java Programming,infoq.com +12,1419271138,7,Easy way to visualize your REST APIs,java.dzone.com +27,1419257069,12,Valhalla Bleah Layers are too complicated was Updated State of the Specialization,mail.openjdk.java.net +20,1419254370,7,Bridging Undertow s authentication events to CDI,jdevelopment.nl +29,1419232537,12,Are You Binding Your Oracle DATEs Correctly I Bet You Aren t,blog.jooq.org +13,1419231659,6,OpenJDK 8 builds for MS Windows,self.java +4,1419186302,5,Commons Codec 1 10 HMAC,commons.apache.org +43,1419146993,11,Looking into the Java 9 Money and Currency API JSR 354,mscharhag.com +9,1419139490,7,Alternative to locks and actors slides pdf,github.com +2,1419130372,5,Hibernate DDL missing a table,self.java +13,1419111586,7,How to modify JSF library load order,beyondjava.net +6,1419109675,10,Fujaba From UML to Java and Back Again CASE tool,fujaba.de +0,1419104129,4,where do I start,self.java +16,1419101486,8,Image Editor App Swing vs Awt vs JavaFX,self.java +5,1419095887,12,Remember that satirically over engineered adding library from a few years back,self.java +5,1419086592,3,AntLR 4 4,github.com +11,1419076898,11,Why standards are hot or why I still like Java EE,adam-bien.com +12,1419065939,6,Valhalla Updated State of the Specialization,mail.openjdk.java.net +194,1419026726,13,The most useful Eclipse shortcuts in gif form and a printable cheat sheet,elsealabs.com +15,1419025177,4,JDBI JDBC or Hibernate,self.java +2,1419020230,5,Mojarra 2 2 9 released,java.net +7,1419014027,13,Spring for Apache Hadoop 2 1 0M3 improves YARN and Spring Boot support,spring.io +4,1419010351,11,Big microservice infrastructure strides with Spring Cloud 1 0 0 RC1,spring.io +10,1419003426,3,Online Java Degree,self.java +11,1418991418,7,Camel Selective Consumer using JMS Selector Example,pretechsol.com +4,1418968691,12,Object Streams Serialization and Deserialization using Serializable Interface to save objects state,codingeek.com +0,1418961112,7,Newbie in need of help with objects,self.java +57,1418951480,8,Why are public fields so demonized in Java,self.java +0,1418946571,5,Restlet framework 2 3 0,restlet.com +0,1418946522,5,Jetty 9 2 6 v20141205,dev.eclipse.org +6,1418900810,3,Java Advent Calendar,javaadvent.com +15,1418897372,8,First Hibernate OGM release aka 4 1 Final,in.relation.to +6,1418869415,7,Numeric behavior change in 1 8 0_20,self.java +3,1418850990,7,Does anybody have any experience with Lanterna,self.java +3,1418849843,14,Spring IO Platform 1 1 0 adds new Spring Integration tech to platform distro,spring.io +0,1418844379,8,Deploying a Java Application with Docker and Tutum,blog.tutum.co +12,1418840889,8,Dynamic Code Evolution VM for Java 7 8,github.com +0,1418837143,9,Can I get help debugging my breakout game code,self.java +6,1418821689,12,Eric D Schabell Jump Start Your Rules Events Planning and BPM Today,schabell.org +5,1418821153,9,How jOOQ Leverages Generic Type Safety in its DSL,javaadvent.com +18,1418820865,9,All about Java EE 8 End of year update,javaee8.zeef.com +1,1418790142,2,ELI5 Encapsulation,self.java +43,1418781082,8,Can we add r DoMyHomework to the sidebar,self.java +1,1418769703,7,Isomorphic Java Script Apps using ReactJS Nashorn,augustl.com +0,1418760514,5,Best way to learn JAVA,self.java +1,1418753221,4,Understanding containment of GLabel,self.java +1,1418737631,6,Java Socket Stream Connected to Javascript,self.java +10,1418736584,13,Are there Java build tools where the builds are specified in Java itself,self.java +0,1418727754,7,License4J Licensing API and Tools new version,license4j.com +8,1418713099,9,Too Bad Java 8 Doesn t Have Iterable stream,blog.jooq.org +111,1418713049,7,10 Books Every Java Developer Should Read,petrikainulainen.net +5,1418679977,10,Java 8 BYO Super Efficient Maps Quadruple Your Map Performance,self.java +1,1418678589,5,Thread Local Storage in Java,voxxed.com +8,1418678116,13,Java Weekly 50 Nashorn improvements Jigsaw CDI 2 0 sneak peak and more,thoughts-on-java.org +14,1418677612,7,Ed Burns Discusses Servlet 4 0 video,blogs.oracle.com +0,1418675953,9,Intro to Comp Sci Test Guide Help Easy Question,self.java +7,1418675284,18,IntelliJ Idea Is there a way to have have your panes split in a diff view while coding,self.java +0,1418673362,5,Iterating through Java list backwards,softwarecave.org +1,1418666920,12,Any ideas to making learning java a hobby and relaxing Intermediate programmer,self.java +1,1418661169,5,Thread Local Storage in Java,voxxed.com +0,1418660519,4,Becoming Proficient in Java,self.java +3,1418660280,6,Use OmniFaces to Buffer FacesServlet Output,self.java +1,1418660194,6,Use OmniFaces to Buffer FacesServlet Output,self.java +15,1418651159,8,Java Puzzle are you up for a challenge,plumbr.eu +30,1418642474,8,My Sunday hacking project Fast Private Fields Extractor,github.com +6,1418629600,9,Apache Tapestry 5 3 8 compatible with Java 8,tapestry.apache.org +7,1418628826,6,EAGER fetching is a code smell,vladmihalcea.com +0,1418627548,12,Java Project 1 URL opens many links in new tabs seeking help,self.java +3,1418615184,11,You can now suppress the Ask Toolbar prompt when updating Java,itwire.com +1,1418613506,9,Deploying static content via JBoss Application Server AS 7,javawithravi.com +0,1418600019,6,HELP need link to JDK JavaDoc,self.java +0,1418594692,3,Most missed features,self.java +0,1418591027,6,Need advice on making a game,self.java +63,1418589659,25,I ve just finished up a class with a professor that maintains his own parallel computing library in Java You guys should check it out,self.java +3,1418563930,6,VIBeS Variability Intensive system Behavioural teSting,projects.info.unamur.be +1,1418562982,11,spark indexedrdd An efficient updatable key value store for Apache Spark,github.com +1,1418562819,6,Apache PDFBox 1 8 8 released,mail-archives.apache.org +1,1418562538,5,Hipster Library for Heuristic Search,hipster4j.org +41,1418527792,9,Bytecode Viewer 2 2 1 Java Reverse Engineering Suite,github.com +0,1418524552,3,Share Java Projects,learnbasicjava.com +5,1418514319,5,Java Development Reverse Engineering Forum,the.bytecode.club +1,1418506021,7,Micro java framework for web development updates,self.java +18,1418497794,7,Faster Object Arrays in Java InfoQ presentation,infoq.com +5,1418481967,5,How did you learn Java,self.java +7,1418475016,5,State of Flow EclipseMetrics Plugin,stateofflow.com +41,1418470851,8,Nashorn Architecture and Performance Improvements in JDK 8u40,getprismatic.com +19,1418462460,4,Best Java Blogs list,baeldung.com +7,1418454039,5,JMustache Simple templating in Java,github.com +0,1418449823,5,java if statement error help,self.java +8,1418444969,6,Anyone use Undertow in production system,self.java +12,1418440470,12,Core Java Interview Questions Podcast Episode 2 How to fail your interview,corejavainterviewquestions.com +0,1418436899,13,Why doesn t String equals s work sensibly when s is instanceof CharSequence,self.java +6,1418432872,4,Java beginner project ideas,self.java +3,1418430083,7,Options for Building REST APIs in Java,mooreds.com +2,1418416206,13,Effective Java a decent book to either supplement or read after Head First,self.java +24,1418389199,6,Java and services like Docker vagrant,self.java +2,1418383786,11,Building dynamic responsive multi level menus with plain HTML and OmniFaces,self.java +11,1418378722,10,Java Advent Calendar Lightweight Integration with Java EE and Camel,javaadvent.com +5,1418378696,9,Using Lambdas and Streams to find Lambdas and Streams,blogs.oracle.com +2,1418374118,3,JAVA iOS tools,javaworld.com +5,1418357979,14,C guy getting started in Java Simply want to add item to a JList,self.java +1,1418344657,15,How do I allow any kind of data input and test what type it is,self.java +0,1418335585,11,What s the Java Version of Gems Bundler NPM Composer Packagist,self.java +1,1418334469,4,Questions About Server Architecture,self.java +4,1418324007,13,Nginx Clojure v0 3 0 Released Supports Nginx Access Handler amp Header Filter,nginx-clojure.github.io +14,1418322905,9,Spring Security 4 0 0 RC1 improves WebSocket security,spring.io +4,1418310120,5,Free english dictionary eclipse compatible,self.java +11,1418306118,9,Java Advent Calendar Self healing applications are they real,javaadvent.com +0,1418298081,4,Help with Quiz program,self.java +34,1418283853,6,Spring Boot 1 2 0 released,spring.io +1,1418278666,7,Java Beginner Question and Looking for Suggestions,self.java +0,1418269088,3,Beginner seeking help,self.java +21,1418266322,8,What s the lightest servlet container out there,self.java +11,1418265677,10,My Current Personal Project A JSF Component Library Using Foundation,self.java +4,1418262993,6,Any good Java open source CRM,self.java +7,1418249841,5,Why should I use IntelliJ,self.java +1,1418242077,5,Java import and uml dependency,self.java +0,1418236626,5,Ruby better than Java Meh,youtube.com +2,1418234144,10,Flavors of Concurrency in Java Threads Executors ForkJoin and Actors,zeroturnaround.com +2,1418231317,11,Adding WebSocket endpoints on the fly with JRebel and Spring Boot,zeroturnaround.com +0,1418227965,21,What is the point of JSP or JSF or Spring MVC or Struts etc now that we HTML5 and AngularJS etc,self.java +5,1418227507,18,SimpleFlatMapper v1 1 0 fast and easy to use mapper for Jdbc Jooq Csv with lambda stream support,github.com +0,1418222306,6,Idiots Guide to Big O Notation,corejavainterviewquestions.com +0,1418217860,24,I haven t programmed in a year so I m very rusty Any ideas on what I should do as a project to unrustify,self.java +11,1418216927,4,Tiny Types in Java,markphelps.me +2,1418212315,9,What happens internally when the outermost Stream is closed,self.java +2,1418210875,4,Graphical Visualizations in JavaDoc,flowstopper.org +82,1418210252,9,Did you know pure Java 8 can do 3D,self.java +2,1418204332,5,The Evolution of Java Caching,adtmag.com +7,1418198156,7,5 ways to initialize JPA lazy relations,thoughts-on-java.org +3,1418165546,12,Looking for an intellij color theme like SublimeText s blackboard color theme,self.java +0,1418162015,6,OOPS Java is same as English,kossip.ameyo.com +2,1418161183,6,Spring Framework 4 1 3 released,spring.io +1,1418161159,6,Latest Jackson integration improvements in Spring,spring.io +1,1418161137,12,SpringOne2GX 2014 Replay Develop powerful Big Data Applications easily with Spring XD,spring.io +17,1418160795,14,Is it just me or is JavaScript a lot harder to learn than Java,self.java +2,1418160327,13,Looking for Java lib for large file transfer push to many local clients,self.java +9,1418158321,9,New Java Version it s not JDK 1 9,infoq.com +0,1418158283,10,One day training on Java 8 Lambda Expressions amp Streams,qconlondon.com +4,1418156482,6,Spark Web Framework 2 1 released,sparkjava.com +1,1418150582,5,Problem with Online Java Applet,self.java +3,1418150385,11,Java 8 vs Scala The Difference in Approaches and Mutual Innovations,kukuruku.co +62,1418141853,10,Don t be clever The double curly braces anti pattern,java.dzone.com +2,1418136519,14,Webinar on Dec 17 Using Docker amp Codenvy to Speed Development Project On Boarding,blog.exoplatform.com +0,1418135873,7,Heavy use of swing in java app,self.java +11,1418134567,5,New Java info site Voxxed,voxxed.com +3,1418129747,11,Java Advent Calendar Own your heap Iterate class instances with JVMTI,javaadvent.com +81,1418128463,8,Top 10 Books For Advanced Level Java Developers,programcreek.com +4,1418120064,3,JGit Authentication Explained,facon-biz.prossl.de +6,1418118022,11,Typesafe survey Java 8 Adoption Strong Users Anxious for Java 9,infoq.com +17,1418113018,9,lwjgl3 Ray tracing with OpenGL Compute Shaders Part I,github.com +10,1418097778,9,Could you create a rainmeter type program in java,self.java +19,1418064202,9,Java Scala Ceylon Evolution in the JVM Petri Dish,dzone.com +33,1418062870,11,JDK 9 Early access Build 41 Available Images are now modular,mreinhold.org +20,1418062468,4,Update My IRC Client,self.java +0,1418060636,6,Usage of serialVersionUID in Java serialization,softwarecave.org +6,1418056775,8,IntelliJ IDEA 14 0 2 Update is Available,blog.jetbrains.com +19,1418056654,18,Watch this video Dr Venkat Subramaniam if you still don t understand the benefits of Java 8 lambdas,vimeo.com +0,1418054717,10,I need some help in making a text based game,self.java +1,1418053904,8,OTN Virtual Technology Summit Replay The Java Source,blogs.oracle.com +26,1418053042,9,RoboVM 1 0 beta released Debugging amp JUnit support,self.java +3,1418050318,8,Camel Subsystem for WildFly 8 integrates Java EE,blog.eisele.net +5,1418046460,8,Spring Data JPA Tutorial Getting the Required Dependencies,petrikainulainen.net +2,1418046391,15,Interview with Mark Struberg about Java EE 8 German but interesting read via Google translate,jaxenter.de +2,1418045887,6,factory vs dataclassname Datasource on Tomcat,self.java +18,1418045817,6,What s so great about lamdas,self.java +14,1418040374,11,How to use a JPA Type Converter to encrypt your data,thoughts-on-java.org +0,1418038957,10,I need help creating a text generator from a Frame,self.java +2,1418034351,7,The downside of version less optimistic locking,vladmihalcea.com +7,1418032434,8,A beginner s guide to Java 8 Lambdas,programcreek.com +26,1418026236,14,What might a Java Beans v2 0 spec contain No more getters and setters,blog.joda.org +9,1418020733,13,Java Weekly 49 Java doesn t suck annotations everywhere free ebooks and more,thoughts-on-java.org +2,1418016598,6,factory vs dataclassname Datasource on Tomcat,self.java +1,1418002379,11,Data pool issues Moving legacy Java app from Websphere to Tomcat,self.java +0,1417989727,6,Avoid conditional logic in Spring Configuration,blog.frankel.ch +9,1417986916,11,metadata extractor a Java library for reading metadata from image files,github.com +0,1417971077,7,Need some help with my script please,self.java +0,1417968958,8,Switching JPanel when clicking on a JButton Swing,self.java +0,1417962820,11,Can someone help me see what is wrong with this code,imgur.com +3,1417958756,6,Jolokia 1 2 3 Released ssl,jolokia.org +7,1417946955,27,My system OSX Mavericks has 16GB of RAM but I can run programs with Xms32g Xms512gb and even Xms1024gb didn t test further How is this possible,self.java +16,1417928863,5,your personal opinions on Neo4j,self.java +0,1417902839,11,SD DSS Tool Cross border eSignature creation and validation made easier,github.com +7,1417897034,6,Choco solver Library for Constraint Programming,choco-solver.org +5,1417894403,8,Any suggestions on great debugging code analysis tools,self.java +2,1417888184,9,Apache Maven Assembly Plugin Version 2 5 2 Released,self.java +4,1417886575,9,How do I simulate the collision of two objects,self.java +0,1417886161,6,ECLIPSE PROBLEM Dosgi requiredversion 1 6,self.java +0,1417880075,3,Help with swing,self.java +0,1417849923,5,Content Assist Problems with Eclipse,imgur.com +37,1417838072,27,Core Java Interview Questions Podcast 1 is out now The top 5 actions you can take right now to improve your chances of landing your next job,corejavainterviewquestions.com +18,1417836091,7,Apache Maven Review of Concepts amp Theory,youtu.be +2,1417829142,4,Spark Framework Updating staticFileLocation,self.java +3,1417827132,13,Is it okay to store SQL strings in a DB to later execute,self.java +0,1417824464,8,In MVC should a model contain subview models,programmers.stackexchange.com +1,1417819568,5,Administering GlassFish with the CLI,blog.c2b2.co.uk +1,1417794381,3,Intellij Gradle Swing,self.java +21,1417781719,6,First look Spring Boot and Docker,blog.adaofeliz.com +43,1417779650,9,Proposed to Drop JEP 198 Light Weight JSON API,mail.openjdk.java.net +0,1417764795,7,Groovy can someone explain this to me,self.java +3,1417761819,3,java security settings,self.java +1,1417746411,12,Best way to incorporate William Whitaker s Words into a Java program,self.java +10,1417732573,8,JBoss Forge funny tutorial what do you think,youtube.com +3,1417721593,9,How to host a forked Maven project s artifacts,self.java +0,1417720212,6,How do you compare two Dates,self.java +55,1417719970,7,The Java 7 EE Tutorial free eBook,blogs.oracle.com +5,1417717551,10,Cracking Vigenere Cipher using Frequency Analysis in Java Example Code,ktbyte.com +2,1417715600,7,Demonstration of AES CBC Mode in Java,ktbyte.com +14,1417708402,8,IntelliJ IDEA 14 0 2 RC is Out,blog.jetbrains.com +24,1417706554,10,Can t Stop this Release Train JDK 9 Images Modularised,voxxed.com +2,1417704144,6,Using a switch in a constructor,self.java +16,1417682646,9,Review Java Performance The Definitive Guide by Scott Oaks,thoughts-on-java.org +1,1417680633,8,Review my code and give me some criticism,self.java +0,1417672703,8,I need some help updating my Java installation,self.java +3,1417666988,8,What do you like about the NetBeans IDE,self.java +0,1417661405,7,How to horizontally scale websockets on AWS,self.java +5,1417655506,6,Brian Goetz Stewardship the Sobering Parts,m.youtube.com +2,1417647063,12,JDBC DB delta sync util that brings prod data to QA fast,github.com +0,1417642725,9,Looking for a small Java app for testing purposes,self.java +2,1417629525,6,Survey Help make JBoss Tools better,twtsurvey.com +10,1417628166,12,Product vs Project Development 5 factors that can completely alter your approach,zeroturnaround.com +25,1417626758,10,Java Doesn t Suck You re Just Using it Wrong,jamesward.com +0,1417625782,11,Using testng xml with Gradle and handling up to date checks,publicstaticvoidma.in +382,1417620670,10,Every time I need to kill a hung JVM process,i.imgur.com +2,1417603048,4,Best Java books tutorials,self.java +0,1417559502,6,Compile and run java in textpad,youtube.com +10,1417558771,9,Secure Async WebServices using Apache Shiro Guice and RestEasy,github.com +5,1417557440,18,Apache MetaModel data access framework providing a common interface for exploration and querying of different types of datastores,metamodel.apache.org +11,1417556989,8,KillBill Open Source Subscription Billing amp Payment Platform,killbill.io +15,1417554136,9,RESTful web framework setup can it be any simpler,github.com +1,1417523328,8,Deferred Fetching of Model Elements with JFace Viewers,codeaffine.com +2,1417490460,9,Developing Microservices for PaaS with Spring and Cloud Foundry,java.dzone.com +2,1417479350,5,Acai Guice for JUnit4 tests,blog.lativy.org +12,1417474361,11,Radioactive Java 8 library for building querying mutating and mapping beans,github.com +1,1417468024,6,Creating executable jar file with Maven,softwarecave.org +5,1417461464,11,Manfred Riem discusses JSF 2 3 MVC 1 0 and Mojarra,content.jsfcentral.com +3,1417458711,9,First Milestone of Spring Data Release Train Fowler Available,spring.io +3,1417457826,11,Spring Integration Java DSL pre Java 8 Line by line tutorial,spring.io +1,1417452732,18,Check my quick and dirty unit test helper to assist you debugging and validating non trivial test outputs,github.com +5,1417452677,6,WordPress Drupal CMS alternatives in Java,self.java +36,1417452343,15,What are some of the biggest and well know java applications used in the world,self.java +33,1417449725,10,15 Tools Java Developers Should Use After a Major Release,blog.takipi.com +4,1417449038,15,Bean mapping generator MapStruct 1 0 Beta3 is out with nested properties qualifiers and more,mapstruct.org +28,1417439187,20,Meet Saros An open source Eclipse extension that allows you to work on code with multiple users from different computers,self.java +2,1417423792,11,Java Weekly 48 Modern APIs Entity Graph agile specs and more,thoughts-on-java.org +3,1417423735,9,New Java Version It s not JDK 1 9,infoq.com +2,1417414181,9,Question Question Regarding JavaScript build tool in Java Project,self.java +0,1417411672,7,Can MicroServices Architecture Solve All Your Problems,sivalabs.in +2,1417405696,5,Entity locking in Spring perhaps,self.java +0,1417402016,3,Programming HW help,self.java +0,1417396721,7,How do you dummy proof an input,self.java +99,1417391248,3,Java for Everything,teamten.com +2,1417389756,32,I work with JEE since 2006 I m currently working with grails and with like to keep my JEE and spring knowledge polished updated What kind of personal project could achieve this,self.java +1,1417382591,6,Using getters and setters best practice,self.java +10,1417373520,11,What s the best place to get started with Spring MVC,self.java +28,1417365329,12,IndentGuide a plugin for Eclipse that shows vertical guides based on indentation,sschaef.github.io +9,1417362616,5,The Rise of Cache First,voxxed.com +0,1417341741,24,When i use an Netbeans IDE i get no errors When i attempt to use javac from the command console i get 25 what,self.java +4,1417331076,9,Multi Job Scheduling Service by using Spring and Quartz,java.dzone.com +0,1417330282,10,How do i make a users input a variable integer,self.java +37,1417330071,9,JVM amp Garbage Collection Interview Questions beginner s guide,corejavainterviewquestions.com +0,1417323187,19,Learn about Exception in Java and How to handle exception in Java One of Most important concept in java,learn2geek.com +14,1417303291,5,Aurous Open Source Spotify Alternative,github.com +35,1417301141,3,Java 8 OPEN,youtube.com +0,1417293667,5,Question Public Static Void Abstract,self.java +0,1417288596,2,Animation Problems,self.java +3,1417288579,8,Java EE 7 CDI Integration for NoSQL databases,github.com +6,1417281837,4,Hierarchical tabs for Swing,github.com +0,1417277153,6,Cannot figure out alignment please help,self.java +9,1417263962,17,Envers schema Analyses the JPA entities in a specified package and generates DDL statements for schema generation,github.com +3,1417254448,17,Chance to win free copy of upcoming Java book Beginning Java Programming The Object Oriented Approach Wiley,dataminingapps.com +9,1417234554,3,Java Game Physics,self.java +0,1417214510,12,Spring IOC tutorial in slovak language with english subtitles feedback is welcome,youtube.com +2,1417208313,2,Spring questions,self.java +0,1417194724,5,Need help with java homework,self.java +20,1417191922,6,Java Performance Workshop with Peter Lawrey,vladmihalcea.com +0,1417182899,9,Java frameworks for webservice application in banking think enterprise,self.java +6,1417180182,6,A question about single class programs,self.java +29,1417168978,6,JavaBeans specification is from another era,blog.joda.org +6,1417147336,2,Teacher Mentor,self.java +21,1417140386,9,IntelliJ vs Eclipse speed for program to start running,self.java +7,1417123566,7,Free hosting service for Maven MySQL project,self.java +0,1417118371,4,Java reference static variables,self.java +0,1417117410,12,Java 1 8 Scrambled GUI on Mac OS X 10 7 5,self.java +9,1417116311,7,Newsflash OmniFaces 2 0 released amp reviewed,beyondjava.net +4,1417114056,9,Bootiful Java EE Support in Spring Boot 1 2,java.dzone.com +16,1417110820,10,A Look at the Proposed Java EE 8 Security API,voxxed.com +22,1417110269,7,Data Processing with Apache Crunch at Spotify,labs.spotify.com +15,1417105033,10,IntelliJ IDEA 14 0 2 EAP 139 560 is Out,blog.jetbrains.com +34,1417102358,8,Flyway 3 1 released Database migrations made easy,flywaydb.org +2,1417100715,8,A good book about everything related to Java,self.java +0,1417086058,4,Login system with Java,self.java +0,1417081994,14,Write and compile your java code online with the help of experienced java programmers,myonlinejavaide.com +0,1417046309,15,Coming soon New Real time as a service sing up and get premium for free,realapi.com +0,1417045996,15,My new tutorial about transactions and Spring please feedback are the subtitles convenient to read,youtube.com +0,1417040043,12,Any one can solve this problem Really hard for a new learner,self.java +70,1417032133,10,Why you should use the Eclipse compiler in Intellij IDEA,blog.dripstat.com +0,1417030129,11,Has anyone written an AngularJS application consisting of 100 HTML pages,self.java +19,1417029154,5,Java EE security JSR published,jcp.org +2,1417029044,17,What s the site or package that has everything you need to get started with web development,self.java +0,1417017034,5,Secure Containers for the Cloud,waratek.com +63,1417011350,13,Docker for Java Developers How to sandbox your app in a clean environment,zeroturnaround.com +4,1417004769,4,SWT Mouse Click Implementation,codeaffine.com +0,1416983448,7,There Is No Cluster in Java EE,java.dzone.com +1,1416983316,6,Writing Complex MongoDB Queries Using QueryBuilder,java.dzone.com +0,1416965539,9,I need help with a really basic Java class,self.java +0,1416964567,7,Measure overhead of JNI invocation on Android,self.java +16,1416960058,9,JSF and MVC 1 0 a comparison in code,arjan-tijms.omnifaces.org +22,1416959458,12,Any recommendations for an installer software to package up Java desktop apps,self.java +7,1416950448,4,Writing Java in iOS,self.java +8,1416940876,15,Spring Cloud 1 0 0 M3 project release train introduces new Cloud Foundry AWS Support,spring.io +10,1416939565,16,Mite Mitreski Java2Days 2014 From JavaSpaces JINI and GigaSpaces to SpringBoot Akka reactive and microservice pitfalls,blog.mitemitreski.com +15,1416938084,13,Anyone depends on Java applets They may stop working in chrome next year,blog.chromium.org +2,1416930994,8,Spring Integration Java DSL Line by line tutorial,spring.io +1,1416929881,12,Does anyone offer classroom training for WAS 7 8 8 5 anymore,self.java +14,1416927920,9,Setting JSF components conditionally read only through custom components,knowles.co.za +13,1416927739,5,Locating JSF components by ID,blogs.oracle.com +11,1416927385,5,Implementing JASPIC in the application,trajano.net +0,1416907115,4,vrais ou faux jumeaux,infoq.com +4,1416906184,7,Order of Servlets in Tomcat Application Deployment,self.java +0,1416889674,9,Spring Roo 1 3 0 Introduces JDK 8 support,java.dzone.com +1,1416889579,11,Externalizing Session State for a Spring Boot Application Using Spring Session,java.dzone.com +3,1416889472,8,Where do you guys read to on java,self.java +36,1416889325,7,Java threading from the start interview questions,corejavainterviewquestions.com +9,1416887550,8,I need an idea for a test project,self.java +0,1416879380,7,why is my java program not repeating,self.java +18,1416860929,4,OmniFaces 2 0 released,arjan-tijms.omnifaces.org +0,1416839302,11,Why is eclipse complaining that it cant find the main class,self.java +5,1416839089,14,Java Weekly 47 Java 9 tweet index compress and authenticate REST service and more,thoughts-on-java.org +49,1416833527,13,ubuntu specific call for action openjdk 8 needs packaging on 14 04 LTS,bugs.launchpad.net +5,1416790393,9,Plugins etc for being more productive developing in Java,self.java +0,1416789555,11,Can someone please explain how to debug a program with eclipse,self.java +0,1416786331,4,NullPointerException in OlympicAthlete class,self.java +0,1416772218,8,Question with Euclids algorithm and the remainder operator,self.java +12,1416770226,3,Salary in US,self.java +0,1416755330,5,Are you concerned about this,indeed.com +7,1416754459,5,Java ranks highly as usual,news.dice.com +29,1416752897,19,We are developing a new browser atop Java not released yet Here s our justification C amp C welcome,gngr.info +2,1416752201,7,Java Primitive Sort arrays using primitive comparators,github.com +0,1416750023,12,uniVocity parsers 1 3 0 is here with some useful new features,univocity.com +99,1416748964,20,A look into the mind of Brian Goetz Java Language Architect the advantages of Java 10 Value Types at 45min,youtube.com +0,1416685244,6,R dplyr Group by field dynamically,java.dzone.com +4,1416685175,12,SpringOne2GX 2014 Replay Developer Tooling What s New and What s Next,java.dzone.com +0,1416677694,4,ELI5 Interfaces in Java,self.java +0,1416677202,11,Keep connection or resume if the connection gets lost on socket,self.java +2,1416673263,7,A layout optimized Java data structure package,objectlayout.org +0,1416672752,6,Aplikasi Java Buat Gambar Kartun Sendiri,pulungrwo.in +57,1416671017,5,ExecutorService 10 tips and tricks,nurkiewicz.com +0,1416664407,17,How can I get java to do nothing if the condition of an if statement is true,self.java +0,1416664192,5,How to debug a ArrayIndexOutOfBoundsException,self.java +1,1416661334,7,structure like switch but defined at runtime,self.java +3,1416636262,12,I want to be a professional Java developer any advice Details inside,self.java +0,1416621005,17,Hey r java Need a project to work on Help with my abstract game engine on GitHub,github.com +0,1416616294,4,SharePoint Crossword Puzzle Generator,self.java +15,1416600656,9,Spring Roo 1 3 0 introduces Java 8 support,spring.io +9,1416598810,9,Spring Boot 1 2 0 RC2 introduces Undertow support,spring.io +6,1416596142,28,Could DukeScript take off in popularity Its not like GWT It can actually run Java with HTML views in a browser environment without a Java plugin or applet,dukescript.com +3,1416592631,3,Help writing bits,self.java +7,1416590685,9,Methods and Field Literals in a future Java version,mail.openjdk.java.net +3,1416589144,6,Seven Virtues of a Good Object,yegor256.com +3,1416588882,10,Decimal Precision with doubles storing in arrays Need help please,self.java +38,1416571930,5,WildFly 8 2 is released,wildfly.org +3,1416563982,12,Speedment Partners with Hazelcast for SQL Based In Memory Operational Data Store,blog.hazelcast.com +6,1416559404,7,File Paths on Linux Pi Vs Windows,self.java +12,1416547586,5,OrientDB 2 0 M3 Released,self.java +2,1416542687,11,Seeking advice on programming tools for code comprehension and other tools,self.java +3,1416532551,8,I don t know what to do next,self.java +0,1416531903,15,What you can build for free in 2 hours with Spring Boot Twitter and Facebook,zeroturnaround.com +0,1416530634,2,Help Requested,self.java +0,1416509447,13,SpringOne2GX 2014 Replay Java 8 Language Capabilities What s in it for you,java.dzone.com +53,1416509371,6,Oracle Confirms New Java 9 Features,java.dzone.com +0,1416504516,6,Hiring Philadelphia PA Java Software Developer,self.java +14,1416504070,10,IntelliJ IDEA 14 0 2 EAP 139 463 is Out,blog.jetbrains.com +0,1416501403,9,Restful designs and use of Spring MVC Spring Core,self.java +0,1416497233,2,Java question,self.java +3,1416496206,10,Using technical tests to screen candidates Good or bad idea,corejavainterviewquestions.com +23,1416495000,15,SPARC Needs 30 Java Devs in the Next 30 Days Want to Move to Charleston,sparcedge.com +17,1416490629,10,Spring MVC save memory with lazy streams in RESTful services,airpair.com +5,1416484667,7,OmniFaces 2 0 RC2 available for testing,arjan-tijms.omnifaces.org +7,1416477712,5,New shared OverlayPanel in PrimeFaces,blog.primefaces.org +0,1416450398,10,For loop isn t resetting the counter when it repeats,self.java +32,1416425857,19,My employer is rolling out a 20 week Java developer course for existing staff I would appreciate some advice,self.java +4,1416422056,10,Spring XD 1 1M1 debuts Apache Spark Kafka Redis support,spring.io +1,1416408602,5,Referencing file location in webapp,self.java +2,1416406407,6,A Skeptic s Adventure with Hazelcast,worthingtoncloud.com +1,1416405581,9,How to use angularJS directives to replace JSF components,entwicklertagebuch.com +5,1416403372,3,Interrupting Executor Tasks,techblog.bozho.net +3,1416400269,4,Java generics runtime resolution,github.com +0,1416399316,8,Help making an int work in a Jframe,self.java +3,1416399008,5,Java EE patterns book recommendations,self.java +33,1416391673,4,JPA Entity Graphs explained,radcortez.com +4,1416388503,4,LWJGL First 10 days,blog.lwjgl.org +1,1416369396,8,Hybrid Deployments with MongoDB and MySQL 3 Examples,java.dzone.com +0,1416369187,9,Data Inconsistencies on MySQL Replicas Beyond pt table checksum,java.dzone.com +2,1416361788,3,LWJGL 3 Help,self.java +1,1416346852,11,Read Write access to a virtual directory from JVM on windows,self.java +0,1416346026,6,Running Tomcat on a cell phone,self.java +2,1416345543,5,JSF in the Modern Age,infoq.com +2,1416344253,6,Advice With Java Scheduling Frameworks APIs,self.java +26,1416339971,6,Java 9 JSON Jackson and Maven,self.java +0,1416322993,6,Help with 50 state capitals program,self.java +19,1416320872,9,Can you safely serialize an object between java versions,self.java +2,1416313977,3,Nodeclipse Plugins List,nodeclipse.org +1,1416286021,5,Ninja JAX RS and Servlets,blog.ltgt.net +7,1416285351,28,Stack trace doesn t contain cause s stack trace Am I dreaming or what AFAIR exception stack traces used to contain child cause exception s stack traces too,self.java +0,1416283804,11,What s are the differences between a Set and an Array,self.java +7,1416280476,24,Was just shown this and even though I was explained to how it works all I can say is it s just like magic,xstream.codehaus.org +1,1416264872,7,JFrame slides in rather than just appearing,self.java +0,1416263262,8,Can someone please help with my Java program,self.java +10,1416260751,8,Is there anything like Flask framework for Java,self.java +2,1416255793,12,Help with making a final project for my class connect four game,self.java +1,1416251967,4,Java 8 0 Update,self.java +34,1416250708,4,JDK Dynamic Proxies explained,byteslounge.com +0,1416247314,4,Package JRE with Webstart,self.java +2,1416244336,3,Spring Boot Books,self.java +0,1416235792,6,Java only solution to Cache Busting,supposed.nl +8,1416218096,14,Java Weekly 46 Joda Time to Java8 new Apache Tamaya Java internals and more,thoughts-on-java.org +9,1416214352,4,PrimeFaces Elite Triple Release,blog.primefaces.org +10,1416212535,16,Latest NetBeans podcast discusses Java IDEs coding and how we can encourage more people into coding,blogs.oracle.com +17,1416209694,7,jcabi aspects Useful Java AOP AspectJ Aspects,aspects.jcabi.com +11,1416183119,5,Animated path morphing in JavaFX,tomsondev.bestsolution.at +8,1416179915,7,Java 8 s Date Time API Quickstart,blog.stackhunter.com +19,1416179517,8,Header based stateless token authentication for JAX RS,arjan-tijms.omnifaces.org +2,1416177752,14,SimpleFlatMapper 1 0 0b3 now with JPA column annotation support stream and iterator support,github.com +0,1416162424,20,Help installing java 7 for windows vista 32bit I can t find links anywhere or tutorials that aren t outdated,self.java +6,1416144644,6,Can you explain your system design,corejavainterviewquestions.com +3,1416138989,11,Little Known Things about the Eclipse Infocenter Language Switching 4 5,java.dzone.com +1,1416135007,17,Help Robotality beta test native desktop builds of its Java and libGDX based game Halfway on Steam,robotality.com +56,1416106872,8,Java is still the most popular language Woo,devsbuild.it +6,1416092625,5,What is an UnannType exactly,self.java +13,1416061009,7,HttpComponents Client 4 3 6 GA Released,mail-archives.apache.org +15,1416060785,5,Apache JMeter 2 12 released,mail-archives.apache.org +36,1416057349,7,Lambda2sql Convert Java 8 lambdas to SQL,github.com +16,1416050550,7,Dependency Injection with Dagger 2 Devoxx 2014,speakerdeck.com +0,1416048703,4,Java code output result,self.java +12,1416043992,8,Unorthodox Enterprise Practices presentation from Java ONE 2014,parleys.com +11,1416007682,10,TIL Java RegEx fails on some whitespaces SO link inside,self.java +0,1416001823,5,ICEfaces 4 0 Final Released,icesoft.org +11,1415987830,4,5 Evolving Docker Technologies,java.dzone.com +22,1415987728,6,Java 8 Collectors for Guava Collections,java.dzone.com +0,1415983694,5,Ajax for interacting with websites,self.java +9,1415977758,4,Java crawlers and scrapers,self.java +2,1415977567,3,Eclipse over Cloud,self.java +4,1415966246,7,using mysql with java on a lan,self.java +2,1415965262,8,IntelliJ IDEA 14 0 1 Update is Available,blog.jetbrains.com +5,1415962990,4,Typeclasses in Java 8,codepoetics.com +14,1415961520,14,What are the leading tools and frameworks for Java web applications development in 2014,self.java +3,1415960843,7,Has someone fiddled with the Currency JSR,self.java +7,1415959305,7,Java 8 s Date Time API Quickstart,blog.stackhunter.com +51,1415936509,24,Can someone explain Docker to me and whether its good for java backend servers and if so is it better than regular cloud VMs,self.java +7,1415933944,11,Whats a good idea for a program that s text based,self.java +5,1415928800,7,Object Oriented Programming and why is important,mfrias.info +13,1415901186,9,Does anybody of you use clean architecture in production,self.java +1,1415886314,9,Agile Smells Versus Agile Zombies in the Uncanny Valley,java.dzone.com +0,1415886200,10,Four Ways to Optimize Your Cluster With Tag Aware Sharding,java.dzone.com +57,1415845927,10,What is a good modern Java stack for web apps,self.java +23,1415844568,15,I m probably some of you s worst nightmare Can you help me not be,self.java +2,1415832099,11,Visualizing the class import network in 5 top open source projects,allthingsgraphed.com +8,1415821641,12,Do i need to learn native Hibernate or is JPA Hibernate enough,self.java +0,1415820550,22,DZone research SpringIntegration leads ESB space at 42 learn more about the 4 1 GA release now bit ly 1ECwXG4 java springio,spring.io +3,1415812860,8,Is there a non Eclipse analog to JIVE,cse.buffalo.edu +66,1415812022,18,NET core is now open source does r java have any opinions on how this will affect Java,blogs.msdn.com +3,1415802713,7,Websites apps for rust removal on java,self.java +0,1415793185,7,uniVocity parsers 1 2 0 is here,univocity.com +0,1415788645,8,What is the best way to lear Java,self.java +0,1415787857,7,Whitepaper Hazelcast for IBM for eXtremeScale users,hazelcast.com +20,1415781169,5,Java Annotated Monthly November 2014,blog.jetbrains.com +0,1415775963,4,Java Product Licensing QuickStart,license4j.com +9,1415758465,13,Is there any good website blog update daily about java and its tools,self.java +0,1415758019,6,How do I change an integer,self.java +0,1415756253,6,Need some help with an error,self.java +8,1415755600,47,Today I started Java A Beginner s Guide 6e I ve compiled run the first few programs My end goal is to program for Android Should I be using Notepad to write this practice code or should I go ahead and start with Eclipse or another IDE,self.java +4,1415753442,8,Need some help drawing a rectangle in console,self.java +2,1415752071,9,Spring Framework Component Scanner in Executable jar not working,self.java +3,1415747581,12,Seeking information regarding getting a Java applet we ve developed digitally signed,self.java +1,1415739613,11,Top Java IDE Keyboard Shortcuts for Eclipse IntelliJ IDEA amp NetBeans,zeroturnaround.com +0,1415736684,6,Java Software Licensing API and Application,license4j.com +0,1415735958,3,License4J License Manager,community.spiceworks.com +6,1415735188,13,Learning Java Android Studio or Eclipse End goal is developing apps for Android,self.java +24,1415734878,11,Should I learn Java EE 7 or Spring Framework 4 x,self.java +12,1415732508,18,eBay Connecting Buyers and Sellers Globally via JSF and PrimeFaces handling more than 2 million visits per day,parleys.com +36,1415725485,6,The Complete Java Phone Interview Guide,self.java +2,1415723127,5,Netbeans IDE for Spring development,self.java +0,1415722919,8,hey guys can you check my code out,self.java +6,1415722386,9,Why would you use Spring MVC and AngularJS together,self.java +1,1415721700,3,OpenJDK vs oracle,self.java +2,1415721623,7,PriorityQueue and mutable item behavior Freenode java,javachannel.org +6,1415711463,4,Eclipse exit code 13,self.java +7,1415708774,9,EditBox Eclipse plugin highlighter of the source code background,editbox.sourceforge.net +78,1415707035,14,Jodd is set of Java micro frameworks tools and utilities under 1 5 MB,jodd.org +11,1415702632,8,An Entity Modelling Strategy for Scaling Optimistic Locking,java.dzone.com +9,1415702462,8,Testing HTTPS Connections with Apache HttpClient 4 2,java.dzone.com +0,1415674518,10,JRE8 Required Need some testing for this UI Based program,self.java +1,1415645315,6,Catching and implementing exceptions Freenode java,javachannel.org +1,1415645205,4,Update My TicTacToe game,self.java +19,1415642558,6,Tutorial sites for creating actual programs,self.java +4,1415615169,8,grant codeBase in java policy not taking effect,self.java +0,1415604487,24,Can someone explain this better for me I already downloaded the most recent version of java and what is the search field too broad,imgur.com +16,1415597956,10,Building Microservices with Spring Boot and Apache Thrift Part 1,java.dzone.com +7,1415597179,6,Missing Stack Traces for Repeated Exceptions,java.dzone.com +0,1415583622,10,Having trouble building a gridpane that changes depending on value,self.java +0,1415571052,15,java IntelliJIDEA 14 cannot run Spring Project with Tomcat but with Eclipse it runs smoothly,stackoverflow.com +1,1415564383,10,How to install and use the Datumbox Machine Learning Framework,blog.datumbox.com +3,1415548107,5,Just finished my TicTacToe application,self.java +0,1415531939,9,How can I install java without the toolbar crap,self.java +2,1415527226,15,Is there a Java IDE that can use a remote JDK JRE for each project,self.java +11,1415524851,5,Famous Java Apps UI solutions,self.java +8,1415515754,4,Any java bedtime videos,self.java +10,1415458064,7,OmniFaces 2 0 RC1 available for testing,arjan-tijms.omnifaces.org +1,1415455654,6,LWJGL Display update slowing down application,stackoverflow.com +61,1415453279,15,Conducted an interview for a senior Java developer where my questions too hard see inside,self.java +20,1415447424,7,Java Functions Every Java FunctionalInterface you want,github.com +48,1415403380,6,Short and sweet Java Docker tutorial,blog.giantswarm.io +29,1415395327,5,Java 8 for Financial Services,infoq.com +0,1415387850,5,Tomcat standalone vs Installation Windows,self.java +2,1415387170,12,JSF Versus JSP Which One Fits Your CRUD Application Needs Part 2,java.dzone.com +3,1415379661,18,Trying to get Java 7 on Mac no 1 7 0 jdk in Java Virtual Machines folder Halp,self.java +2,1415346242,24,How can I use printStackTrace from a Throwable or getStackTrace from Thread to see a running thread s called methods AND the initializers constructors,self.java +10,1415340528,4,Cool Raspberry Pi Ideas,self.java +9,1415331423,8,So I want to build an IRC client,self.java +1,1415312677,8,Create war with version but explode without it,self.java +6,1415301449,9,Providing alternatives for JSF 2 3 s injected artifacts,jdevelopment.nl +15,1415295146,3,JRebel 6 Released,zeroturnaround.com +3,1415286082,5,Event Driven Updates in JSF,github.com +3,1415284784,6,Dev of the Week Markus Eisele,java.dzone.com +46,1415284077,5,Better nulls in Java 10,blog.joda.org +5,1415283026,9,Live Webinar What s New in IntelliJ IDEA 14,blog.jetbrains.com +6,1415278452,8,Can someone ELI5 the hashcode method for me,self.java +12,1415273618,11,The difference between runtime and checked exceptions and using them properly,javachannel.org +7,1415272655,5,Java socket via proxy server,self.java +5,1415240966,8,Want to make something visual Looking for advice,self.java +7,1415239143,12,EasyCriteria has evolved to UaiCriteria New name and more features for JPA,uaihebert.com +81,1415228811,6,Why is dynamic typing so popular,self.java +4,1415228003,10,Hibernate doesn t use PostgreSQL sequence to generate primary key,self.java +1,1415225851,5,On Java Generics and Erasure,techblog.bozho.net +2,1415209015,7,Question Tomcat parallel deployment or hot deployment,self.java +2,1415206580,6,Injecting dependencies for scalability with Hazelcast,blog.hazelcast.com +6,1415205019,12,Microservices with the Spring Cloud 1 0 0M2 release train of projects,spring.io +1,1415202673,7,Looking for a Graph DB with OGM,self.java +5,1415197236,3,Maven with tomcat8,self.java +89,1415190437,5,IntelliJ IDEA 14 is Released,blog.jetbrains.com +5,1415189313,11,Censum 2 0 0 with Java 8 Support and G1 Analysis,jclarity.com +5,1415186395,12,Best or most widely used libraries that can do HMAC SHA1 encoding,self.java +5,1415184506,8,Building Bootful UIs with Spring Boot and Vaadin,java.dzone.com +0,1415184107,11,Calculate amp Find All Possible Combinations of an Array Using Java,hmkcode.com +6,1415183025,7,Infinispan 7 0 0 Final is out,blog.infinispan.org +45,1415180445,10,New fast hash Java implementations Murmur3 3 7 GB s,github.com +9,1415180157,7,Valhalla Aggressive unboxing of values status update,mail.openjdk.java.net +2,1415179996,11,Is there more to csv that just a comma separated String,self.java +0,1415156335,9,Whats Wrong Returns must return a type of double,self.java +0,1415154722,10,Help with multidimensional arrays no response in R programming help,self.java +0,1415147427,10,Why are conditional statements able to be formatted like this,self.java +7,1415142420,9,Developing WebGL Globe Apps in Java with Cesium GWT,cesiumjs.org +2,1415141432,6,Applying Java Code Conventions Using Walkmod,methodsandtools.com +8,1415125851,5,Java 8 Streams Micro Katas,technologyconversations.com +0,1415117511,3,Java blocks everything,self.java +0,1415116345,10,How to disambiguate Spring Bean references with the Qualifier Annotation,spring.io +54,1415114511,12,Beyond Thread Pools Java Concurrency is Not as Bad as You Think,takipioncode.com +0,1415113314,22,What s the hype about RESTful services Its the same thing as servlets which we have been using since the stone age,self.java +2,1415108075,17,Should i do a masters in IT I have a lot of experience as a Java Developer,self.java +20,1415104685,7,Spring Caching Abstraction and Google Guava Cache,java.dzone.com +1,1415104486,7,Provisioning with Ansible Within the Vagrant Guest,java.dzone.com +9,1415092952,7,Object Oriented Wrapper of Amazon S3 SDK,github.com +15,1415081822,6,Builder Pattern with Java 8 Lambdas,benjiweber.co.uk +3,1415076639,5,Help with intellij and github,self.java +0,1415068262,8,is there a solution manual for imagine java,self.java +2,1415066358,7,What Happened to the Spring MVC tutorial,self.java +0,1415065141,7,Question Deploying app to Tomcat vs WebSphere,self.java +1,1415056462,4,What can I expect,self.java +0,1415050470,13,Can anyone point me in the right direction for open source java projects,self.java +0,1415042802,4,Question about while loops,self.java +1,1415037852,6,Code style Where to put Override,self.java +2,1415037181,5,Practical uses for short type,self.java +1,1415037105,3,Zigbee Java Framework,github.com +0,1415036588,9,Learn Java to Freelance on the side Worth it,self.java +10,1415036493,6,Collection of AOP AspectJ Java Aspects,github.com +5,1415034332,12,Text Analysis with Java and AYLIEN Text Analysis API How to Blog,blog.aylien.com +105,1415031080,8,10 Things You Didn t Know About Java,blog.jooq.org +1,1415029579,7,Java EE job but with configuration nightmare,self.java +35,1415022809,14,Large HashMap overview JDK FastUtil Goldman Sachs HPPC Koloboke Trove Java Performance Tuning Guide,java-performance.info +0,1415013157,6,Strange Java Problems Any Help Appreciated,self.java +1,1415010087,6,Lightweight Integration Tests for Eclipse Extensions,codeaffine.com +3,1414993027,13,Where can I learn the basics of logging and Log4J in under 2hours,self.java +4,1414989254,2,JPA Joins,self.java +0,1414973063,30,I could use some help with a program I m writing for school I m not getting any errors on compile but something goes wrong when trying to get input,self.java +1,1414961642,13,Tried to implement the example but I got the error in the title,self.java +22,1414957117,17,Java Devs have any of you make the switch to functional programming Scala x post r learnprogramming,self.java +0,1414950242,4,Help with Java Error,self.java +5,1414950238,7,Rationale for new keyword being the language,self.java +16,1414944045,7,IntelliJ IDEA 14 RC 2 Looking Good,java.dzone.com +0,1414943902,5,Sorting Descending order Java Map,stackoverflow.com +20,1414938938,12,F X yz An open source JavaFX 3D Visualization and Component Library,birdasaur.github.io +6,1414925477,6,Apache Camel 2 13 3 Released,mail-archives.apache.org +0,1414919309,8,Looking for a partner to maintain WhateverOrigin org,self.java +28,1414893712,15,I want to get started learning web development but keep hearing that JSP is dying,self.java +7,1414882909,6,Are you doing the polygot boogie,self.java +5,1414864968,15,Turn a Client Server Socket chat To A Client Server SSl socket chat for security,self.java +6,1414849080,4,Hibernate collections optimistic locking,vladmihalcea.com +14,1414848662,11,How to Setup Custom SSLSocketFactory s TrustManager per Each URL Connection,java.dzone.com +6,1414848431,8,Eclipse shines light on cloud based app dev,javaworld.com +12,1414804811,7,Java EE process cycles and server availability,arjan-tijms.omnifaces.org +12,1414791963,15,Spring Integration 4 1 s Java DSL RC1 introduces deeper Java 8 Method Scope Functions,spring.io +15,1414783075,7,Using stability patterns in a RESTful architecture,javaworld.com +5,1414769137,6,writejava4me Easy code generation for Java,github.com +0,1414767199,7,Grails RAD development for UI is lacking,self.java +5,1414766584,12,A good servlet jsp book enough to move to spring hibernate etc,self.java +18,1414764704,12,Mysterious new Java EE 6 server shows up at Oracle certification pages,jdevelopment.nl +3,1414763746,7,Multi Tenancy with Java EE and JBoss,lambda-et-al.eu +31,1414754776,9,Zero allocation thoroughly tested implementation of CityHash64 for Java,github.com +11,1414735114,21,Java 8 Collect how to use the collect operation over Java 8 streams in order to implement functional style programming reductions,byteslounge.com +1,1414717439,18,Inexperienced Java programmer Do you guys think I could wing this and be able to pull it off,self.java +1,1414716545,7,When do I connect to a database,self.java +9,1414705482,7,Apache Maven Assembly Plugin 2 5 Released,maven.40175.n5.nabble.com +98,1414704097,14,slides Java 8 The good parts A lean amp comprehensive catchup for experienced developers,bentolor.github.io +7,1414702947,5,Netty 4 0 24 Final,netty.io +0,1414698050,4,Problems with Cmd Prompt,self.java +1,1414697909,12,any clever ways to ensure code coverage for XSLT in my application,self.java +0,1414696135,8,Question Java web development and hiding source code,self.java +5,1414684397,10,JaveLink Java s MAVLink implementation x post from r multicopters,github.com +3,1414680505,15,How would you go about making a program that allows multiple users to log in,self.java +39,1414667791,4,W3C Finalizes HTML5 Standard,java.dzone.com +0,1414666836,14,Idea for Java Simplified value range syntax if 0 lt idx lt myList size,self.java +0,1414661854,5,A boon to Java developers,self.java +1,1414635813,8,About to begin upgrading Hibernate versions lessons learned,self.java +25,1414634544,11,Java Robot Class I designed a Texas Hold em Poker Bot,self.java +4,1414629458,7,Why the JVM Development Tools Market Rocks,zeroturnaround.com +0,1414622159,4,Legacy Java Data Risk,waratek.com +10,1414608219,10,What are your opinions on Apache Wink Jersey and RestEasy,self.java +2,1414608164,4,Java 8u20 security question,self.java +11,1414606456,7,RichFaces 4 5 0 Final Release Announcement,bleathem.ca +2,1414575215,5,JavaOne 2014 Day Four Notes,weblogs.java.net +11,1414572714,9,Hazelcast 3 0 An Interview with Founder Talip Ozturk,blog.hazelcast.com +0,1414559615,6,When will Eclipse focus on UI,self.java +0,1414557287,5,Writing parameterized tests with TestNG,publicstaticvoidma.in +14,1414540166,4,ProGuard Real World Example,alexeyshmalko.com +0,1414531919,5,Know some Java What now,self.java +8,1414522614,17,I have hours a day I can just read not program any suggestions on content to study,self.java +2,1414515746,9,Spring Boot Play Grails analysis for RestFul Backend Chat,self.java +0,1414513138,5,Java student question about loops,self.java +1,1414509962,6,Looking for comprehensive java book s,self.java +8,1414509248,13,Why are you learning Java if you already know PHP C or RoR,self.java +7,1414490985,11,Develop and manage Java Apps with IBM Bluemix and DevOps Services,ibm.com +3,1414488042,10,Firebird Conference 2014 presentations and source code Jaybird and Jooq,firebirdnews.org +4,1414463123,5,Complete Beginner Help Needed Please,self.java +2,1414459585,4,Help with JSF Primefaces,self.java +0,1414453574,7,Can anything slow the Java 8 train,techrepublic.com +0,1414444710,7,Want to learn but not from scratch,self.java +4,1414437260,4,Multiline Strings in Java,github.com +1,1414433714,10,What to call a group of Repository Entity and Query,self.java +15,1414433261,13,Spring Integration 4 1 RC1 introduces web socket JDK8 support and much more,spring.io +49,1414431254,15,350 Developers Voted for Features in Java 9 Have They Decided the Same as Oracle,takipioncode.com +1,1414421506,14,Who are some notable people using JVM as its backend for their personal website,self.java +15,1414421116,10,Spring Security and AngularJS Authentication and Authorization a Whitelisting Approach,youtube.com +0,1414416837,10,Can someone help make a Java based installer for me,self.java +0,1414412103,16,What s the easiest for a program to check if a typed number is a prime,self.java +3,1414411242,7,How to get into Java Web development,self.java +3,1414405153,6,Spring Tool Suite web application tutorials,self.java +2,1414400073,13,JCDP a lib to print colored messages or debug messages on a console,diogonunes.com +3,1414391234,3,PrimeFaces Mobile DataTable,blog.primefaces.org +0,1414370956,6,Eclipse not working after Java update,self.java +2,1414368248,8,How would you format this method method signature,self.java +0,1414366880,7,Must have keyboard shortcuts for java programming,self.java +5,1414366320,9,What is the best way to learn java EE,self.java +0,1414361682,18,How might I go about making an instant messenger GUI similar to the gmail or Facebook IM bar,self.java +78,1414356987,11,Bill Gates answers questions about Java during a deposition 1998 video,youtube.com +1,1414356407,1,Exercises,self.java +3,1414355954,12,Struggling to understand enqueue in a linked list implementation of a queue,self.java +2,1414351241,3,JBoss rules help,self.java +1,1414346957,8,Eclipse isn t interfacing with the JavaFX project,self.java +0,1414326655,6,HOW to turn off eclipse tips,self.java +19,1414322051,5,Apache Log4j 2 1 released,mail-archives.apache.org +7,1414321187,5,Using a webcam with Java,self.java +10,1414300408,26,Can you please provide me requirements for a good Spring Hibernate Project that makes me use and learn Spring Core Security Web Services MVC and Hibernate,self.java +9,1414290938,8,What are some alternatives to DAO for JPA,self.java +0,1414282599,15,What libraries can give me a background application that can count keystrokes NOT A KEYLOGGER,self.java +2,1414280530,12,How efficient is Eclipse in dealing with deleting files and unnecessary information,self.java +3,1414270609,6,Before I get started on GUI,self.java +4,1414261835,3,Spring Tutorial Removed,self.java +11,1414256557,14,show r java a request router for java 8 comments and critics are appreciated,github.com +32,1414256339,7,What program can I make for practice,self.java +7,1414240474,3,Thread safety question,self.java +9,1414239729,9,how to implement an updater in a java application,self.java +18,1414233893,12,JEPs proposed to target JDK 9 including deprecating _ as legal identifier,mail.openjdk.java.net +10,1414228729,2,Orika time,malsolo.com +7,1414225195,20,Which part component of the JVM is responsible for allocating memory for objects when a constructor is invoked via new,self.java +2,1414222329,2,Jsoup help,self.java +9,1414213867,4,Is this bad practice,self.java +0,1414199754,20,How do I make it so other squares move independently without me having to hold a key on the keyboard,self.java +39,1414191029,6,JEP 218 Generics over Primitive Types,openjdk.java.net +2,1414183090,27,How do I get rid of this It s just annoying and makes what could be a fast line take twice as long as it should Eclipse,imgur.com +11,1414172829,10,Working with Java 7 security requirements for RIA hurdles encountered,self.java +0,1414172457,4,Java Boids Swarm intelligence,rawcoders.com +0,1414171835,4,java constructor overloading doubt,self.java +0,1414159627,5,Java A Beginner s Introduction,rawcoders.com +17,1414151605,12,Should I learn JSF Does it work with JQuery Bootstrap style design,self.java +5,1414147033,15,What is your favorite book exhaustive blog post about the new stuff from Java 8,self.java +0,1414143275,7,Addison Wesley eBook Processing XML with Java,freecomputerbooks.pickatutorial.com +8,1414138837,7,JSF 2 3 changes late October update,weblogs.java.net +1,1414130000,6,Spring AMQP 1 4 RC1 Released,spring.io +0,1414115881,3,help with JSON,self.java +0,1414112096,6,Good introduction guide references for Eclipse,self.java +57,1414109437,13,List of java encryption method examples with explanations on how why they work,cs.saddleback.edu +1,1414098210,4,Environment Variable in Tomcat,self.java +0,1414097458,5,Can you help with this,self.java +2,1414094291,7,HttpComponents Core 4 3 3 GA released,markmail.org +13,1414090594,5,High performance libraries in Java,javacodegeeks.com +3,1414086944,8,Tool for generating JUnit tests for Android Free,testdroid.com +0,1414083952,14,Learning Java Don t know why my teacher added an extra Scanner please explain,self.java +0,1414083027,13,Analyzing tricks competitors play making the claim that list price comparisons are misleading,planet.jboss.org +5,1414076916,10,Seeking advice on what to study after learning Core Java,self.java +3,1414076159,14,Configuring amp Running Specific Methods in Maven Projects in NetBeans IDE Geertjan s Blog,blogs.oracle.com +0,1414076082,5,Question Computing for kinetic energy,self.java +36,1414073628,12,Coming to Java from Python frustrated Any tips for connecting the dots,self.java +1,1414052045,6,Experiences of development using Virtualbox Linux,self.java +12,1414051357,4,Java Sleight of Hand,infoq.com +0,1414046236,10,How can I create a panel as a new frame,self.java +2,1414040701,7,What is the C equivalent of JEE,self.java +0,1414029547,17,I m receiving an error message every time I attempt to install JDK Details in the post,self.java +1,1414027598,11,create a stream builder of a given type other than Object,self.java +0,1414018458,6,Arrays While could use some help,self.java +0,1414007637,5,Which IDE IntelliJ or Eclipse,self.java +10,1414007309,5,Csv Parser Performance comparaison extended,self.java +0,1414005380,1,collaboration,self.java +0,1414002363,5,How to Manage pf Rules,prolificprogrammer.com +0,1413999581,9,Syntax error on token else delete this token ERROR,self.java +3,1413997232,8,Want to help write documentation for Spark Framework,self.java +0,1413996692,8,Need to enhance best practices in web frameworks,self.java +11,1413995892,9,CDI 2 0 first Face to face meeting feedback,cdi-spec.org +6,1413976741,2,Android develpment,self.java +2,1413971073,2,Storing SQL,self.java +5,1413941714,8,A new way to avoid SQL in Java,dbvolution.gregs.co.nz +3,1413930287,27,Can anyone recommend a good Java tutorial series video online class book that will have me build something from scratch all the way to a finished product,self.java +2,1413929999,2,Security settings,self.java +1,1413923712,5,MinuteProject Release 0 8 8,minuteproject.wikispaces.com +4,1413920694,9,ProjectHierarchy tries to reinvent Java using a NoDB database,projecthierarchy.org +2,1413916519,8,I have a bit of a installation conundrum,self.java +6,1413911027,12,A new free amp state of the art natural language processing library,blog.dlib.net +56,1413902021,7,Developers Are Adopting Java 8 In Droves,readwrite.com +17,1413900972,9,Why yet another MVC framework in Java EE 8,blogs.oracle.com +2,1413898079,7,Product for automatic implementation of web service,self.java +15,1413891318,7,Java dev and deployment operating systems choice,self.java +0,1413873490,9,How to install ask com toolbar on a smartcard,self.java +14,1413853433,5,Java Annotated Monthly October 2014,blog.jetbrains.com +31,1413828258,12,I figured out why Java updates never seem to work on Chrome,self.java +0,1413821267,4,Java Tutorial Through Katas,technologyconversations.com +6,1413815689,17,Java Developer Survey Gives Current Stats on Java 8 Apache Spark Docker Container Usage by Java Devs,java.dzone.com +0,1413812501,2,Priority queue,self.java +30,1413806800,9,Supercharged jstack How to Debug Your Servers at 100mph,takipioncode.com +1,1413798810,5,Java Console in gui form,self.java +7,1413796638,11,Java Weekly 16 Named Parameters Java Batch JavaOne Recordings and more,thoughts-on-java.org +4,1413775916,7,Which environment to use for JSF project,self.java +20,1413755589,9,Java oriented tech interview coming up what to expect,self.java +0,1413749978,5,Little help with java applets,self.java +4,1413747431,7,question about the rules of this subreddit,self.java +13,1413740831,6,Functional Programming with Java 8 Functions,blog.informatech.cr +7,1413723727,7,Parsing and Translating Java 8 lambda expressions,stackoverflow.com +75,1413717934,5,Why does everyone hate Eclipse,self.java +15,1413717811,9,New open source Machine Learning Framework written in Java,blog.datumbox.com +2,1413701007,7,trouble getting started with libGDX JAVA_HOME error,self.java +1,1413693019,12,A method annotation based contrast with bean annotation validator inspired by JUnit,github.com +0,1413686435,9,Ask Toolbar Bundle How is this still a thing,self.java +17,1413681808,4,Java Bytecode Viewer Decompiler,github.com +1,1413681183,11,Java Castor How to Generate an Attribute with an Embedded Colon,self.java +32,1413672976,13,How current are the Spring frameworks How do they compare to the alternatives,self.java +1,1413666549,11,JSF 2 3 Servlet 4 0 EG JavaOne meeting audio transcript,java.net +1,1413666526,11,what am I doing wrong with sorting an array of Objects,self.java +2,1413660987,3,CSV Parsers Comparison,github.com +6,1413653247,8,How to account for multiple attributes in XML,self.java +3,1413635819,14,Maven plugin for simple releasing It only updates automatically pom version as be needed,github.com +0,1413635725,7,Apache HttpComponents HttpAsyncClient 4 1 beta1 Released,mail-archives.apache.org +0,1413611764,11,Need help with putting all methods in one world frame turtle,self.java +40,1413611312,6,First JavaOne 2014 talks now available,parleys.com +3,1413597902,17,JRE 7 update 71 72 no longer honors auto configuration script in IE Anyone else seeing this,self.java +1,1413576705,3,Head First Spring,self.java +0,1413574434,22,so im going to start learning java and i want to make games like notch does any idea where i should start,self.java +2,1413570438,9,JSF Tip 63 Another way to override a renderer,weblogs.java.net +1,1413568549,3,JSF and Ajax,self.java +4,1413563944,6,Java Tutorial Through Katas Mars Rover,technologyconversations.com +0,1413560983,19,First time writing a blog post Decided to do it on Spring Batch Let me know what you think,makeandbuild.com +0,1413560041,6,Matching Latin characters with regular expressions,mscharhag.com +0,1413559769,3,Groovier Groovy DSL,eclecticlogic.com +2,1413554092,6,A list of Dependency Injection framework,self.java +0,1413552603,14,Log DEBUG level messages of the flow only if there is an exception error,self.java +14,1413546127,3,The dreaded DefaultAbstractHelperImpl,blog.jooq.org +0,1413541658,8,What is the most critical system using JVM,self.java +4,1413527011,21,Java JSON Client A library that provides you with a simple way to do http https requests to your REST API,github.com +0,1413515852,8,Having trouble understanding how to get this loop,self.java +2,1413515729,7,Simple component based full stack web framework,self.java +0,1413502555,8,How do I create a Node in java,self.java +2,1413497630,5,Java interfacing with roblox questions,self.java +4,1413493560,7,Setting up lwjgl for cross platform usage,stackoverflow.com +14,1413492590,11,What is the difference between an Interface and an Abstract class,self.java +0,1413485712,10,Can you please give examples of well known Java applications,self.java +3,1413482278,7,RichFaces 4 5 0 CR2 Release Announcement,bleathem.ca +0,1413463932,3,ArrayList advice please,self.java +1,1413441056,8,Having trouble with running code in code runner,self.java +44,1413432949,18,IDEs vs Build Tools How Eclipse IntelliJ IDEA amp NetBeans users work with Maven Ant SBT amp Gradle,zeroturnaround.com +9,1413424742,21,Gatling Load testing tool for analyzing and measuring the performance of a variety of services with a focus on web applications,gatling.io +0,1413415795,4,Help using Netbeans IDE,self.java +39,1413414735,6,Why should fields be kept private,self.java +2,1413414661,7,Thinking of porting some libraries to Java,self.java +6,1413405067,6,Maven Compiler Plugin 3 2 Released,maven.40175.n5.nabble.com +2,1413400849,9,Add version to war builds with jenkins or ant,self.java +0,1413400224,6,Does anybody else hate Eclipse rant,self.java +2,1413399249,14,Oracle keeps telling us that JSP is dead So what is a good alternative,self.java +1,1413390412,11,DAE find it difficult to add JPA support to your projects,self.java +0,1413387457,11,How to use MouseListener Interface to handle Mouse Events in Java,thecomputerstudents.com +14,1413363041,5,JSF 2 3 Inject ExternalContext,weblogs.java.net +19,1413346920,9,Difference between Java CPU 7u71 and PSU 7u72 release,blogs.oracle.com +0,1413332082,6,Interfacts abstract oop uncertain use case,self.java +14,1413327464,3,Little java project,self.java +0,1413311833,4,Need help learning Java,self.java +12,1413306379,5,OAuth 2 0 JASPIC implementation,trajano.net +76,1413296732,22,Java SE 8 is ready to debut as the default on Java com Java 7 SE Update 71 amp 72 Release today,blogs.oracle.com +14,1413285233,10,Looking for somewhere to learn ASM bytecode modification with Examples,self.java +0,1413284905,12,How do I block letters when I m doing a console calculator,self.java +9,1413245949,2,Collaboration project,self.java +11,1413236988,7,Large amount of resources about Spring Security,spring-security.zeef.com +12,1413228170,7,50 New Features of Java EE 7,java-tv.com +16,1413212918,6,Calling Java 8 functions from Scala,michaelpollmeier.com +2,1413207541,7,Gradle GORM Map to many performance question,self.java +3,1413201057,24,Are there other interpreters REPLs live evaluators like what is in Light Table for Python and JavaScript but for Java x post r learnprogramming,self.java +0,1413198613,10,View Source Code of A Java Class File 100 Working,frd4.com +8,1413197008,10,Java Weekly 15 JavaOne Lambdas authentication HTTP 2 and more,thoughts-on-java.org +4,1413189662,11,The road to Java EE 7 Liberty EE 7 October update,developer.ibm.com +60,1413178116,9,What exactly does IntelliJ do better than Netbeans Eclipse,self.java +0,1413170128,4,Length of an object,self.java +1,1413154358,7,Injecting domain objects instead of infrastructure components,mscharhag.com +0,1413145333,4,XWiki 6 2 1,xwiki.org +4,1413143561,8,Apache Maven WAR Plugin Version 2 5 Released,maven.40175.n5.nabble.com +70,1413114475,22,Do you know any fun projects in the open sorce that is written in Java and needs a helping pair of hands,self.java +0,1413111169,6,You shouldn t follow rules blindly,blog.frankel.ch +15,1413101072,12,Show r java Implementation of value based classes for JDKs 1 7,github.com +0,1413076077,3,Simple Android Question,self.java +40,1413056477,9,Spark Java A small and great Java web framework,sparkjava.com +5,1413043063,7,Single page menu with Spring MVC JSP,self.java +0,1413041316,6,Javamex Java tutorials and performance information,javamex.com +5,1413040269,6,Creating a simple JASPIC auth module,trajano.net +9,1413027572,6,The Heroes of Java Dan Allen,blog.eisele.net +1,1413024355,2,Dependency mediator,vongosling.github.io +46,1413022453,5,DL4J Deep Learning for Java,deeplearning4j.org +17,1413019655,8,Apache Commons Compress 1 9 Released 7zip fixes,mail-archives.apache.org +11,1413019584,6,Apache Tomcat 7 0 56 released,mail-archives.apache.org +5,1413018630,14,Xuggler easy way to uncompress modify and re compress any media file or stream,xuggle.com +0,1412994577,13,uniVocity parsers 1 1 0 released with TSV CSV and Fixed Width support,univocity.com +13,1412993462,8,Java threading library Threadly 3 0 0 released,self.java +1,1412991547,14,How can I include a library in my assignments and still have it compile,self.java +43,1412963281,10,Video JavaOne Keynote about Java 8 Java 9 and beyond,medianetwork.oracle.com +0,1412955233,9,My first very self made programm in java German,puu.sh +4,1412952690,7,Java chat app with sockets need help,self.java +6,1412951997,4,java net MulticastSocket Example,examples.javacodegeeks.com +2,1412950988,12,Nginx Clojure v0 2 6 released Fix bugs of dynamic proxying balancer,self.java +8,1412930968,4,GlassFish Tools for Luna,blogs.oracle.com +4,1412929605,6,looking for web mvc platform advice,self.java +3,1412924675,14,Bayou HttpServer v0 9 7 release supporting CONNECT method for acting as HTTPS proxy,bayou.io +0,1412904770,5,Import an entire classes methods,self.java +0,1412902229,5,Need help with switch method,self.java +67,1412892018,9,Google asks Supreme Court to decide Android copyright case,javaworld.com +0,1412879608,4,What is Typesafe Activator,typesafe.com +7,1412879484,8,How A Major Bank Hacked Its Java Security,darkreading.com +6,1412874130,6,Question about JBoss and Unit testing,self.java +39,1412865336,19,People that own Effective Java by Joshua Bloch How do you apply concepts to the actual code you write,self.java +2,1412860423,11,What is the simple way to repeat a string in Java,stackoverflow.com +7,1412853800,18,Fresh unzip of Eclipse 4 4 1 throws exception right away release happened without even starting it once,bugs.eclipse.org +15,1412840971,8,Who s using RoboVM x post r programming,blog.robovm.org +1,1412821357,11,java output to file problem Outputting chinese characters and inexplicable symbols,self.java +80,1412812247,9,3 Ways IBM is bringing GPU Computing to Java,devblogs.nvidia.com +7,1412807501,8,Infinispan 7 0 0 Candidate Release 1 Available,blog.infinispan.org +0,1412801448,3,Graphics in java,self.java +1,1412789648,15,Using Java 8 s Date and Time API for delaying failed tests after a refactoring,dzone.com +31,1412787682,11,I Wish Other Text Programs word Utilized Some IDE based features,self.java +15,1412786902,10,Interview with Java Stalwart Peter Lawrey Chronicle Stackoverflow and Performance,jclarity.com +9,1412786580,8,JavaOne Hazelcast Announces JCache Support amp JCP Run,infoq.com +1,1412777731,7,Code Snippet Mail Approvals with Spring Integration,blog.techdev.de +3,1412776337,6,Digraphs Dags and Trees in Java,stevewedig.com +0,1412774068,13,New to Java Taking AP Computer Science and I m lost Please help,self.java +1,1412756796,5,JavaOne 2014 Day One Notes,weblogs.java.net +12,1412750802,8,Alertify4J Better alerts and notifications for Java applications,github.com +1,1412735070,11,Is there a way to do anonymous arrays in Java 8,self.java +0,1412734908,21,New to this subreddit currently in an OOP course which focuses on Java Having a bit of a hangup help appreciated,self.java +2,1412726746,3,Java Development Environments,self.java +10,1412713611,12,SimpleFlatMapper 0 9 8 released Fast lightweight mapping from database and csv,github.com +15,1412696646,11,Java Weekly 14 Java EE 8 JavaOne story writing and more,thoughts-on-java.org +25,1412696397,6,JavaIs cool Java news and resources,javais.cool +28,1412696348,8,Java 8 Lambdas A Peek Under the Hood,infoq.com +2,1412695351,5,AskJava Recommended Advanced Java books,self.java +1,1412695283,19,Java Magazine Hub all about the bimonthly digital only publication which is an essential source of all things Java,java-magazine-hub.zeef.com +0,1412693427,6,Jersey REST web service API Documentation,dzone.com +7,1412691845,10,Gunnar Hillert s Blog Java Template Engines Revisited Part 1,hillert.blogspot.ie +4,1412684008,13,What is the best technique to learn Data Structures and Algorithms in Java,self.java +23,1412670874,9,What would your typical Java developer CV look like,self.java +15,1412670424,6,Weld 3 0 0 Alpha1 released,weld.cdi-spec.org +10,1412667441,4,PrimeFaces 5 1 Released,blog.primefaces.org +0,1412660249,1,NullPointerException,self.java +0,1412653122,8,Can I generate int variables with a loop,self.java +14,1412649793,9,What are some must learn libraries for game dev,self.java +0,1412633424,2,College project,self.java +0,1412614047,3,Black jack help,self.java +1,1412607588,9,Does setLenient false do anything when calling simpleDateFormat format,self.java +2,1412607532,9,Questions about FX based kiosks x post r javafx,self.java +12,1412589467,9,Thread pool configuration for inbound resource adapters on TomEE,robertpanzer.github.io +9,1412578751,9,j u Random sampling How to introduce targeted bias,self.java +2,1412554061,7,JSP Java and sending data on click,self.java +6,1412545147,8,should you concentrate on just one programming language,self.java +0,1412526151,9,Trouble with math arithmetic operators and the percent operator,self.java +0,1412524295,7,Apache XML Graphics Commons 2 0 Released,mail-archives.apache.org +41,1412520579,11,Best NLP Natural Language Processing Solution in Java preferrably Open Source,self.java +0,1412520201,45,I have created a very basic digital diary there is still a lot to adjust but I decided to release it today I did this to see my skills at programming in Java but it seems that I still need to work on my GUI,filedropper.com +6,1412508010,7,RichFaces 4 5 0 CR1 Release Announcement,bleathem.ca +0,1412504897,16,What s the difference between a private method and a public method defined within a class,self.java +4,1412503701,16,Data from 2 or more database tables to one Java object JdbcTemplate How to implement it,self.java +0,1412495904,12,List of Must Knows and ToDos When Migrating To IntelliJ From Eclipse,sdchang.com +1,1412491622,4,Checkstyle errors in Java,self.java +1,1412486148,9,Re Java Co op Interview Showing off Project Code,self.java +1,1412474057,13,Benchmarking every working CSV parser for Java in existence x post from programming,github.com +7,1412459159,5,Which weaknesses does JSF have,self.java +1,1412456453,10,Does the java compiler javac optimize a large boolean array,self.java +10,1412451901,8,REST API Visualizer for any java REST frameworks,apivisualizer.cuubez.com +72,1412434905,17,What should a programmer really know and or have experienced before attaining the title senior software engineer,self.java +8,1412431363,8,Using Raygun and Proguard There and Back again,spacecowboyrocketcompany.com +2,1412430393,14,Can you provide an example where you used Adapter Design Pattern in your project,self.java +0,1412426725,8,do i really need java on Windows 7,self.java +1,1412425675,9,How to download Eclipse for Mac OSX 10 6,self.java +0,1412410556,8,lisztomania Get percentage based sub lists of Lists,github.com +23,1412409254,9,Announcing Jetty 7 and Jetty 8 End of Life,jetty.4.x6.nabble.com +0,1412392759,19,Newbie Is there an animation tool to display how your Java code works as it executes A visual compiler,self.java +0,1412383868,6,Help with making a simple table,self.java +19,1412358367,10,Can anyone recommend a good IDE for a beginner programmer,self.java +1,1412357008,12,Anyone know a great Java String parsing Library for extracting Image Links,self.java +0,1412350973,10,Detecting Roots in a Graph and a challenge Freenode java,javachannel.org +30,1412321867,18,Are you looking for a Xml free open source Java rules engine Take a look at Easy Rules,easyrules.org +4,1412296052,6,Reducing the frequency of GC pauses,plumbr.eu +18,1412288623,20,When importing assets to Java why not just import the all inclusive asterisk everytime Is it to save memory space,self.java +0,1412274647,1,Arrays,self.java +6,1412271365,6,Architecting a servlet app for scalability,self.java +26,1412265985,8,CERT Java Coding Guidelines Now Available Free Online,securecoding.cert.org +29,1412265691,21,Java SE 8 Update 20 no Medium security setting anymore Applies to RIAs unsigned applications that request all permissions are blocked,java.com +10,1412262005,15,CDI Properties on GitHub Leverage resource bundle management in your CDI enabled Java EE application,github.com +7,1412253665,6,Classpath scanning with Spring Eclectic Logic,eclecticlogic.com +7,1412248881,6,The path to cdi 2 0,slideshare.net +1,1412247746,14,Im missing something very simple with Maven and it making me rage now help,self.java +13,1412224412,6,Apache Tomcat 8 0 14 available,mail-archives.apache.org +6,1412224376,7,Apache Maven Changes Plugin 2 11 Released,maven.40175.n5.nabble.com +1,1412211000,3,Casting objects explicit,self.java +0,1412194743,53,Noob After only a 2 hours lesson in school with Java I managed to make a fully functioning bot in less than 15 minutes qhen I got home an hour later without any help Java really is an easy language This year is going to be so much fun X post r pcmasterrace,i.imgur.com +0,1412193467,9,Are there any free resources to program Android apps,self.java +1,1412193105,20,I have trouble being purely object oriented when I use EJBs and JPA Is there a solution to this problem,self.java +2,1412189126,8,gson vs json simple for simple data transmission,self.java +40,1412170475,18,A good explanation of working with floats in Java Why does adding 0 1 multiple times remain lossless,stackoverflow.com +15,1412166727,16,Are you making sure you have your permissions manifest and code signing done in your JARs,oracle.com +24,1412158066,10,Project Valhalla Notes about Valhalla from a non Java perspective,mail.openjdk.java.net +0,1412148666,5,How to start learning DI,self.java +0,1412138957,5,Apache Cayenne ORM 3 1,markmail.org +1,1412138381,6,Easy rules In memory rules engine,speakerdeck.com +0,1412126767,4,help with a homework,self.java +2,1412123936,31,So I had to make a town for geometry My teacher told it s to be creative so I used java as a topic I hope I get a good grade,imgur.com +13,1412113555,8,Your top 3 design patterns for daily use,self.java +2,1412109040,10,Why does Oracle s Java com still recommend Java 7,self.java +0,1412101332,9,How many java time zones follow the same rules,self.java +5,1412098297,5,Front end developer learning Java,self.java +10,1412097982,6,PrimeFaces Elite 5 0 10 Released,blog.primefaces.org +1,1412090160,6,Anyone have experience using Play Framework,self.java +4,1412086367,8,Reasons to stick with Java or dump it,infoworld.com +1,1412073811,7,Does containers cause overhead in Java EE,self.java +0,1412070588,6,Java EE 8 on its way,zishanbilal.com +0,1412068356,4,Help with changing _JAVA_OPTIONS,self.java +13,1412065556,11,Oracle highlights continued Java SE momentum and innovation at JavaOne 2014,oracle.com +1,1412024328,8,How to manually generate a serialVersionUID with Eclipse,self.java +5,1412018516,13,Java Weekly 13 Everything Java real Java EE new config JSR and more,thoughts-on-java.org +56,1412018216,6,libGDX wins Duke s Choice Award,badlogicgames.com +4,1412000148,17,Eclipse Debug Step Filtering Found out about this today so handy when debugging code that uses reflection,java.dzone.com +70,1411995862,9,Eclipse 4 4 SR1 once again completely silently released,jdevelopment.nl +0,1411994808,10,Book Or Open Source Project To Learn Spring Best Practicies,self.java +0,1411953130,4,Converting Decimals to Time,self.java +2,1411949560,15,Java Question regarding new keyword and accessing classes in project Difference between same resultant code,self.java +4,1411936575,4,LonelyPlanet lighting in LWJGL,youtube.com +7,1411935984,5,JavaOne 2014 Keynote Live Streaming,oracle.com +35,1411935763,6,Welcome to JavaOne 2014 Opening Video,youtube.com +10,1411931290,6,Attending JavaOne Check this guide directory,javaone-2014.zeef.com +9,1411919230,9,OpenJDK project opens up Java 9 to collaboration experimentation,infoworld.com +18,1411916780,7,Safe Publication and Safe Initialization in Java,shipilev.net +6,1411911116,3,My First Program,self.java +50,1411898208,15,Oracle Labs releases a technology preview of its high performance GraalVM and Truffle JavaScript project,oracle.com +0,1411870480,9,My first completed Java project Pretty useful for men,self.java +40,1411867919,6,Developing an OSX Application in Java,moomoohk.github.io +14,1411865796,18,I want to learn Java are there some resources that focus on doing projects instead of learning syntax,self.java +0,1411865465,12,Help Make my ad appear after some amount of time on Android,self.java +12,1411860156,7,Ganesha Sleek Open Source NoSQL Java DB,self.java +6,1411859027,11,Apache DeltaSpike 1 0 3 is now out amp JavaOne Announcement,self.java +0,1411858372,5,How to fix a ClassNotFoundException,self.java +0,1411847081,11,Java IL the Israeli Java Community and user group IS HERE,self.java +5,1411845697,14,Im sure this is a simple fix but i can t figure it out,self.java +0,1411812523,9,New to java Need some help with If statements,self.java +2,1411808920,2,Javadoc problem,self.java +2,1411774633,7,Apache Jackrabbit Oak 1 0 6 released,mail-archives.apache.org +0,1411774451,8,Help Need some help figuring out my code,self.java +7,1411774363,19,restCommander Fast Parallel Async HTTP client as a Service to monitor and manage 10 000 web servers Java Akka,github.com +0,1411773375,16,SmartFrog powerful and flexible Java based software framework for configuring deploying and managing distributed software systems,smartfrog.org +3,1411773090,9,Java Pesistence like API for the Active Record pattern,github.com +0,1411772693,5,Tapestry 5 4 beta 22,tapestry.apache.org +0,1411752758,6,Help with templating in Jersey 2,self.java +21,1411746726,13,As an IT contractor what should I know and ask about my contract,self.java +19,1411745562,7,Java Operator Overloading give it some love,amelentev.github.io +0,1411743632,8,Importing frameworks into eclipse Specifically the JZY3d framework,self.java +0,1411734929,6,JAVA SWING GUI PROGRAMMING TUTORIAL SERIES,youtube.com +2,1411724275,9,JBoss EAP Wildfly Three ways to invoke remote EJBs,blog.akquinet.de +15,1411705011,7,Pros and Cons of Application Plugin Development,self.java +0,1411699511,9,Binary Tree 20 Questions Like Game Using Binary Tree,self.java +3,1411695832,15,writing a small program assignment in java using dr java issue with the program running,self.java +0,1411690934,5,Recursion in Game of Nim,self.java +0,1411685728,10,My first java program in two years No tutorials used,self.java +3,1411679784,6,Apache MINA 2 0 8 release,mail-archives.apache.org +2,1411679642,6,RunDeck Job Scheduler and Runbook Automation,rundeck.org +8,1411679122,9,SimpleFlatMapper 0 9 4 with QueryDsl support and CsvMapper,github.com +1,1411670791,5,Intelligent Mail Barcode Native Encoder,bitbucket.org +8,1411669647,10,I m not sure I understand what Java Pathfinder is,self.java +8,1411665652,3,Open source suggestions,self.java +0,1411661612,5,Spring Boot and STS Gradle,self.java +16,1411656492,11,What are some solutions to The Codeless Code Case 83 Consequences,thecodelesscode.com +27,1411651213,44,Some time ago I stumbled upon a server side tool that could track and monitor exceptions and show you the source code and where the exception was thrown from in a well presented manner and nice UI Does anybody remember what it was called,self.java +1,1411649140,14,Introducing frostwire jlibtorrent a Java based libtorrent wrapper API by the makers of FrostWire,frostwire.wordpress.com +1,1411640199,5,Anyone has experience with Netty,self.java +0,1411630615,8,Java parser that parses java files Yo dawg,self.java +0,1411629626,17,I need a Java event listener that will call a function whenever a text input is changed,self.java +0,1411601547,7,Is this a pattern If so which,self.java +0,1411600400,17,for System out println jdjdjjdd Why does this work And more importantly Why does this cause flashing,self.java +10,1411591580,16,Java amp FFMPEG Youtube Video downloading meta search normalization silence removal and coverting from 150 sites,github.com +1,1411580646,6,Unit testing lambda expressions and streams,java8training.com +4,1411572068,7,Watching HotSpot in action deductively Freenode java,javachannel.org +50,1411569820,6,A Short History of Everything Java,zeroturnaround.com +0,1411534247,4,Intro to java question,self.java +0,1411525341,5,New to Java quick question,self.java +0,1411511821,5,ICEpdf 5 1 0 released,icesoft.org +21,1411502727,10,Reduce Boilerplate Code in your Java applications with Project Lombok,mscharhag.com +135,1411494272,7,JetBrains Makes its Products Free for Students,blog.jetbrains.com +0,1411493924,8,Fastest way to learn the essentials in Java,self.java +6,1411473382,7,Everything about Java EE 8 fall update,javaee8.zeef.com +5,1411467622,4,JBoss EAP JNDI Federation,blog-emmartins.rhcloud.com +34,1411460370,6,Java EE 8 JSRs Unanimously Approved,blogs.oracle.com +0,1411444071,14,Is there a way to link arrays or lists in parallel to one another,self.java +0,1411442499,5,java help for converting temperature,self.java +0,1411437759,23,Learning Java just started If I want to review the documentation should I download the docs for JDK 7 JDK 8 or both,self.java +11,1411436435,8,Does anyone here know how to use Lanterna,self.java +0,1411434246,2,First Program,self.java +0,1411433371,13,Dragging images into the eclipse project tree turns file into text file help,self.java +0,1411426511,26,So I built a great database in MS Access and now I want to make it in Java but I have no clue where to start,self.java +0,1411426360,3,Best book guides,self.java +7,1411419381,8,Apache Maven Dependency Plugin Version 2 9 Released,maven.40175.n5.nabble.com +0,1411414328,6,Modern java approaches to web applications,self.java +0,1411401176,5,Modern Java Approval Testing port,github.com +12,1411395274,7,Core Support for JSON in Java 9,infoq.com +7,1411391173,11,Java Weekly 12 JavaEE Boot Java 9 functional programming and more,thoughts-on-java.org +3,1411389856,5,Updating a JProgressBar Freenode java,javachannel.org +101,1411377872,9,Move help wanted questions to javahelp yay or nay,self.java +10,1411371308,5,PrimeFaces 5 1 RC1 Released,blog.primefaces.org +5,1411370370,8,How to Access a Git Repository with JGit,codeaffine.com +0,1411370316,4,Make a project online,self.java +15,1411363064,14,Everything You Never Wanted to Know About java util concurrent ExecutorService But Needed To,blog.jessitron.com +0,1411355432,3,Help a beginner,self.java +0,1411350493,23,Any way when using java swing to force a popup of a gif on focus lost if it doesn t meet certain requirements,self.java +0,1411333109,6,Quick question about decimals in java,self.java +0,1411320572,7,Help with a piece of my coding,self.java +0,1411316955,10,Does anyone know why this code is giving me errors,self.java +22,1411311359,12,Unit testing and Date equality how Joda Time helps and alternative approaches,resilientdatasystems.co.uk +0,1411305815,11,I need help with a project that I have in mind,self.java +16,1411304119,5,Apache Tez cluster on Docker,blog.sequenceiq.com +0,1411294822,29,H ng d n h c l p tr nh Java t c b n n n ng cao seri h c l p tr nh hi u qu,cafeitvn.com +0,1411290521,7,Question about Inheriting Data Fields and getters,self.java +40,1411289076,7,Software Engineer by Day Designer by Never,blog.aurous.me +11,1411282128,9,Will Double parseDouble always return the same exact value,self.java +0,1411270877,2,Constructor Parameters,self.java +0,1411266795,21,Hello I have 2 lines reader close and writer close and in Eclipse it ways they cannot resolve Why is this,self.java +5,1411250303,20,I made a Java program that combines random picture of Gary Busey with a random Nietzche quote You re welcome,github.com +0,1411245189,9,So whatever happened to that security issue with Java,self.java +0,1411242478,16,What is wrong with my if else statement Seems to be ignoring on of my statements,self.java +0,1411240238,7,Library Feedback Statically typed SI Unit Conversion,self.java +0,1411235350,9,Trying to force the user to enter a number,self.java +0,1411230545,6,Java Variables Examples 1 Instance Variables,lookami.com +0,1411212420,6,Real life applications of Data Structures,self.java +0,1411206393,9,Do subclasses inherit the data fields of the superclass,self.java +0,1411170533,9,never programmed before and having trouble with java math,self.java +0,1411140094,5,Lemon Class Missing a Method,self.java +0,1411139837,20,One of my bests programs Converter I ll add more stuff to convert in a future More info in comments,github.com +10,1411139731,10,What every Java developer needs to know about Java 9,radar.oreilly.com +50,1411139025,6,Happy talk like a pirate day,self.java +0,1411138457,9,WTF Java Why not overload for java lang Long,stackoverflow.com +0,1411131190,19,Anyway I can pass a List of my Objects and my Object as a parameter using the same parameter,self.java +9,1411086966,8,4 Security Vulnerabilities Related Coding Practices to Avoid,vitalflux.com +11,1411077004,6,Transitioning from C WPF to Java,self.java +8,1411075806,13,modernizer maven plugin detects use of legacy APIs which modern Java versions supersede,github.com +5,1411075742,6,Cate Continuation based Asynchronous Task Executor,github.com +131,1411074906,9,12 Java Snippets you won t believe actually compile,journeyofcode.com +3,1411071279,12,AngularJSF Does combining Angular and JSF create a princess or a monster,theserverside.com +0,1411070360,26,Stack and Queue in Java I know what they are in theory but I don t why to use them why they are useful to know,self.java +0,1411069093,13,Here s some code for some awesome random lines No expo class XD,self.java +0,1411067725,10,Espresso in chocolate dipped waffle cup Bite into your java,usatoday.com +4,1411066724,10,Spotlight on GlassFish 4 1 3 Changing the release number,blogs.oracle.com +2,1411063076,13,limit exposure to a dependency while still providing access to a common function,self.java +11,1411055921,9,Overview of JBoss EAP Wildfly Management Interfaces and Clients,blog.akquinet.de +0,1411039314,3,Help with DataInputStream,self.java +9,1411037728,7,Configuration can do wonders to your throughput,plumbr.eu +15,1411028790,14,10 Reasons Why Java Rocks More Than Ever Part 3 amp 8211 Open Source,zeroturnaround.com +0,1410994780,3,java Math Sqrt,self.java +4,1410989326,3,Static class reference,self.java +11,1410988904,5,Java EE Configuration JSR Deferred,blogs.oracle.com +3,1410986276,6,generating password digest for ws security,self.java +9,1410983640,3,Replicating Reference parameters,self.java +6,1410976656,7,WalnutiQ Biologically inspired machine learning in Java,github.com +1,1410975968,10,Best way for a beginner to learn Programming especially java,self.java +17,1410974155,4,Advantages Disadvantages of WebSphere,self.java +9,1410972839,18,Eclipse and Egit users Do you create your repos in the project parent folder or home yourname git,self.java +16,1410970078,6,Infinispan 7 0 0 Beta2 Released,blog.infinispan.org +15,1410967117,6,Dependency Injection with Java 8 Features,benjiweber.co.uk +4,1410957747,13,Release dates for bXX releases of Java such as 7u67 b33 if any,self.java +13,1410954179,8,Implementing container authorization in Java EE with JACC,arjan-tijms.omnifaces.org +6,1410953978,13,Java intellij debugging question Comparing object snapshots between test runs Is it possible,self.java +14,1410953737,5,Core java questionnaire for experienced,self.java +3,1410951484,7,Taint tracking protects from unvalidated input vulnerabilities,waratek.com +9,1410949078,8,JPA s FETCH JOIN is still a JOIN,piotrnowicki.com +53,1410943373,10,Why String replace in a loop is a bad idea,cqse.eu +7,1410943128,7,HZ 3 3 Client Performance Almost Doubled,blog.hazelcast.com +0,1410939603,8,What is the need for Atomics in java,self.java +34,1410932038,6,Anyone doing NFC programming in Java,self.java +0,1410928633,12,How we write unit test against database in a Spring based application,esofthead.com +0,1410922987,10,Best sorting algorithm for a relatively small group of numbers,self.java +10,1410922784,11,What is an anonymous inner class and why are they useful,self.java +0,1410910969,4,Moving Object Towards Mouse,self.java +8,1410908932,7,Detecting JSF Session Bloat Early with XRebel,zeroturnaround.com +1,1410906038,14,A really stupid question that I m just absolutely stuck on int vs double,self.java +13,1410880123,7,An example project on Tomcat using JNDI,javachannel.org +1,1410850985,4,Karel J Robot help,self.java +13,1410849755,6,Interview tomorrow expecting assessment any tips,self.java +0,1410837162,7,How to make a graph in lwjgl,self.java +2,1410835620,4,Scalable Web App Q,self.java +0,1410830408,6,Need some help with my Homework,self.java +0,1410829407,11,Could someone explain to me the evolution of Java web technologies,self.java +0,1410824553,10,No Errors But My Code Still Won t Output Anything,self.java +8,1410820081,9,Getting the target of value expressions in Java EE,arjan-tijms.omnifaces.org +22,1410818795,6,WildFly 9 0 0 Alpha1 Released,lists.jboss.org +4,1410818359,4,Java 8 upgrade survey,survey.qualtrics.com +5,1410785948,12,What s New in Java The Best Java Resources Around the Web,javais.cool +6,1410781746,13,Monitoring the JBoss EAP Wildfly Application Server with the Command Line Interface CLI,blog.akquinet.de +0,1410779135,8,What is Encapsulation and Why we need it,prabodhak.co.in +10,1410779064,13,Java Weekly 11 Missing stream method Java 9 overview lost updates and more,thoughts-on-java.org +41,1410767265,11,Java 8 Not Just For Developers Any More Henrik on Java,blogs.oracle.com +15,1410766339,10,LightAdmin Pluggable CRUD administration UI library for java web applications,lightadmin.org +1,1410761793,5,Another valid Open Closed principle,blog.frankel.ch +3,1410755754,10,What are some good intermediate open source programs to review,self.java +2,1410747044,5,Any help would be appreciated,self.java +13,1410716257,12,Netbeans IDE running very slow and laggy how can I fix this,self.java +0,1410712609,14,Anyone have any working java code to log into facebook not using their api,self.java +3,1410704947,7,Quickest way to setup Java dev environment,self.java +0,1410692485,13,Pluggable UI library for runtime logging configuration in Java web application Spring WebSockets,la-team.github.io +0,1410690155,13,is there any website that can teach me open source software s code,self.java +6,1410690083,6,JSF 2 2 HTML5 Cheat Sheet,beyondjava.net +0,1410689703,7,Mutable keys in HashMap A dangerous practice,java-fries.com +0,1410688318,12,Pluggable UI library for runtime logging level configuration in Java web application,github.com +3,1410660302,4,Design Pattern Bussines Delegate,self.java +5,1410646965,7,Scared to Apply for Java Co op,self.java +0,1410634015,6,My Java MMO First Java Game,self.java +0,1410632115,5,Is C Java made right,self.java +3,1410609079,6,Apache OFBiz 12 04 05 released,mail-archives.apache.org +0,1410600957,12,Liberty Java EE 7 beta now implements Java Batch and Concurrent specs,developer.ibm.com +0,1410600437,7,RichFaces 4 5 0 Beta2 Release Announcement,bleathem.ca +18,1410583105,8,Tips for learning java having trouble in classroom,self.java +27,1410559915,6,BalusC joins JSF 2 3 EG,jdevelopment.nl +2,1410549406,9,Help with organizing this snippet More info in comments,gist.github.com +3,1410543061,5,A Question About Background Processes,self.java +0,1410535143,16,I have installed and re installed Java 3 times now and it s still not verifying,self.java +22,1410533178,13,Why do you instantiate local variables on a separate line from the declaration,self.java +4,1410532029,12,What is the purpose of having upper bounded wildcard in Collection addAll,self.java +4,1410530250,12,Moving past Java towards front end web interfaces which direction to take,self.java +1,1410529637,5,Looking to get into Programming,self.java +18,1410526102,13,My first Maven published lib a set of Hamcrest matchers for java time,github.com +7,1410521607,8,How JSF works and how to debug it,blog.jhades.org +4,1410519035,10,TomEE Security Episode 1 Apache Tomcat and Apache TomEE S,tomitribe.com +6,1410485778,3,separation of concerns,self.java +5,1410485584,3,Multi Computer Develoment,self.java +57,1410484318,8,Do Java performance issues exist in modern development,self.java +2,1410479013,4,Convert string to int,self.java +8,1410469463,9,Best practices deploying java ears on websphere and tomcat,self.java +2,1410466453,9,Java COM bridge advice implementing excel RDT in java,self.java +9,1410461104,7,Java EE Best Practice For Securing Resources,self.java +3,1410459163,15,Love programming and it s world but i don t have the programmer s logic,self.java +5,1410444636,6,SLA policies for autoscaling Hadoop clusters,dzone.com +0,1410438202,10,The beginner programmer s guide to problem solving With example,blog.programmersmotivation.com +4,1410438187,13,Solving ORM Keep the O Drop the R no need for the M,blog.jhades.org +6,1410428399,10,How does REST and SOAP web services actually work internally,self.java +2,1410426731,9,What is the alternative to Web Services JSP Swing,self.java +32,1410423725,4,Lambda for old programmers,self.java +2,1410420214,10,Issues with eclipse in two environments PC amp amp OSX,imgur.com +1,1410419085,6,Interacting with a specific object instance,self.java +0,1410417913,1,HELP,self.java +0,1410398215,7,Best books to study for Java Certifications,self.java +6,1410398073,6,What s next after basic Java,self.java +5,1410380483,14,SimpleFlatMapper v0 9 1 released JdbcTemplate support complex object and list mapping lambda support,github.com +4,1410377272,9,Need help with Applet loading an image in browser,self.java +0,1410376251,3,Java Result 1073741819,self.java +3,1410365112,9,Data Pipeline 2 3 4 includes Twitter search endpoint,northconcepts.com +15,1410364298,11,Using Spring MVC with JRebel Adding and autowiring beans without restarting,zeroturnaround.com +0,1410361164,8,Java is good but i dont know how,self.java +5,1410358711,2,Generics question,self.java +7,1410352143,9,When the Java 8 Streams API is not Enough,blog.jooq.org +9,1410351711,13,What is the best component library to start off with when learning JSF,self.java +15,1410342858,7,Simple Fuzzy Logic Tool for Java 8,github.com +3,1410342368,4,Typeclasses in Java 8,self.java +12,1410338507,7,JUnit in a Nutshell Unit Test Assertion,codeaffine.com +9,1410336688,7,Would like my code to be reviewed,self.java +23,1410334750,13,Hazelcast 3 3 Tops Charts in In Memory Data Grid Moves Into NoSQL,blog.hazelcast.com +5,1410312025,7,Apache DeltaSpike 1 0 2 is out,deltaspike.apache.org +9,1410307314,14,Trying to get up the Java EE learning curve need help getting past tutorials,self.java +2,1410303642,31,Whenever i try to use setRequestProperties to set cookies i just got from a URLConnection the compiler gives me gives me an already connected error message how do i fix this,self.java +5,1410297295,7,Programmers could get REPL in official Java,javaworld.com +2,1410295374,13,Did anyone already do DDD using a graph database like Neo4J as storage,self.java +0,1410293795,17,Know of a company in Europe that will sponsor an American Java Developer for a work visa,self.java +6,1410289509,5,Does Java have this functionality,self.java +2,1410289458,8,Ideal path for mobile development for Java developers,self.java +0,1410282043,9,Java C falter in popularity but still in demand,infoworld.com +30,1410280725,10,GlassFish Server Open Source Edition 4 1 Released The Aquarium,blogs.oracle.com +4,1410269129,15,Java Annotated Monthly Large overview and discussion of Java related news from the previous month,blog.jetbrains.com +13,1410268550,7,JavaOne what are your must attend sessions,oracleus.activeevents.com +2,1410268179,17,Java developers with network experience needed for open source MMO development platform x post from r gameDevClassifieds,self.java +3,1410266753,6,First Class Functions in Java 8,java8training.com +1,1410257972,5,Ideal way to exercise java,self.java +3,1410257215,20,Need help with uploading multiple files with Jersey I ve searched all over the place but cannot find a solution,self.java +11,1410255900,8,JAVA question about error handling and root cause,self.java +0,1410250380,7,RichFaces 4 5 0 Beta1 Release Announcement,bleathem.ca +1,1410243527,12,We re looking for Java devs sidebar did say anything Java related,eroad.com +17,1410235816,5,Java Optimizations and the JMM,playingwithpointers.com +0,1410233702,16,I don t know where to turn to need help with my first hello world assignment,self.java +7,1410204479,13,Hazelcast 3 3 released an Open Source in memory data grid for Java,hazelcast.org +38,1410203483,9,How good is Java for game development these days,self.java +44,1410193926,18,Aurous My attempt at an open source alternative to Spotify which allows for instant streaming from various services,github.com +10,1410189072,5,Performance Considerations For Elasticsearch Indexing,elasticsearch.org +2,1410187690,4,Someone creative needed please,self.java +14,1410187051,9,What s your biggest pain developing Java web apps,self.java +4,1410185041,7,Program a game in half a year,self.java +11,1410182208,5,Java Annotated Monthly September 2014,blog.jetbrains.com +3,1410181943,11,walkmod an open source tool to apply and share code conventions,walkmod.com +8,1410179552,9,How to execute a group of tasks with ExecutorService,javachannel.org +35,1410172603,9,Job interviews Does everyone but me actually know everything,self.java +8,1410169428,11,Java Weekly 10 Concurrency no config JSR MVC JCP and more,thoughts-on-java.org +5,1410165181,6,PrimeFaces Elite 5 0 8 Released,blog.primefaces.org +11,1410155340,13,LightAdmin Pluggable CRUD administration UI library for java web applications powered by SpringBoot,lightadmin.org +3,1410149144,7,Recommendations for structuring a library for distribution,self.java +25,1410147094,7,Building and Deploying Android Apps Using JavaFX,infoq.com +0,1410132992,8,First practical and or relatively large java project,self.java +16,1410127472,12,On Memory Barriers and Reordering On The Fence With Dependencies Java Performance,shipilev.net +2,1410116667,12,Migrating Google Calendar API from v2 to v3 I m completely lost,self.java +1,1410114794,6,Java GUI SWT Application gt Website,self.java +0,1410114302,9,programming Binary Sudoku in Java live on Twitch tv,twitch.tv +5,1410085409,9,Java Programming Can anyone suggest projects for beginning programmers,self.java +22,1410084900,9,Java puzzle NullPointerException when using Java s conditional expression,self.java +9,1410077844,10,Book Recommendation Java 8 In Action Great functional programming read,self.java +26,1410057576,7,Programmers could get REPL in official Java,m.infoworld.com +4,1410048702,4,Basic Iterators and Collections,self.java +11,1410045694,8,Hazelcast JCache API is more than just JCache,blog.dogan.io +1,1410035544,10,Which of these could be the best source for learning,self.java +10,1410029347,9,Casting to an interface different from casting between classes,self.java +5,1410025386,4,Very basic help needed,self.java +4,1410015359,4,Easy theming with Valo,morevaadin.com +0,1410008102,5,Easy run of Maven project,blog.mintcube.solutions +0,1409997249,4,Should I learn HTML5,self.java +7,1409992836,4,JSF conditional comment encoding,leveluplunch.com +1,1409974512,7,Using repaint and where to call it,self.java +3,1409972516,13,How valid is the statement write once debug everywhere by some Java users,self.java +0,1409972095,3,Netbeans to Desktop,self.java +11,1409959426,1,Encryption,self.java +5,1409957295,3,Preferred program formatting,self.java +0,1409953144,22,8 gigs of ram but 32bit only lets me use 1g I have 84bit Windows does java for 84 solve this issue,self.java +49,1409938172,8,In memory NIO file system for Java 7,github.com +10,1409933243,8,Getting started with RabbitMQ using the Spring framework,syntx.io +6,1409932417,12,Suggestion for a distributed database which is simple secure and open source,self.java +1,1409930628,3,Spring WebMVC resource,self.java +2,1409925672,3,Caveats of HttpURLConnection,techblog.bozho.net +1,1409923130,6,New ultrabook 1920x1080 touchscreen Windows 8,self.java +3,1409920384,7,Java Programming What should I do now,self.java +4,1409913730,15,Why are Marker interfaces required at all Does JVM process these in a different manner,self.java +37,1409904591,4,Coursera Algorithms Part I,coursera.org +7,1409903574,5,Java E Books For Beginners,self.java +7,1409900216,28,What is the need to write your own exceptions Anyway we are extending the Exception we can as well throw the custom exception as a general exception right,self.java +43,1409886226,22,I have been working on a Reddit API wrapper in Java for the past few months How can I make it better,github.com +5,1409884156,11,Anyone know how to switch between Java versions in Windows 7,self.java +6,1409875358,5,Learning Spring MVC 2 5,self.java +4,1409868860,11,What is the best way to understand a recursive function method,self.java +2,1409862421,5,Java REST services dependency injection,self.java +0,1409857820,10,Are there any good books for learning proper GUI design,self.java +5,1409857584,12,String deduplication feature from Java 8 update 20 Java Performance Tuning Guide,java-performance.info +7,1409851077,16,Looking for updated info Which inexpensive CA to use for code signing trusted by Java 7,self.java +50,1409845886,12,Spring Framework 4 1 introduces JMS jCache SpringMVC WebSocket features better performance,spring.io +0,1409845594,9,Whiley Final should be Default for Classes in Java,whiley.org +7,1409834234,8,Stats about memory leaks size velocity and frequency,plumbr.eu +2,1409826995,13,My first Java Program Need someone to quickly read over it before submitting,self.java +17,1409822984,7,JVM Language Summit 2014 Videos and Slides,oracle.com +28,1409798778,10,What are some online courses for java similar to codeacademy,self.java +4,1409794354,20,Wondering what the r java community perceives to be the advantages or disadvantages of developing in java vs NET C,self.java +6,1409787591,10,How do I interface my Java program with an Arduino,self.java +1,1409786533,20,X Post from JavaHelp DnD using custom drag types into an FXCanvas Java 8 FX 2 2 SWT 4 4,self.java +1,1409783416,7,Anyone have some simple examples showing networking,self.java +0,1409782295,36,OK PEOPLES Need help on taking an external text document parsing the first two integers as a 2d array location and then using the final bit nextLine as a string that goes into that array location,self.java +3,1409777373,7,After 13 years JCache specification is complete,sdtimes.com +30,1409772768,20,What does r Java think about JRebel and do its features justify the 360 per year price for Indie development,self.java +1,1409771140,3,Learning more java,self.java +0,1409767947,5,How do i learn Java,self.java +3,1409765859,8,How to make a connection and send data,self.java +0,1409764511,10,Do you have an interesting idea for open source project,self.java +0,1409761649,7,DEBUG YOUR JAVA APPLICATION WITH ECLIPSE IDE,prabodhak.co.in +6,1409758460,12,Using XRebel to fix Spring JDBC Templates N 1 SQL SELECTs Issues,zeroturnaround.com +0,1409755114,5,Why Should I Learn Scala,toptal.com +12,1409754976,8,After 13 years JCache specification is finally complete,sdtimes.com +2,1409748711,7,Remote debugging in Red Hat JBoss Fuse,blog.andyserver.com +11,1409747045,5,PrimeFaces 5 1 Video Trailer,vimeo.com +26,1409746135,7,Apache Log4j 2 0 Worth the Upgrade,infoq.com +3,1409739890,7,Writing compact Java with functions and data,dev.solita.fi +24,1409730553,6,JUnit in a Nutshell Test Runners,codeaffine.com +24,1409718642,12,When to use Java SE 8 parallel streams Doug Lea answers it,gee.cs.oswego.edu +6,1409713436,10,A cool syntax example with lambda expressions and functional interfaces,self.java +2,1409706539,10,I m getting a registry error when downloading the JDK,self.java +1,1409703677,29,I m working on a project where I will need an open sourced game Is Java the right language to be looking in or should I look else where,self.java +2,1409698624,21,I m on a quest for an error through mountains of Java and I have no idea what I m doing,self.java +21,1409679300,7,Why another MVC framework in Java EE,oracle.com +42,1409678446,14,Protonpack a Streams utility library for Java 8 supplying takeWhile skipWhile zip and unfold,github.com +49,1409654420,12,I just can t start to understand what lambdas and closures are,self.java +0,1409635865,8,Why NetBeans IDE is Great for Teaching Java,netbeans.dzone.com +0,1409607297,17,Help New to NetBeans and Win8 when I run my program a dialog box doesn t open,self.java +2,1409601933,7,Need help finding a dynamic graphing library,self.java +54,1409599748,7,Predicting the next Math random in Java,franklinta.com +0,1409597523,9,Haha a wonderful Game of Thrones parody for Java,youtube.com +3,1409590124,7,Jar file not running on other machines,self.java +14,1409588048,11,JHipster the Yeoman generator for Spring AngularJS reaches version 1 0,jhipster.github.io +0,1409544850,13,Getters and setters considered evil counter to OOP and should be used sparingly,javaworld.com +9,1409537192,3,OO Problem Statements,self.java +3,1409530498,10,How do I get an older update of Java 8,self.java +6,1409526750,12,Watch me make Snake in Java live on Twitch using best practices,twitch.tv +3,1409525377,7,Making a 3D map from an image,self.java +0,1409515271,2,HELP ME,self.java +18,1409512912,8,Differences between Java on Win and OS X,self.java +8,1409512309,8,In browser widget to monitor java application performance,stagemonitor.org +7,1409511255,7,What Java IDE should I switch to,self.java +3,1409506595,13,Eclipse 4 4 Windows 8 1 taskbar issues x post from r eclipse,self.java +10,1409505202,19,Is it considered better practice for a class to use its own getter and setter methods in other methods,self.java +0,1409503752,4,Fixing Java language anyone,self.java +10,1409493938,6,Using exceptions when designing an API,blog.frankel.ch +0,1409486898,3,Basic Java Worksheet,i.imgur.com +18,1409485503,5,Fast API testing with Restfuse,blog.mintcube.solutions +3,1409442321,11,Looking for some fellow Java beginners to skype text only with,self.java +5,1409414981,3,Eclipse installation question,self.java +4,1409412986,6,Basic Symmetric Encryption example with Java,syntx.io +0,1409406097,15,Java program to change the color of the circle if I click on to it,self.java +9,1409404293,7,Clean HTML from XSS or malicious input,self.java +9,1409392405,9,Setting project specific VM options in IntelIJ IDEA Ultimate,self.java +6,1409369907,5,Java REST Service best practices,self.java +6,1409369137,6,Trying to learn Java please help,self.java +5,1409361972,7,Draw many objects more efficiently with LWJGL,self.java +0,1409358910,4,Looking for a mentor,self.java +0,1409351905,4,JetBrains ignoring community feedback,self.java +0,1409346166,8,Getting testThis main out of classes for production,self.java +82,1409334051,7,My JAVA MMO inspiration it s bad,diamondhunt.co +0,1409330246,10,What is the best way to get started with J2EE,self.java +79,1409330130,10,String Deduplication A new feature in Java 8 Update 20,blog.codecentric.de +8,1409321330,15,Is it possible to create a restful api with plain old java without any framework,self.java +0,1409286831,1,Java,self.java +11,1409282947,8,What would be a good example REST service,self.java +4,1409262961,6,Apache Jackrabbit 2 9 0 released,mail-archives.apache.org +0,1409262932,4,What should i do,self.java +18,1409262838,9,Jar Hell made Easy Demystifying the classpath with jHades,blog.jhades.org +22,1409262647,7,The Principles of Java Application Performance Tuning,java.dzone.com +6,1409254562,14,Blurry misconceptions when combining Java via JDBC with SQL to create a database system,self.java +7,1409248719,6,Type Safe Heterogenous Containers in Java,stevewedig.com +32,1409246754,5,Mirah Where Java Meets Ruby,blog.engineyard.com +7,1409239126,11,Sample task to give to candidates for a graduate level interview,self.java +5,1409238707,8,Any good links or tips on good design,self.java +19,1409238266,6,Spurious Wake ups are very real,mdogan.github.io +23,1409234619,5,Caudit Java Easy performance monitoring,cetsoft.github.io +0,1409228444,2,Transforming Strings,self.java +0,1409188070,9,might seem dumb but i have a simple question,self.java +2,1409186359,10,How can I make a module block based collision system,self.java +2,1409182954,18,Processing org is it good for learning Java or should I consider it something completely different from Java,self.java +1,1409178545,12,Web Development with Java and JSF Author Interview with Michael M ller,netbeans.dzone.com +7,1409178381,11,Java EE 7 Real World Experience Campground Management with Tipi camp,blog.arungupta.me +42,1409176667,5,Java EE 8 Takes Off,blogs.oracle.com +0,1409173826,7,Necessary programs to start programming in Java,self.java +4,1409173067,7,How To Implement Hazelcast Together with Websockets,blog.c2b2.co.uk +11,1409172589,7,Apache Derby 10 11 1 1 released,mail-archives.apache.org +6,1409170012,15,Why you should tap into the power of Ruby from the comfort of the JVM,zeroturnaround.com +43,1409153764,16,codecademy com has a really nice class for JavaScript is there anything like this for Java,self.java +1,1409153123,4,Practice problems for student,self.java +30,1409140759,22,I m going in for an entry level java development position in a few hours Any tips on what interviewers might ask,self.java +14,1409128348,6,JUnit in a Nutshell Test Isolation,codeaffine.com +1,1409118888,3,Question about timers,self.java +21,1409118443,12,Wow learning Java is much easier than I thought it would be,self.java +26,1409093343,7,Type of qualifications for Junior Java Developer,self.java +26,1409090137,5,ActiveMQ 5 10 0 Release,activemq.apache.org +17,1409075179,15,What s the new to java equivalent book to Effective Java for more advanced people,self.java +7,1409070460,8,StackHunter Java exception tracker beta 1 1 released,blog.stackhunter.com +9,1409070096,6,Glassfish amp Chrome Extension Episode 1,youtube.com +4,1409067601,6,IoC Question about building my own,self.java +38,1409066808,8,What s with all the anti Spring sentiment,self.java +0,1409061136,14,If you are asked design twitter in a Java telephonic what would you answer,self.java +0,1409059492,8,Java knowledge expected for 8 years work experience,self.java +0,1409054903,3,Thoughts on Hibernate,java.dzone.com +1,1409046413,12,Writing JSR 352 style jobs with Spring Batch Part 1 Configuration options,blog.codecentric.de +0,1409041306,8,JPA enum OmniFaces enum converter select items sample,ballwarm.com +5,1409041185,4,Status update generic specializer,self.java +44,1409039277,5,JEP 159 Enhanced Class Redefinition,openjdk.java.net +21,1409019397,7,Why do you prefer java for programming,self.java +0,1409008467,3,simple array issue,self.java +1,1409004465,12,x post Need help writing clean testable multi socket listener using ServerSocketChannel,self.java +73,1408989676,7,Java 9 is coming with money api,weblogs.java.net +14,1408987763,6,Has anyone tried Honest Profiler yet,self.java +14,1408972458,10,Improve IntelliJ IDEA and Eclipse Interop and Win a License,blog.jetbrains.com +1,1408969900,10,Web Development Using Spring and AngularJS Tutorial 11 Using ngResource,youtube.com +44,1408969156,9,Jinq a new db query tool for Java 8,jinq.org +6,1408968385,2,Debugging OpenJDK,java.dzone.com +8,1408962410,4,Novice Spring Framework question,self.java +24,1408955869,6,Interesting way to learn Design Patterns,self.java +0,1408932699,2,Augmented Reality,self.java +0,1408927190,8,Has anyone here ever created an android app,self.java +3,1408918930,3,Problem with JOptionPane,self.java +6,1408906630,7,Java 7 Backports for java util Optional,self.java +4,1408889099,7,Meetup Reactive Programming using scala and akka,blog.knoldus.com +4,1408883188,9,JavaZone 2014 Game of Codes Game of Thrones parody,youtu.be +76,1408880427,5,JAVA 4 EVER Official Trailer,youtube.com +8,1408877443,8,Is it fun to be a Java developer,self.java +4,1408861775,6,Ideas for a tough Java project,self.java +5,1408854580,23,Was anyone used RxJava in a java 6 7 environment Did the benefit of reactive programming outweigh the terribleness of nested anonymous classes,self.java +18,1408836998,6,Looking for Basic Intermediate Java Challenges,self.java +4,1408826752,8,Need some explanation about this Generics type erasure,self.java +8,1408816237,14,Scala template engine like JSP but without the crap and with added scala coolness,github.com +2,1408813736,7,Looking for advice on GUI building tools,self.java +0,1408754014,7,Whats the Best website to practice JAVA,self.java +50,1408744921,12,Capsule One Jar to Rule Them All x post from r programming,dig.floatingsun.net +0,1408722045,3,Forget about LinkedList,self.java +8,1408721040,3,Question about servlets,self.java +4,1408720872,9,Help Error when trying to run a web applet,self.java +0,1408720413,8,Why is JavaFX being continued Nobody uses it,self.java +17,1408715461,4,Java Advanced Management Console,blogs.oracle.com +15,1408712414,6,The ultimate guide to JavaOne 2014,javaone-2014.zeef.com +0,1408681616,17,What are the benefits of using a scanner for command line input as opposed to a BufferedInputStreamReader,self.java +4,1408676771,13,Need help with Java assignment It is about Inheritance and I am lost,self.java +0,1408670704,8,Current approaches to Java application protection are problematic,technewsworld.com +0,1408662564,4,JDBC Basics Part I,go4expert.com +10,1408656298,9,Everything you need to know about Java EE 8,javaee8.zeef.com +0,1408654505,4,What is Reactive Programming,medium.com +1,1408644391,11,java error when igpu multi monitor is enabled hs err pid,self.java +2,1408628744,16,Eric D Schabell New integration scenarios highlighted in JBoss BPM Suite amp JBoss FSW integration demo,schabell.org +0,1408627403,4,MultiThread in Java help,self.java +102,1408627039,14,The 6 built in JDK tools the average developer should learn to use more,zeroturnaround.com +5,1408564320,9,eCommerce case study for in memory caching at scale,hazelcast.com +21,1408563818,19,Frontend development in HTML CSS and Java only or GWT in a different way The JBoss Errai web framework,self.java +10,1408563205,4,Online IDE for Java,self.java +26,1408562251,9,Why Developer Estimation is Hard With a Cool Puzzle,zeroturnaround.com +6,1408553590,4,Novice programming problem java,self.java +24,1408548900,8,Java 9 Features Announced What Do You Think,java.dzone.com +0,1408539575,7,How to solve Java s security problem,infoworld.com +0,1408537012,10,Web Development Using Spring and AngularJS Tutorial 10 New Release,youtube.com +2,1408536720,10,Web Development Using Spring and AngularJS Tutorial 9 New Release,youtube.com +4,1408536247,6,Locks escalating due classloading issues example,plumbr.eu +3,1408497602,4,java install key error,self.java +27,1408487516,8,Release Oracle Java Development Kit 8 Update 20,blogs.oracle.com +17,1408485045,20,JSR posted for MVC 1 0 a Spring MVC clone in Java EE as second web framework next to JSF,java.net +5,1408474014,12,Apache POI 3 10 1 released CVE 2014 3529 CVE 2014 3574,mail-archives.apache.org +1,1408473369,23,CVE 2014 3577 Apache HttpComponents client Hostname verification susceptible to MITM attack fixed in HttpClient 4 3 5 and HttpAsyncClient 4 0 2,markmail.org +1,1408466048,2,Java Certifications,self.java +3,1408463080,11,I have questions about Java Java EE development with NoSQL databases,self.java +5,1408455837,11,Drools amp jBPM Drools Execution Server demo 6 2 0 Beta1,blog.athico.com +0,1408455324,8,Freenode java Initializing arrays of arrays avoid fill,javachannel.org +14,1408440072,7,Freenode java How to access static resources,javachannel.org +7,1408423073,6,Object already exists java install error,self.java +28,1408417677,8,What do I need to know about maven,self.java +13,1408406823,5,Open source Java GWT libraries,self.java +0,1408398054,2,Eclipse Error,stackoverflow.com +9,1408392946,13,The first official feature set announcement for OpenJDK 9 and Java SE 9,sdtimes.com +15,1408383539,10,Java Weekly 8 Java9 JMS 2 JUnit Microservices and more,thoughts-on-java.org +29,1408377808,10,Java 8 compilation speed 7 times slower than Java 7,self.java +0,1408370842,7,Error with geany compiler when compiling java,self.java +24,1408349223,6,JUnit in a Nutshell Test Structure,codeaffine.com +6,1408327041,15,Almost got a job as a Java developer Just need to pass a technical assessment,self.java +8,1408306333,24,When to Use Nested Classes Local Classes Anonymous Classes and Lambda Expressions The Java Tutorials gt Learning the Java Language gt Classes and Objects,docs.oracle.com +2,1408295257,8,Help integrating a library into my java project,self.java +3,1408287582,9,Maven Release Plugin The Final Nail in the Coffin,axelfontaine.com +0,1408285665,7,A Java geek Past present and future,blog.frankel.ch +81,1408285470,7,Game AI An Introduction to Behaviour Trees,obviam.net +3,1408284640,3,Develop CLI Application,self.java +9,1408273214,8,Freenode java collapsing multiple ints into a long,javachannel.org +11,1408253559,5,Understanding JUnit s Runner architecture,mscharhag.com +11,1408241703,5,Use of System out print,self.java +0,1408224163,5,Help with setters and this,self.java +2,1408215962,8,How stable is the android developer job market,self.java +24,1408205499,9,What s a good universal GUI framework for Java,self.java +6,1408192626,19,Quick snippet to get list of your facebook friends who have liked atleast one post in a particular page,csnipp.com +12,1408185955,9,Humanize facility for adding a human touch to data,github.com +4,1408185892,4,iCal4j iCalendar specification RFC2445,wiki.modularity.net.au +23,1408179640,9,Working with Date and Time API Java 8 Feature,groupkt.com +13,1408157227,2,Question jHipster,self.java +44,1408153996,15,Heat map of which keys I used to create a simple java program with vim,i.imgur.com +0,1408144406,3,Java not updating,self.java +1,1408140689,5,Java Advanced books to get,self.java +10,1408139527,9,Transactions mis management how REQUIRES_NEW can kill your app,resilientdatasystems.co.uk +7,1408127055,8,Is there such thing as a reminder interface,self.java +4,1408126054,11,Need help with strange Java Error JVM Entry point not found,self.java +9,1408124747,17,Introducing QuickML A powerful machine learning library for Java including Random Forests and a hyper parameter optimizer,quickml.org +21,1408116333,6,Apache Commons CSV 1 0 released,mail-archives.apache.org +4,1408105721,3,Introduction vaadin com,vaadin.com +5,1408105161,8,TempusFugitLibrary helps you write and test concurrent code,tempusfugitlibrary.org +63,1408097304,5,JavaZone 2014 Game of Codes,youtube.com +24,1408093982,5,Learning JVM nuts and bolts,self.java +5,1408067963,4,Monitor Java with SNMP,badllama.com +6,1408053674,5,Nemo SonarQube opensource code quality,nemo.sonarqube.org +11,1408044400,6,Where how to learn JSF properly,self.java +45,1408040317,9,1407 FindBugs 3 0 0 released Java 8 compatible,mailman.cs.umd.edu +1,1408039948,5,Netty 4 0 22 released,github.com +5,1408037941,12,Demonstration how to write from one database to another using SPRING Batch,self.java +3,1408033207,9,Looking for a good tutorial for java 7 8,self.java +8,1408032954,7,Mojarra 2 2 8 has been released,java.net +10,1408022994,10,Using Javascript Libs like Backbone js with Nashorn Java 8,winterbe.com +5,1408019411,9,The 3 different transport modes with vaadin and push,blog.codecentric.de +7,1408015636,5,Cadmus A Primer in Java,cadmus.herokuapp.com +4,1408014349,6,Opensource Java projects for junior developers,self.java +9,1407998439,8,Creating a lazy infinite fibonacci stream using JDK8,jacobsvanroy.be +0,1407981025,9,Bootstrapping Vaadin Applications Using Gradle Spring Boot and vaadin4spring,dev.knacht.net +1,1407975400,3,Java textbook advice,self.java +161,1407967212,22,I know it probably isn t much but I just completed my first Game Loop alone and I m so proud Haha,i.imgur.com +6,1407965450,12,Looking for an online IDE submission site for intro to programming class,self.java +0,1407962164,6,Personal favorite programming software for Java,self.java +5,1407961520,7,What are your favorite IntelliJ IDEA features,self.java +3,1407956047,3,SSLSocket and getChannel,self.java +2,1407942154,10,Is this a good function to encrypt and decrypt strings,csnipp.com +4,1407936671,5,Working with Java s BigDecimal,drdobbs.com +0,1407936655,10,My company HCA in Nashville is expanding our Java team,self.java +0,1407903923,2,Libgdx exception,self.java +2,1407881775,7,Need some help conquering the learning curve,self.java +21,1407877810,5,Read data from USB port,self.java +9,1407875548,8,Time4J Advanced date and time library for Java,github.com +0,1407873625,10,Java CAS Client 3 3 2 fix CVE 2014 4172,apereo.org +1,1407862047,6,Trying to pass Type to interface,self.java +2,1407841354,15,Java Software Solutions Foundations of Program Design 8th Edition by John Lewis amp William Loftus,self.java +26,1407834953,6,JUnit in a Nutshell Hello World,codeaffine.com +11,1407834912,8,Understanding the benefits of volatile via an example,plumbr.eu +6,1407834332,4,Keeping track of releases,self.java +32,1407834083,10,How to get started with a desktop UI in Java,self.java +10,1407832763,5,My single class parser generator,mistas.se +57,1407826181,8,Get real Oracle is strengthening not killing Java,infoworld.com +0,1407817358,21,Certain sbt installs fail on OS X 10 9 when running Java 8 how do I install Java 7 alongside 8,self.java +2,1407801966,14,what s a good way to validate that you know enough to be hireable,self.java +2,1407796765,7,How to embed HSQLDB in Netbeans project,self.java +3,1407796304,7,What to read after Head First Java,self.java +0,1407795614,11,uniVocity a Java framework for the development of data integration processes,self.java +0,1407792177,7,HttpComponents Client 4 3 5 GA Released,mail-archives.apache.org +0,1407792149,7,HttpComponents HttpAsyncClient 4 0 2 GA Released,mail-archives.apache.org +9,1407792121,4,Brian Goetz Evolving Java,infoq.com +63,1407787064,11,So the stickers I sent out for have arrived Plus extras,imgur.com +8,1407782517,8,Charts with jqPlot Spring REST AJAX and JQuery,softwarecave.org +7,1407781577,10,Is there anyway I can get Eclipse on my Chromebook,self.java +8,1407780754,5,JavE Java Ascii Versatile Editor,jave.de +31,1407778784,9,First batch of JEPs proposed to target JDK 9,mail.openjdk.java.net +26,1407770649,2,Goodbye LiveRebel,zeroturnaround.com +7,1407769678,6,Any solutions for JSP Unit Testing,self.java +19,1407750845,8,A sudo inspired security model for Java applications,supposed.nl +11,1407745603,5,Generating equals hashCode and toString,techblog.bozho.net +15,1407737955,11,Java Weekly 7 Generics with Lambda unified type conversion and more,thoughts-on-java.org +2,1407736021,12,Okay I want to start doing Java can you answer 2 questions,self.java +4,1407726885,15,Would using a persistence database not cause writing objects to it to have a StackOverflowError,self.java +0,1407724761,6,Anyone know how this is done,self.java +38,1407720662,10,Something I wasn t aware about random numbers in java,engineering.medallia.com +5,1407715775,7,Finding the inside of a closed shape,self.java +9,1407706233,8,Best swing layout for vertical list of buttons,self.java +48,1407697043,8,Best way to learn advanced java from home,self.java +8,1407691632,8,Can I turn a jar into a exe,self.java +1,1407685129,7,Sanitizing webapp outputs as an an afterthought,blog.frankel.ch +6,1407684966,17,Just bought a pogoplug mobile and installed Debian on it Question about java apps and resource usage,self.java +42,1407664170,9,Generics How They Work and Why They Are Important,oracle.com +4,1407647145,4,Best Java library reference,self.java +11,1407638437,3,Thread sleep Alternatives,self.java +9,1407638427,9,Java certification which one and what materials to use,self.java +24,1407621954,6,Essential Gradle snippet for Intellij users,movingfulcrum.tumblr.com +5,1407618990,14,Showing how to use Java 8 dates and functional programming to write a timer,selikoff.net +3,1407587337,2,JCheckBox Help,self.java +29,1407582443,4,jFairy Java Faker Library,codearte.github.io +23,1407571860,9,jclouds 1 8 released the Java multi cloud toolkit,jclouds.apache.org +11,1407533056,11,Will HTML5 make good old JSPs popular again by Adam Bien,adam-bien.com +0,1407528358,10,Oracle hasn t killed Java but there s still time,infoworld.com +9,1407527216,4,Presentation Netty Best Practices,youtube.com +0,1407526598,2,Help c,self.java +1,1407524893,17,I created an application that lets you generate pdf html reports and json apis through MySQL Procedures,self.java +0,1407514194,7,Ask r java ServerSocket From outside router,self.java +7,1407513717,10,How to run method in parent JFrame after modal closes,self.java +20,1407510126,19,x post from r programming univocity parsers a suite of open source parsers for java contributions more than welcome,github.com +5,1407509335,8,Updating Implementing Interfaces without restarts in JRebel 6,zeroturnaround.com +3,1407500223,4,Code coverage with Netbeans,self.java +2,1407444048,11,Gost hash Pure Java Russian GOST 34 11 94 hash implementation,github.com +16,1407438447,7,High time to standardize Java EE converters,arjan-tijms.blogspot.com +1,1407435022,2,Java Botnet,self.java +6,1407428192,3,Order of modifiers,self.java +5,1407425624,10,Help Coding A Genetic Algorithm to Solve the Knapsack Problem,self.java +25,1407423206,7,ArrayList and HashMap Changes in JDK 7,javarevisited.blogspot.sg +2,1407415033,6,Getting JDK installers working on Yosemite,self.java +5,1407413900,5,StringJoiner in Java SE 8,blog.joda.org +11,1407411660,13,Oracle s Latest Java 8 Update Broke Your Tools How Did it Happen,takipiblog.com +1,1407408934,2,What course,self.java +1,1407406578,4,Spring Data Jpa Filters,self.java +147,1407405335,6,Get rid of the frickin toolbar,self.java +4,1407401638,8,Internet Explorer to start blocking old Java plugins,arstechnica.com +2,1407401407,9,Should I use direct references to classes as delegates,self.java +0,1407390847,10,6 Reasons Not to Switch to Java 8 Just Yet,javacodegeeks.com +4,1407373455,8,HSQLDB timestamp field that automatically updates on update,self.java +6,1407372471,3,Java learning problems,self.java +4,1407369429,5,Java Annotated Monthly July 2014,blog.jetbrains.com +0,1407366864,9,The attributes of an object are often coded as,self.java +1,1407364945,6,Suggestion for Loan Calculator UML diagram,self.java +0,1407351983,5,Wrapping Polymer components with JSF,self.java +51,1407349780,7,CodeExchange A new Java code search engine,codeexchange.ics.uci.edu +4,1407349669,9,Needing no annotation no external mapping reflection only ORM,self.java +5,1407344810,7,UI framework suggestions for single page application,self.java +17,1407342086,5,presentation State of Netty Project,youtube.com +4,1407322568,9,Java Blog Beginner s Guide to Hazelcast Part 3,darylmathison.wordpress.com +6,1407321725,10,Question Spring mvc ErrorPageFilter creates random overflow and high CPU,stackoverflow.com +6,1407318400,4,gaffer foreman on JVM,github.com +25,1407314637,12,OhmDB The Hybrid RDBMS NoSQL Database for Java Released under Apache License,github.com +17,1407311357,10,OptaPlanner 6 1 0 Final released open source constraint optimizer,optaplanner.org +5,1407308165,11,Setting up Liquibase for Database change Management With Java Web Application,groupkt.com +1,1407301723,6,Cool little JSON library I made,youtube.com +3,1407298447,24,Anyone here who could offer some help with JOGL I am more less a beginner with absolutely no knowledge when it comes to graphics,self.java +7,1407289478,11,Y combinator in Java in case someone needs it probably never,self.java +11,1407288242,12,Hibernate ORM with XRebel Revealing Multi Query Issues with an Interactive Profiler,zeroturnaround.com +5,1407281602,8,HELP Coding and compiling in Sublime Text 3,self.java +6,1407274419,3,Java docopt implementation,github.com +6,1407272934,9,Best way for AJAX like search functionality in JTable,self.java +4,1407259402,8,JCP News Many Java EE 8 specs started,blogs.oracle.com +1,1407249540,7,Web Based Application using Java Flex Development,elegantmicroweb.com +17,1407219146,5,Lambda Expressions Java 8 Feature,groupkt.com +7,1407212774,15,In Detail A Simple Selection Sort In Java Along With Generics Implementation Code In Action,speakingcs.com +6,1407207559,11,Can someone tell me why nothing is rendering to my screen,pastebin.com +5,1407183706,11,Can I teach Java with Pi or Arduino xpost r programming,self.java +13,1407181669,8,Pursuing a career in Java Any tips pointers,self.java +3,1407180309,8,What should I be learning Stuck at swing,self.java +0,1407179504,10,class com java24hours root2 does not have a main method,self.java +0,1407177667,10,I haven t used Java since 2011 What has changed,self.java +5,1407174287,5,Monkey X Raph s Website,raphkoster.com +7,1407171212,6,Feel secure with SSL Think again,blog.bintray.com +25,1407167856,6,Maven Central HTTPS Support Launching Now,central.sonatype.org +0,1407163234,10,A little help with a java program I m making,self.java +15,1407156589,5,Spring Framework and OAuth Tutorial,blog.techdev.de +2,1407139190,11,Java Weekly 6 Micro Services CDI 2 0 NoEstimates and more,thoughts-on-java.org +8,1407130853,6,How to choose between Web Frameworks,self.java +23,1407130616,4,Java 8 Stream Tutorial,winterbe.com +136,1407123631,6,Falling back in love with Java,self.java +0,1407103122,7,How to undo Git Checkout in Netbeans,self.java +1,1407079159,12,Is it possible to make Spring Roo apps behave like Django apps,self.java +18,1407076214,7,Session Fixation and how to fix it,blog.frankel.ch +0,1407068560,5,Writing amp Reading Text Files,self.java +4,1407065732,5,Why we should love null,codeproject.com +0,1407059725,7,How Jetty embedded with cuubez rest framework,code.google.com +0,1407042039,9,Where can a high school java programmer find employment,self.java +0,1407034990,11,Why does my JSF AJAX only work on the second try,self.java +3,1407025519,8,Java EE Tutorial 11 Built in JSF Validation,youtube.com +2,1407013632,8,JavaFX runnable jar cannot find my music files,self.java +0,1407007088,9,How to add JFXtras to current project without Maven,self.java +0,1407003044,9,Is it a waste of time to learn Java,self.java +7,1407000890,6,Use Maven for Desktop only application,self.java +1,1406995262,8,Parallelism of esProc enhances Oracle Data Import Speed,datathinker.wordpress.com +0,1406994226,7,Comparison between different looping techniques in Java,groupkt.com +1,1406992489,3,Riemann JVM Profiler,github.com +6,1406977160,21,Pherialize Library for serializing Java objects into the PHP serializing format and unserializing data from this format back into Java objects,github.com +14,1406976865,6,Apache Tomcat 7 0 55 released,mail-archives.apache.org +22,1406974498,6,JCommander annotation based parameter parsing framework,jcommander.org +0,1406960809,9,How to Serialize Java Object to XML using Xstream,groupkt.com +6,1406955204,13,Best library to use to implement Grid based D amp D virtual tabletop,self.java +9,1406953623,5,JFreeChart 1 0 19 Released,jroller.com +13,1406937264,10,Best way to implement a desktop event calendar in Java,self.java +3,1406936237,5,Android and an external database,self.java +4,1406934375,11,How do you use Eclipse and Mylyn in the development process,self.java +13,1406933251,22,Alright my imperative and talented Java friends I ask you how would you refactor this code in a pre java 8 environment,self.java +3,1406926718,12,Selma is a bean mapper with compile time checks of correct mapping,xebia-france.github.io +13,1406911326,3,Dynamic CDI producers,jdevelopment.nl +4,1406909419,6,Spring Batch Parallel and distributed processing,blog.cegeka.be +7,1406906908,12,How to Build Java EE 7 Applications with Angular JS Part 1,javacodegeeks.com +8,1406903194,14,The 10 Most Annoying Things Coming Back to Java After Some Days of Scala,blog.jooq.org +7,1406896880,7,How to Learn Java for Free Guide,howtolearn.me +10,1406893506,5,JANSI Eliminating boring console output,jansi.fusesource.org +6,1406884713,8,Java EE Tutorial 10 Using Ajax with JSF,youtube.com +0,1406883762,2,Struts prerequisites,self.java +12,1406877900,5,Skill Sets for large organization,self.java +0,1406875817,3,Java Minecraft help,self.java +4,1406867444,9,Spring REST backend for handling Bitcoin P2SH multisignature addresses,self.java +6,1406845306,8,Bouncy Castle Release 1 51 is now available,bouncycastle.org +4,1406840378,14,How to take over the computer of any Java or Clojure or Scala developer,blog.ontoillogical.com +2,1406840154,9,Flatten maven plugin 1 0 0 beta 2 released,maven.40175.n5.nabble.com +2,1406839864,8,Appassembler maven plugin Version 1 8 1 Released,maven.40175.n5.nabble.com +23,1406839717,17,an open source solution to application performance monitoring for java server applications x post from r javacodegeeks,stagemonitor.org +0,1406833712,6,Value Objects in Java amp Python,stevewedig.com +6,1406832354,12,We built KONA Cloud with Java Javascript with Nashorn Check it out,konacloud.io +8,1406830442,6,Hibernate Statistics with Hawtio and Jolokia,blog.eisele.net +0,1406817918,7,R I P XML in Spring Applications,blog.boxever.com +11,1406808810,9,Maven Shell I only just found out this existed,blog.sonatype.com +2,1406798394,13,Is it good practice to rollback transactions from only unchecked exceptions Spring J2EE,self.java +4,1406788506,6,Java EE Tutorial 9 JSF Navigation,youtube.com +0,1406781994,9,Why one developer switched from Java to Google Go,infoworld.com +23,1406759649,7,Going to Java One What to expect,self.java +1,1406759398,8,Writing min function part 3 Weakening the ordering,componentsprogramming.wordpress.com +18,1406751945,5,Building Web Services with DropWizard,hakkalabs.co +0,1406740858,10,Where to upload jar file on server to run it,self.java +4,1406740184,4,On logging in general,self.java +0,1406736308,20,Web Development Using Spring and AngularJS Eighth Tutorial Released Integration of ng boilerplate for AngularJS Development Setup and General Overview,youtube.com +0,1406735641,10,Need Help Nested if inside switch statement Is it possible,self.java +4,1406734921,11,HawtIO on JBoss Wildfly 8 1 step by step Christian Posta,christianposta.com +8,1406731471,12,The Netflix Tech Blog Functional Reactive in the Netflix API with RxJava,techblog.netflix.com +8,1406723165,5,Best library for creating Reports,self.java +26,1406721948,8,Scala 2 12 Will Only Support Java 8,infoq.com +32,1406720879,9,What are the inherent problems in Logback s architecture,self.java +17,1406718198,12,Eating your own dog food threadlock detection tool finds locks in itself,plumbr.eu +7,1406714763,10,Big execution time difference between java Lambda vs Anonymous class,stackoverflow.com +17,1406710178,4,HTTP 2 and Java,weblogs.java.net +2,1406700391,7,Generate X509 certificate with Bouncycastle s X509v3CertificateBuilder,self.java +0,1406694211,7,Crawling a site and indexing its content,self.java +2,1406689704,18,Spring XD 1 0 GA makes Streaming amp Batch Ingest Analyze Process Export drop dead simple for Hadoop,spring.io +1,1406672893,9,Scala Named a Top 10 Technology for Modern Developers,typesafe.com +0,1406672310,11,Spring MVC and XRebel Uncovering HttpSession Issues with an Interactive Profiler,zeroturnaround.com +4,1406669306,9,Encrypt private key with password when creating certificate programmatically,self.java +8,1406668013,15,Creating a JavaFX Application pure Java VS SceneBuilder amp FXML and testing it with Automaton,sites.google.com +0,1406659547,6,Android Tutorial Contest 10K in Prizes,self.java +1,1406659197,4,Guess a Number game,self.java +1,1406658145,7,Making my code run on a server,self.java +2,1406655078,4,Java ME Certification Prep,self.java +1,1406654388,2,Kata Potter,self.java +0,1406649059,9,Java Concurrency Future Callable and Executor Example Java Hash,javahash.com +3,1406644365,7,MongoJack JAX RS gt Return Dynamic Documents,self.java +69,1406642398,11,IEEE ranks Java as Top Programming Language Despite Ignoring Embedded Capability,twitter.com +0,1406641948,10,Dependency Injection in Scala using MacWire DI in Scala guide,di-in-scala.github.io +0,1406641564,6,Curryfication Java m thodes amp fonctions,infoq.com +25,1406603897,5,Comparing Java HTTP Servers Latencies,bayou.io +8,1406598999,3,Multidimensional array looping,self.java +7,1406598804,3,Textedit vs Eclipse,self.java +1,1406580816,7,DropWizard MongoDB delivering dynamic documents in JSON,self.java +3,1406578309,3,OpenXaja and ABL,self.java +13,1406575847,9,Library to copy jdbc results into objects Not Hibernate,self.java +16,1406567025,7,Spring Framework 4 1 Spring MVC Improvements,spring.io +3,1406566535,5,Spring Data Dijkstra SR2 released,spring.io +11,1406561524,9,Discover what s in CDI 2 0 specification proposal,cdi-spec.org +5,1406546482,6,External configuration for a Spring Webapp,self.java +18,1406543705,13,Java Weekly 5 Metaspace Server Sent Events Java EE 8 drafts and more,thoughts-on-java.org +15,1406538598,6,Exception Handling in Asynchronous Java Code,blog.lightstreamer.com +0,1406528433,4,Update Java Loop issue,self.java +2,1406526766,10,Remote profiling using SSH Port Forwarding SSH Tunneling on Linux,blog.knoldus.com +0,1406525345,4,Spring MVC with Hibernate,malalanayake.wordpress.com +14,1406520549,3,PrimeFaces Responsive Grid,blog.primefaces.org +0,1406497987,6,Start with JAVA or Android SDK,self.java +4,1406493469,4,Stuck on Java loop,self.java +6,1406475798,6,Spring configuration modularization for Integration Testing,blog.frankel.ch +0,1406467108,3,My Settings class,pilif0.4fan.cz +0,1406447842,4,I need help plz,self.java +0,1406446139,8,Java NewBie with slideshow of display Images Problem,self.java +5,1406401655,6,Jetty 9 2 2 v20140723 Released,jetty.4.x6.nabble.com +25,1406400934,8,The best second language to learn along java,self.java +10,1406390978,18,Pure Java Implementation of an Interactive 3D Graph Rendering Engine and Editor Using a Spring Embedder Algorithm 1200Loc,github.com +25,1406382207,5,Servlet 4 0 The Aquarium,blogs.oracle.com +5,1406351963,6,Help me ramp up in Java,self.java +0,1406337240,29,Anyone looking for a job We are staffing 8 US based Java developers at Accenture for some consulting work PM me your resume contact info if you are interested,self.java +24,1406336899,31,Anyone here using Azul Zing in production Are you happy about your experience Do you recommend it And what are its pros and cons compared to Oracle JVM in your opinion,self.java +0,1406323385,6,Fellow programmers I need your assistance,self.java +11,1406316769,8,Best way to get a Java Developer Internship,self.java +3,1406297796,15,Is JavaScript HTML5 development going to surpass Java JEE as an enterprise platform for development,self.java +0,1406250255,6,How do I get user input,self.java +13,1406249505,4,Working remotely with IntelliJ,self.java +5,1406239798,5,How should I learn Java,self.java +23,1406234582,6,Implement compareTo Using Google Guava Library,dev.knacht.net +7,1406234246,2,CORS Filter,software.dzhuvinov.com +5,1406223025,9,Handling static web resources with Spring Framework 4 1RC1,spring.io +0,1406214549,3,problem with netbeans,self.java +5,1406205586,19,Web Development Using Spring and AngularJS Seventh Tutorial Released Review of code and testing the completed backend using Postman,youtube.com +9,1406196210,3,PrimeFaces Accessibility Update,blog.primefaces.org +7,1406187423,5,Any doc odt java generator,self.java +1,1406173624,8,Can I do this and if so how,self.java +0,1406172768,4,Where do I start,self.java +2,1406163139,11,Has anyone used Lynda com to learn catch up with JAVA,self.java +1,1406156729,11,How to use tab button to change between JTextFields in Netbeans,self.java +19,1406149787,7,Interview with Juergen Hoeller at QCon 2014,infoq.com +12,1406149517,4,Hadoop without code complication,infoq.com +2,1406148668,5,Easy Ways to Learn Java,self.java +43,1406140044,9,How to turn off junkware offers when updating Java,twitter.com +1,1406129648,10,Cloudbreak New Hadoop as a Service API Enters Open Beta,infoq.com +38,1406121275,11,How to Instantly Improve Your Java Logging With 7 Logback Tweaks,takipiblog.com +3,1406121020,9,Do I really have a car in my garage,stackoverflow.com +14,1406067531,5,JDK 8u11 Update Release Notes,oracle.com +21,1406066141,4,Log4j 2 0 released,mail-archives.apache.org +2,1406054512,7,The elements still holding back web xml,movingfulcrum.tumblr.com +0,1406045221,10,Have CXF WSS4J read sign from database instead of keystore,self.java +21,1406028225,5,JSF 2 3 has started,java.net +0,1406025444,2,Java Developers,nsainsbury.svbtle.com +11,1406025378,9,Time memory tradeoff with the example of Java Maps,java.dzone.com +4,1406018989,14,Whitespace Matching Regex Java Or how you ve probably gotten it wrong so far,stackoverflow.com +75,1406016169,10,RichFaces throws in the towel JBoss to focus on AngularJS,bleathem.ca +7,1406014445,15,I m about to learn Java at uni and I have a couple of questions,self.java +40,1405984191,5,AlgPedia The free algorithm encyclopedia,algpedia.dcc.ufrj.br +0,1405981556,5,Proper Debugging in eclipse video,youtube.com +6,1405979806,5,The best approach to learn,self.java +0,1405959965,1,Tuples,benjiweber.co.uk +11,1405957412,24,Shameless self promotion bignumutils Utility classes for dealing with BigDecimal and BigInteger something I made a while ago to make BigXXXX operations more clear,code.google.com +14,1405945641,6,Implementing size on a concurrent queue,psy-lob-saw.blogspot.com +21,1405944661,5,JEP 191 Foreign Function Interface,openjdk.java.net +9,1405944142,14,Application Servers are Sort of Dead okay not really but they are used differently,beyondjava.net +45,1405933555,8,Introducing Para an open source back end framework,self.java +0,1405911842,11,How to Create and use Enumerated types in Java Java Talk,javatalk.org +5,1405906254,12,Question about public private keys from using keytool to generate certificate keystore,self.java +21,1405883983,11,Looking for a good text texts to learn JSF Spring Hibernate,self.java +9,1405878363,25,Rottentomatoes as of 1 45pm EST Jul 20 I m sure we ve all seen the ol NoClassDefFoundError exception at some point in our lives,i.imgur.com +10,1405873832,8,Spring Guice dependency injection and the new keyword,self.java +5,1405872403,12,Invalid Length in LocalVariableTable Using Spring Hibernate Java 8 streams Any Ideas,self.java +12,1405847986,15,Searching for somebody pointing out the biggest mistakes I made in my first Java game,self.java +2,1405834577,10,Osama Oransa s Blog JPA 2 1 Performance Tuning Tips,osama-oransa.blogspot.sg +8,1405828344,15,The Great White Space Debate space around the terms of a for loop or no,medium.com +2,1405802991,11,Font for any Java related program is displaying improperly ex Minecraft,self.java +2,1405796362,10,Exported jar Program Only Runs on my Desktop Eclipse Issue,self.java +10,1405791405,4,Hybrid JavaFX Desktop Applications,twitter.com +17,1405784600,9,Java Learning Design Patterns using a Problem Solution approach,self.java +0,1405747429,8,Need help removing a jrat from a file,self.java +8,1405740966,2,Fixing TreeSet,self.java +0,1405733978,8,Looking for a Java programmer that loves hockey,self.java +9,1405720690,19,Attention Big Data devs Spring XD 1 0 0 RC1 released now is the time to preview and feedback,spring.io +4,1405714932,7,War deployment in Wildfly using Eclipse Luna,self.java +1,1405714059,4,Maven Shading LGPL Jar,self.java +3,1405708603,7,How to generate a random long number,self.java +49,1405705904,8,Java is the Second Most Popular Coding Language,blog.codeeval.com +15,1405690755,6,Java 8 Functional Interface Naming Guide,blog.orfjackal.net +0,1405690003,2,Need help,self.java +13,1405687351,6,Lambda Expression Basic Example Java 8,ravikiranperumalla.wordpress.com +7,1405687336,6,Serializable What does it acutally do,self.java +12,1405673903,6,Where Has the Java PermGen Gone,infoq.com +81,1405672173,13,Log4J2 is final congrats to the team and welcome our new logging overlords,logging.apache.org +2,1405665995,10,How do I put a video in my Swing application,self.java +9,1405630147,11,Contexts and Dependency Injection for Java 2 0 CDI 2 0,blogs.oracle.com +5,1405624023,2,crl checking,self.java +8,1405623527,4,Saving debug variables state,self.java +18,1405611045,3,Java programs grader,self.java +7,1405608887,9,What to learn next x post from r learnjava,self.java +16,1405607829,9,Java API for JSON Binding JSON B The Aquarium,blogs.oracle.com +28,1405604250,14,Recently ran into this problem and this post was really mother f king helpful,code.nomad-labs.com +4,1405587295,7,Jaybird 3 0 snapshot available for testing,firebirdnews.org +0,1405585062,16,The output of my Java code changes arbitrarily Could Date or Calendar be the culprit Help,self.java +26,1405580448,3,JDK8 Fibonacci stream,jacobsvanroy.be +3,1405572040,12,Per request cache of properties query results etc How to do it,self.java +12,1405559558,3,Storing encryption key,self.java +8,1405558749,3,OCAJSE7 failed twice,self.java +2,1405557971,18,Trying to read large txt doc to array but when ran the array is filled with Null values,self.java +0,1405546603,5,NEW TO JAVA NEED HELP,self.java +2,1405543241,6,Hierarchical faceting using Spring data solr,self.java +0,1405538133,13,WTF Java wont add the site to the site list of exceptions HELP,self.java +0,1405533854,5,Chat server client I made,self.java +5,1405531152,34,I am so frustrated I just can t get started with developing somehing with java or an android game I can t get past all the installation stuff on tutorials I always get errors,self.java +6,1405525295,12,Build HTML Trees in Java Code We don t need no template,bayou.io +1,1405520831,15,Having a problem coding with arrays that accepts an array of objects in a class,self.java +3,1405520460,4,Java Debuggers and Timeouts,insightfullogic.com +5,1405518352,9,Creating a Null Pointer Checker for series of objects,self.java +0,1405516686,10,Is Retrofit ErrorHandler acceptable for handle an api level errors,self.java +25,1405508561,20,Hibernate Cache Is Fundamentally Broken and Hibernate team just closed the associated issue after being open for a few years,squirrel.pl +83,1405498101,8,lanterna Easy console text GUI library for Java,code.google.com +1,1405474848,7,Lightweight super fast RESTful web service engine,cuubez.com +2,1405467982,5,AlgPedia the free algorithm encyclopedia,algpedia.dcc.ufrj.br +22,1405462950,11,Java SE 8 Update 11 and Java SE 7 Update 65,blogs.oracle.com +4,1405456131,6,Oracle Critcial Patch Update July 2014,oracle.com +33,1405453046,6,Why doesn t Java have tuples,self.java +3,1405452478,10,Is it bad to import more packages than you need,self.java +10,1405445452,7,JSR 311 JAX RS vs Spring REST,self.java +13,1405444180,5,JSON B draft JSR available,java.net +0,1405443440,14,Programmers of Reddit I need your Help on this java Tic Tac Toe game,self.java +4,1405442609,10,An alternative approach of writing JUnit tests the Jasmine way,mscharhag.com +7,1405434327,7,Intro to Java textbook with actual problems,self.java +8,1405433830,5,Fixing Garbage Collection Issues Easily,blog.codecentric.de +12,1405427672,5,Native launcher for Java applications,richjavablog.com +20,1405421738,9,Library for converting documents into a different document format,documents4j.com +22,1405420331,10,Needing Advice Do I learn Spring MVC JSF or AngularJS,self.java +10,1405414744,4,Java text edit component,self.java +18,1405413967,4,Java s Volatile Modifier,blog.thesoftwarecraft.com +9,1405405413,9,Schedule Java EE 7 Batch Jobs Tech Tip 36,blog.arungupta.me +2,1405393715,5,How to input multiple variables,self.java +13,1405391609,13,Would love a casual code review if you ve got a spare moment,self.java +0,1405381110,6,Java tic tac toe game help,self.java +14,1405371012,11,ArrayList and memory layout in Java and a comparison to C,self.java +4,1405369327,4,Need help with JApplet,self.java +3,1405365782,15,Stuck on a problem involving a method dealing with loops strings and a return value,self.java +0,1405363010,4,Need help with code,self.java +36,1405360978,7,Java s generics are getting more generic,sdtimes.com +10,1405360775,6,Java 8 More Functional Relational Transformation,blog.jooq.org +0,1405355260,20,Will Java EE 6 7 skills be in demand as much as Spring Hibernate over the next couple of years,self.java +12,1405347523,10,Server vs client side rendering AngularJS vs server side MVC,technologyconversations.com +6,1405341998,8,Latest and the best SPRING 4 HIBERNATE 4,jabahan.com +30,1405341891,7,The future of Java on Windows XP,blogs.oracle.com +8,1405341676,13,Java Weekly 4 PicketLink and DeltaSpike Batch API JMS 2 1 and more,thoughts-on-java.org +1,1405336150,6,Getting cluster information from Apache Mesos,self.java +4,1405335851,8,Using Eclipse compiler to create dynamic Java objects,blog.nobel-joergensen.com +5,1405331899,6,Ideas about what to learn now,self.java +10,1405330334,12,Abandoning Glassfish do I choose Wildfly of TomEE What would YOU choose,self.java +0,1405297784,8,I need some help with a simple problem,self.java +79,1405289582,13,Why do all the code teaching websites like CodeAcademy have everything but java,self.java +3,1405282216,6,Erros occurring during build in Eclipse,self.java +6,1405267228,7,Calculate Hash Values Using Google Guava Library,dev.knacht.net +7,1405257104,13,Summer project first time working with GUI Best way to go around it,self.java +7,1405256917,7,JBoss EAP 6 2 Clustered Setup Testing,self.java +26,1405246678,11,The Java Origins of Angular JS Angular vs JSF vs GWT,blog.jhades.org +25,1405246176,11,July 2014 Infant Edition State of the Specialization by Brian Goetz,cr.openjdk.java.net +15,1405209556,13,Is it considered bad practice to use toString hashCode as the hashCode method,self.java +13,1405196930,13,Get your Event Sourced web application development started with one line using Maven,blogg.bouvet.no +0,1405194713,5,Como conectar Java y Mysql,hermosaprogramacion.blogspot.com +16,1405186227,10,How popular Apache Camel vs Mule ESB vs Spring Integration,andhuvan.wordpress.com +24,1405165884,15,Question What is the real world use case of Nashorn JavaScript engine in Java 8,self.java +0,1405157505,7,IntelliJ IDEA 13 1 is painfully slow,self.java +0,1405150326,8,Fast JSF project startup with happyfaces maven archetype,intelligentjava.wordpress.com +0,1405148726,33,Can anyone help me with setting up some small java programs as assignment It would be very helpful if I can get some links that can provide with some programs Thanks in advance,self.java +2,1405137482,7,Writing to the top of a file,self.java +10,1405126391,9,Musing about a build tool that doesn t exist,self.java +1,1405123864,4,Gson array loading help,self.java +5,1405120054,6,Good free resource to learn Swing,self.java +8,1405111650,4,PC Minecraft on Pi,self.java +8,1405103809,4,Java Built in Exceptions,tutorialspoint.com +37,1405100422,5,Java Memory Model Pragmatics transcript,shipilev.net +2,1405099679,3,eclipse not opening,self.java +9,1405088849,3,Why IntelliJ Idea,self.java +7,1405084977,7,gonsole weeks a git console for eclipse,codeaffine.com +56,1405077698,12,Why Build Your Java Projects with Gradle Rather than Ant or Maven,drdobbs.com +0,1405067404,11,JSF 2 x Tip of the Day Encoding Text for XML,javaevangelist.blogspot.nl +6,1405050589,17,Looking forward to replace Spring Transactional with org softus cdi transaction transaction cdi Has anybody tried it,self.java +3,1405044562,2,Simple GUI,self.java +22,1405043833,12,A performance comparison redux Java C and Renderscript on the Nexus 5,learnopengles.com +1,1405037981,4,Configuring Maven in Eclipse,self.java +7,1405037343,9,Spring Session Project debuts a new approach to HTTPSession,spring.io +14,1405020052,3,PrimeFaces MetroUI Demo,blog.primefaces.org +6,1405018856,12,My first big project need some help with XML StAX based parsing,self.java +12,1405014846,5,Defaults in Java EE 7,blog.arungupta.me +21,1405014212,7,JavaEE From zero to app in minutes,opendevelopmentnotes.blogspot.com +0,1405000357,13,What are some noticeable amp concrete examples of Java applications Particularly web applications,self.java +8,1404967019,1,Swing,self.java +5,1404945614,10,What resources do you recommend for 3D java game dev,self.java +12,1404942930,5,Java Annotated Monthly June 2014,blog.jetbrains.com +28,1404936350,13,Forget about JavaOne Let s talk about the feature list for Java 9,theserverside.com +8,1404934035,10,Resurfaced performance issue in mojarra fixed in 2 2 7,blog.oio.de +2,1404933637,4,Java Assignments and Projects,self.java +4,1404924585,4,Result New Project Valhalla,mail.openjdk.java.net +0,1404907760,4,Finally return considered harmful,schneide.wordpress.com +14,1404906944,10,Writing Tests for Data Access Code Unit Tests Are Waste,petrikainulainen.net +27,1404903780,3,Java Classloaders Tutorial,zeroturnaround.com +18,1404902992,9,Convert Java Objects to String With the Iterator Pattern,blog.stackhunter.com +18,1404895732,9,RxJava Java SE 8 Java EE 7 Arquillian Bliss,lordofthejars.com +6,1404864593,8,How to organize projects with custom lambda interfaces,self.java +2,1404858425,2,Clash Inspector,clashinspector.com +1,1404858313,2,RxJava Observable,github.com +9,1404858243,9,Bouncy Castle final beta of 1 51 now available,bouncy-castle.1462172.n4.nabble.com +0,1404858236,9,Where to report bugs found within the java libraries,self.java +1,1404858173,7,VisNow generic visualization framework in Java technology,visnow.icm.edu.pl +2,1404858097,9,Base abstractions and templates for value classes for Java,github.com +0,1404857288,8,Apache Tomcat Native 1 1 31 released SSL,mail-archives.apache.org +2,1404845716,10,Start a service in a thread from application scoped bean,self.java +0,1404845032,5,what kind of this sintax,self.java +1,1404844460,4,Finding Relative File Path,self.java +0,1404839623,8,Building the PrimeFaces Mobile translation demo with NetBeans,robertjliguori.blogspot.com +9,1404833795,38,Can one specialize in one part of java and hope to get a job For example JavaFX or JavaServer Faces Can I specialize in one of them and have a good chance of finding employment as a programmer,self.java +1,1404832479,6,Memory barriers and visibility between threads,self.java +2,1404828419,2,Serializing ScriptEngine,self.java +46,1404825273,7,Top 50 Threading Questions from Java Interviews,javarevisited.blogspot.sg +54,1404815326,8,Develop using IntelliJ IDEA Check your productivity guide,blog.idrsolutions.com +11,1404807470,7,JBoss Tools m2e 1 5 0 improvements,tools.jboss.org +9,1404803902,10,Java EE 7 and more on WebLogic 12 1 3,blogs.oracle.com +3,1404799385,5,Method not returning int help,self.java +6,1404792913,7,Securing Your Applications with PicketLink and DeltaSpike,in.relation.to +1,1404780396,17,Can anyone link me to a really good tutorial on how to use Scene Builder with NetBeans,self.java +2,1404777530,7,Good book for Java and OOP design,self.java +0,1404772919,7,Project I can finish in 4 days,self.java +0,1404772188,26,I don t know if I am asking this right but why don t I have to make an object for third party or external libraries,self.java +9,1404771334,9,JUnit testing exceptions with Java 8 and Lambda Expressions,blog.codeleak.pl +0,1404767968,11,The best way to visualize TONS of data on interactive chart,self.java +0,1404765077,8,How to subtract an int from an int,self.java +3,1404763743,7,Best Way to Learn Web Dev Technologies,self.java +13,1404763421,6,Jaxrs Basic HTTP Authentication sample application,code.google.com +0,1404761281,5,Best java architecture for SaaS,self.java +13,1404759789,7,Java interview questions for a junior beginner,self.java +3,1404749740,6,How can I combine multiple Doclets,self.java +17,1404735672,11,Java Weekly 3 Microservices Java 8 features upcoming events and more,thoughts-on-java.org +0,1404735008,4,Resources to learn java,self.java +12,1404734337,8,Practice before starting a junior Java dev job,self.java +14,1404731630,8,What s the difference between Tomcat and TomEE,self.java +5,1404728298,9,Is there any way to modify code at runtime,self.java +8,1404726456,5,Lambda Behave 0 2 Released,insightfullogic.com +4,1404726393,9,Cluster Analysis in Java with Dirichlet Process Mixture Models,blog.datumbox.com +22,1404719189,6,Videos of all Geekout 2014 presentations,2014.geekout.ee +14,1404718660,5,Free Spring Framework Course 101,youtube.com +4,1404710630,30,I m new to non gui programming languages but not new to programming as a concept What s the best way for me to learn java for all general purposes,self.java +6,1404683134,3,Understanding Scanner Sc,self.java +4,1404681510,5,Mavenize your custom PrimeFaces theme,jsfcorner.blogspot.com +7,1404659671,4,Easier Spring version management,blog.frankel.ch +2,1404620849,16,How can I save a hashmap so I can read it later after terminating my program,self.java +2,1404610823,4,Basic java before android,self.java +4,1404605759,5,Setting up a swing GUI,self.java +9,1404595804,4,Apache Commons Sandbox OpenPgp,commons.apache.org +21,1404586033,5,Maven 3 2 2 Release,maven.40175.n5.nabble.com +15,1404585636,8,Netty 4 0 21 Final released Performance improvements,netty.io +8,1404560920,7,JCP News WebSocket and Batch maintenance reviews,blogs.oracle.com +7,1404511290,9,Best way to visualize transactions within a spring application,self.java +7,1404507268,5,Introducing the Java EE Squad,blogs.oracle.com +7,1404498819,4,Tools for java teacher,self.java +0,1404497631,11,New to java trying to figure Time for scripting in unity,self.java +44,1404493234,6,Java vs Scala Divided We Fail,shipilev.net +5,1404484865,5,Help writing some basic programs,self.java +10,1404475925,8,Spring Social Facebook 2 0 0 M1 Released,spring.io +0,1404473008,3,new to java,self.java +2,1404453991,2,CVQuest feedback,self.java +2,1404424179,13,Everything Developer Need to Know About new Oracle WebLogic 12 1 3 Whitepaper,oracle.com +0,1404422688,7,How to switch between two class implementations,self.java +0,1404415928,12,Spring 4 CGLIB based proxy classes with no default constructor Codeleak pl,blog.codeleak.pl +0,1404414924,15,InfoQ s Matt Raible on Spring IO Platform news what it means to Java devs,infoq.com +0,1404412965,23,Why is Java the most popular language Why do Java programs have terrible UI s Can Java not use the Microsoft Windows look,self.java +6,1404411214,6,Developers Guide to Static Code Analysis,zeroturnaround.com +3,1404407222,8,Problems comparing strings that are supposedly the same,self.java +19,1404406644,28,Michael Vorburger s Blog v2 Java 8 null type annotations in Eclipse Luna v4 4 your last NullPointerException ever The End of the World as we know it,blog2.vorburger.ch +3,1404402697,6,Incompatible JVM Please help a newbie,self.java +11,1404396782,7,Eclipse Luna hangs in every other minute,self.java +59,1404390360,17,Web Development Using Spring and AngularJS Fifth Tutorial Released Spring Exceptions JSON Annotations and the ArgumentCaptor object,youtube.com +5,1404389831,6,Explicit vs Implicit configuration in Spring,literatejava.com +5,1404347709,10,Boncode IIS to Tomcat Connector alternative to Apache ISAPI plugin,tomcatiis.riaforge.org +1,1404347702,6,Help With Coding Priority Queues Java,self.java +3,1404338153,4,Help with magical code,self.java +2,1404337297,19,Beta2 of compile time model mapping generator MapStruct is out with support for Java 8 Joda Time and more,mapstruct.org +0,1404333760,3,Is Java safe,self.java +4,1404333268,9,How to send a webdriver to a javascript link,self.java +13,1404333140,10,Who else thinks that Eclipse Luna looks better on Ubuntu,imgur.com +21,1404328105,5,JAVA 4 EVER Official Trailer,youtube.com +3,1404325402,3,Thoughts on OrientDB,self.java +25,1404323835,4,Project Jigsaw Phase Two,mreinhold.org +8,1404323272,5,Mojarra 2 1 29 released,java.net +24,1404313816,14,You Want to Become a Software Architect Here is Your Reading List Jens Schauder,java.dzone.com +11,1404306483,6,Project Nashorn JavaScript on the JVM,blog.codecentric.de +0,1404304534,18,Are there any tutorials out there showing how you can create a Restful Webservice with Maven and Eclipse,self.java +1,1404270736,19,I have 50 to spend on books to learn Java and computer science in general What should I buy,self.java +0,1404269037,15,Web application simple and SPA simple page application using Spring MVC Thymeleaf Bootstrap Twitter Flight,apprenticeshipnotes.org +1,1404264832,14,Interview with Fred Guime organizer Chicago Java UG CJUG at GOTO Chicago 2014 UGtastic,ugtastic.com +14,1404245213,9,AnimateJSF a thin JSF library to animate JSF components,animatejsf.org +1,1404243717,14,Codelet Automated insertion of example code into JavaDoc using taglets Call for beta testers,self.java +1,1404242817,10,Yet another way to handle exceptions in JUnit catch exception,blog.codeleak.pl +7,1404242259,10,How to make Java more dynamic with runtime code generation,zeroturnaround.com +3,1404236527,7,Java EE IDE Which do you prefer,self.java +18,1404236490,6,What is the status of Swing,self.java +36,1404235843,9,Next major version of Gradle is out 2 0,reddit.com +1,1404235795,9,Anyone willing to help out with a Geotool issue,self.java +1,1404225145,7,Using Web Components in plain Java Blog,vaadin.com +17,1404210148,8,Widespread locking issue in log4j and logback appenders,plumbr.eu +36,1404183389,6,Open source java projects for beginners,self.java +3,1404174900,20,Beginner here just made a simple program to output random numbers and am proud of myself but have some questions,self.java +1,1404173657,11,Java Update 60 being interrupted every time I try to install,self.java +8,1404167108,5,Performance of Random nextInt n,self.java +3,1404152108,7,Spring Data release train Dijkstra SR1 available,spring.io +8,1404145750,8,Test Data Builders and Object Mother another look,blog.codeleak.pl +10,1404144528,7,Using websockets in Java using Spring 4,syntx.io +2,1404138843,9,Looking for suggestions to supplement my income with Java,self.java +56,1404136156,7,IntelliJ IDEA 14 Early Preview is Available,blog.jetbrains.com +0,1404135619,1,Java,self.java +0,1404132290,12,learn how to create website pages and forms with js and java,webix.com +4,1404130726,13,While comparing java web frameworks what would be the most relevant comparison points,self.java +0,1404127786,4,Des Lenses en Java,infoq.com +4,1404121396,4,Rest web service sample,javafindings.wordpress.com +1,1404119781,5,IDE specific shortcut for sysout,therdnotes.com +53,1404110302,12,Why Lingohub is switching from Ruby on Rails to Java Spring MVC,snip.ly +16,1404075755,8,Why is Spring MVC better than Servlets JSP,self.java +11,1404073934,4,java for game creation,self.java +14,1404073049,13,Java Weekly 2 JPA 2 1 Java8 JSR 351 Eclipse Luna and more,thoughts-on-java.org +9,1404069269,7,Apache Maven JAR Plugin 2 5 Released,maven.40175.n5.nabble.com +30,1404067402,22,Retrofit is a type safe REST client just define an interface with url templates and request bodies x post from r javapro,square.github.io +6,1404065398,8,Java Bean Introspector and Covariant Generic Returns 2012,znetdevelopment.com +1,1404061788,3,Conflicting String Methods,self.java +15,1404061696,7,Apache Tomcat 8 0 9 stable available,mail-archives.apache.org +4,1404058322,8,First release of Integration Testing from the Trenches,blog.frankel.ch +0,1404019728,6,JUnit Testing Private Methods and Fields,markreddy.ie +11,1403993506,6,Jasper Reports JRXML Iterating a list,self.java +0,1403982969,16,Java TIL You can break to an outer loop with a label x post r JavaTIL,reddit.com +0,1403950119,10,How to cast java io file to java lang class,self.java +18,1403941526,7,Bayou Async Http Server for Java 8,bayou.io +0,1403936076,15,A variable timer I wrote in my free time anyone see anything wrong with it,self.java +14,1403905043,4,Java web host recommendations,self.java +8,1403904406,7,nanobench Tiny benchmarking framework for Java 8,github.com +8,1403901592,5,Packaging PostgreSQL with Java Application,self.java +66,1403900575,9,What s some simple code that is really smart,self.java +25,1403899125,19,IntelliJ 14 EAP opens Code Coverage tool Structural Search and Replace and Type Migration refactoring part of Community Edition,blog.jetbrains.com +14,1403889628,6,Using Markdown syntax in Javadoc comments,mscharhag.com +5,1403888125,20,Web Development Using Spring and AngularJS Fourth Tutorial Released Covering Controller Development Integration of HATEOAS Support and The PathVariable Annotation,youtube.com +0,1403885699,13,Please give me the link torrent or direct to download JAVA Tutorial Videos,self.java +20,1403883244,5,Blog Introducing Spring IO Platform,spring.io +3,1403882157,11,Any Vaadin or Struts2 Developers that can answer a few questions,self.java +7,1403880946,7,IntelliJ not refreshing file statuses and diffs,self.java +2,1403873405,11,When do you like to take time to learn new tech,self.java +12,1403864789,19,Oracle WebLogic Server 12 1 3 is released with emphasis on HTML 5 apps JAX RS websocket JSON JPA,blogs.oracle.com +2,1403864758,7,Book Review Integration Testing from the Trenches,infoq.com +6,1403864255,5,WebLogic 12 1 3 released,blogs.oracle.com +0,1403857903,6,Why no documentation for Rebound library,self.java +3,1403853683,4,Java 8 Iterable woes,blog.joda.org +0,1403846081,7,naming an object from a user input,self.java +1,1403842942,5,JVM Performance Tuning Resource Request,self.java +6,1403839789,18,What are the uses of creating a class object IN the class that its supposed to be referencing,self.java +13,1403828033,10,Large projects How do you get up to speed quickest,self.java +0,1403810037,9,Selection from MySql using JDBC Xpost from r MySql,self.java +84,1403806257,5,Top 10 Eclipse Luna Features,eclipsesource.com +7,1403800079,12,Spring IO Platform releases a versioned cohesive Spring as a Maven BOM,spring.io +7,1403796343,5,Notes on False Sharing Manifestations,psy-lob-saw.blogspot.com +16,1403766524,6,Making operations on volatile fields atomic,vanillajava.blogspot.co.uk +9,1403766458,5,New Ribbon component in PrimeFaces,blog.primefaces.org +1,1403754120,23,Is it a common acceptable pattern to have a maven module just for model classes so that it can be shared between apps,self.java +2,1403751751,14,How to test for performance and issues of sharing a database with another app,self.java +0,1403751596,3,Updated Java Tutorials,coffeehouseprogrammers.com +3,1403748538,8,Service for Java Programming similar to Google Docs,self.java +3,1403743973,10,A modern testing and behavioural specification framework for Java 8,richardwarburton.github.io +2,1403737573,9,Help with action bar in eclipse Dev android tutorial,self.java +0,1403735463,8,Why should we dump the Java EE Standard,lofidewanto.blogspot.de +2,1403734492,5,Java EE Code Visualization Tools,self.java +0,1403732082,2,Learning Java,self.java +0,1403725689,25,Trying to generate thumbnails from an array of video files and I have no idea what library or how I would go about doing this,self.java +9,1403725585,4,Eclipse Luna and JDK8,jdevelopment.nl +0,1403724516,19,Spring Boot 1 1 2 available The Ease of Ruby Portability of Spring and the perfect BOYC PaaS container,spring.io +3,1403707635,15,Java class Packet contains array of objects of type Packet Please explain to Java newcomer,self.java +4,1403703010,6,Spring Batch Develop robust batch applications,blog.cegeka.be +111,1403701616,7,Eclipse 4 4 Luna is available now,download.eclipse.org +20,1403695451,8,An ultra lightweight high precision logger for OpenJDK,developerblog.redhat.com +11,1403692098,15,what specific types of apps are best to be developed on specific Java web frameworks,self.java +4,1403670508,7,Design consideration for sharing database between applications,self.java +2,1403655867,17,SpringOne2gGX 2014 Super Early Bird extended to June 30th Dallas TX Omni Hotel Sept 8 11 2014,springone2gx.com +31,1403649486,8,A library to generate PDF from JSON documents,github.com +21,1403641885,6,NetBeans IDE 8 0 Satisfaction Survey,netbeans.org +5,1403637963,12,Experienced C Ruby developer looking to get into Java looking for resources,self.java +1,1403623329,5,Writing a FastCGI listening socket,self.java +8,1403616640,5,Astyanax Connecting to multiple keyspaces,markreddy.ie +9,1403615109,5,starting open source scientific project,self.java +25,1403601401,10,New book Java EE 7 with GlassFish 4 Application Server,blogs.oracle.com +9,1403597768,6,Classes in the Java Language Specification,vanillajava.blogspot.co.uk +33,1403594660,11,Experiences with migrating from JBoss AS 7 to WildFly 8 1,jdevelopment.nl +18,1403584856,4,FizzBuzz and other Questions,self.java +0,1403541688,7,Is Java worth using for web applications,self.java +0,1403538481,5,How treemap works in java,javahungry.blogspot.com +48,1403535747,11,Get free Java stickers to show your love of the language,java.net +16,1403514486,7,Java Tools and Technologies Landscape for 2014,zeroturnaround.com +6,1403511752,8,Broadleaf Commerce Enterprise eCommerce framework based on Spring,github.com +1,1403511531,6,Apache PDFBox 1 8 6 released,mail-archives.apache.org +18,1403509903,9,Java Weekly 1 CDI Java8 Bean Validation and more,thoughts-on-java.org +10,1403505143,5,Netty with Forked Tomcat Native,netty.io +0,1403487393,3,Menu Bar help,self.java +0,1403466998,6,Can someone help me install eclipse,self.java +0,1403464832,7,The right bean at the right place,blog.frankel.ch +0,1403463953,8,Any Unique Software IDEA to Make Money Quickly,self.java +41,1403435976,8,CFV Project Valhalla Project Proposal by Brian Goetz,mail.openjdk.java.net +16,1403428031,5,Enhance your testing with Spock,thejavatar.com +1,1403424592,10,Modifying User s Input on Command Line with Java Code,self.java +5,1403387263,10,Tyche a simple way to make random junit test data,self.java +0,1403385444,5,Need help with this error,self.java +24,1403352604,16,Tweety A comprehensive collection of Java libraries for logical aspects of artificial intelligence and knowledge representation,tweetyproject.org +4,1403352541,10,Implementation of the Try Success Failure Scala API for Java,github.com +1,1403343445,13,It s not Spring anymore it s the summer of Java EE 7,nmpallas.wordpress.com +7,1403322889,9,Bridging the gap between Domain objects data and JavaFX,self.java +17,1403319095,9,What is a good road map for learning Java,self.java +0,1403297811,5,Embedding Perl 6 in Eclipse,donaldh.github.io +11,1403292347,7,Getting started with Java what s relevant,self.java +3,1403291864,6,AWS SDK For Java TransferManager Lifecycle,github.com +16,1403288878,5,e commerce website in java,self.java +8,1403286206,11,It shouldn t hurt to write Command Line Applications in Java,news.ycombinator.com +4,1403275317,18,Zipkin is a distributed tracing system for gathering timing data from distributed architectures x post from r javapro,github.com +11,1403272430,8,Boston area developers JUDCon2014 Boston is next week,developerblog.redhat.com +5,1403269511,18,Web Development Using Spring and AngularJS Third Tutorial Released Covering Jackson Configuration and The Spring MVC Test Framework,youtube.com +8,1403264493,9,The Best Java 8 Resources Your Weekend is Booked,blog.jooq.org +54,1403256867,17,The complete Java Tools and Technology Landscape for 2014 report data in a single mind map image,zeroturnaround.com +5,1403231258,13,How to run javascript code in JavaFx WebView after the page is loaded,self.java +3,1403223728,8,Joins and Mapping many to many in jOOQ,self.java +16,1403219355,10,You think you know everything about CDI events Think again,next-presso.com +6,1403217536,6,Alternative to AWS SDK for Java,self.java +0,1403216787,5,Best way to learn Java,self.java +5,1403201420,8,Help with a project making a video game,self.java +7,1403197310,8,From C to Java to Android Application Development,self.java +7,1403180284,3,Where to now,self.java +18,1403179829,3,Hibernate Search reindexing,self.java +3,1403179183,5,System Tray popup menus Win7,self.java +11,1403156642,3,newFixedThreadPool implementation question,self.java +0,1403155987,14,Why do people keep asking if I m interviewing when asking for java help,self.java +0,1403155389,10,How can I detect if one image collides with another,self.java +0,1403154576,15,Why can I not detect intersection in paint method with one object but not another,self.java +1,1403153008,5,Error when making Celsius Converter,self.java +1,1403152328,6,Best Books or article about Spring,self.java +0,1403144178,9,Using Netbeans table and populating with data form database,self.java +0,1403134212,3,Question about Netbeans,self.java +0,1403134180,7,How to detect collision with another image,self.java +40,1403132972,12,Javascript for Java Developers a dive into the language most unusual features,blog.jhades.org +2,1403120866,17,OpenJDK Panama new connections between the Java virtual machine and well defined but foreign non Java APIs,mail.openjdk.java.net +7,1403109937,7,Top seven Java 8 Books in 2014,codejava.net +3,1403101471,7,gonsole weeks content assist for git commands,codeaffine.com +4,1403098643,8,Java Build Tools Ant vs Maven vs Gradle,technologyconversations.com +6,1403095620,5,Rectangle class java lang Object,self.java +1,1403095409,9,How to put a java game on a website,self.java +10,1403092055,12,Dad asked me to help him out Need advice on how to,self.java +53,1403082403,16,How your addiction to Java 8 default methods may make pandas sad and your teammates angry,zeroturnaround.com +0,1403064406,6,Character Class isDigit char hc question,self.java +36,1403046353,7,An interactive Java tutorial for complete beginners,ktbyte.com +2,1403034696,10,Java Application Architecture Tutorial 1 Wiring up The Spring Framework,youtube.com +6,1403031105,2,Best IDE,self.java +0,1403011948,10,developing basic website functionality with webix ui and struts 2,webix.com +6,1403007802,5,Advice for building JFrame application,self.java +0,1403006368,6,Wish to publish ads in GUI,self.java +8,1403006137,17,Is there an optimization level for javac that does not inline usages of public static final fields,self.java +2,1403004074,7,How to Query Java Objects with XPath,northconcepts.com +26,1403000615,6,Force inline Java methods with annotations,nicoulaj.github.io +2,1402986356,6,Help with using RescaleOp and BufferedImage,self.java +0,1402953491,2,ELI5 OSGi,self.java +4,1402951164,6,Most Popular Programming Languages of 2014,blog.codeeval.com +44,1402941519,11,Happiest Jobs For The Class Of 2014 Java Dev No 1,forbes.com +8,1402939999,22,Just released my second tutorial on web development using Spring and AngularJS I m covering the basics of JUnit Mockito and TDD,youtube.com +5,1402935974,6,Making Java secure at the JVM,networkworld.com +89,1402932445,11,Eclipse Luna 4 4 is almost here June 25 release date,projects.eclipse.org +0,1402927241,7,Why Abstract class is Important in Java,java67.blogspot.sg +5,1402910661,6,faster way to compare file contents,self.java +0,1402905353,25,Byte Buddy is a code generation library for creating Java classes during the runtime of a Java application and without the help of a compiler,bytebuddy.net +3,1402897640,10,I need help accessing an existing excel document in java,self.java +77,1402897094,5,9 Fallacies of Java Performance,infoq.com +19,1402878654,20,Are you new to Java Link to in progress java tutorial site I will teach everything from scratch starting now,coffeehouseprogrammers.com +5,1402870092,11,Lag and unexpected movement when moving object in JFrame implementing Runnable,self.java +2,1402866455,10,need help debugging small bit of code dealing with parse,self.java +2,1402863386,7,HttpComponents Client 4 3 4 GA Released,mail-archives.apache.org +6,1402863293,6,Apache Continuum 1 4 2 Released,mail-archives.apache.org +5,1402860721,5,Resources about optimizing Java code,self.java +3,1402853280,9,Is there a shortcut for x post r eclipse,reddit.com +1,1402847126,7,Help Imported Image not appearing in JFrame,self.java +12,1402845149,7,Should I migrate from GlassFish to Tomcat,self.java +19,1402842049,3,The Stream API,blog.hartveld.com +5,1402835058,5,Machine for java web Dev,self.java +5,1402830413,6,33 Most Commons Spring MVC Tutorials,programsji.com +0,1402823077,7,What does mean in between return values,self.java +5,1402822877,10,Looking for recommendations on advanced Unit Integration and Behavioral testing,self.java +1,1402785510,13,Integration testing with Arquillian and CDI support deployed into Tomcat 7 application server,codelook.com +49,1402778163,4,Why Java over C,self.java +19,1402777116,7,Packaging by Feature versus Packaging by Layer,javapractices.com +0,1402774940,1,Programming,self.java +5,1402729626,5,Get images from r EarthPorn,self.java +2,1402722262,4,IP address and java,self.java +1,1402710604,16,How to read a text file from an imported file within the same project in Eclipse,self.java +11,1402707863,10,What is was so great about Apache Struts and Tiles,self.java +3,1402706369,8,How to get familiar with coding in eclipse,self.java +13,1402694972,8,10 Subtle Mistakes When Using the Streams API,blog.jooq.org +32,1402694232,21,Is Java the most prevalent language in the finance world And how does it compare to Scala for that use case,self.java +2,1402690936,8,Help with putting JLabels into ArrayLists in NetBeans,self.java +0,1402688023,21,Q I accidentally deleted my input console I am new to eclipse and I can t seem to get it back,self.java +3,1402685053,5,Android lt gt iOS implementation,self.java +4,1402672770,8,Border Collision Question taking object size into account,self.java +23,1402671999,7,Where to Deploy small Java Web apps,self.java +3,1402667044,13,Questions about a Java Test Game keylistener paint paint component Image Graphic repaint,self.java +0,1402665667,14,How to do remote profiling if you have only console access to remote machine,blog.knoldus.com +14,1402662456,8,Implement Validation Using JSR 303 Annotations in Spring,codeproject.com +15,1402633447,2,count logic,self.java +14,1402610581,6,Apache Ant tasks for JMX access,peter-butkovic.blogspot.de +6,1402609902,25,I m new to Java and decided to try start a cipher encoder decoder I currently have one cipher supported and feedback is much appreciated,self.java +0,1402589520,6,JDBC data import to Orchestrate DBaaS,orchestrate.io +16,1402581051,4,Exercises for Java 8,self.java +20,1402564857,10,Advice for the concurrently confused AtomicLong JDK7 8 vs LongAdder,psy-lob-saw.blogspot.com +2,1402527442,11,Why won t the Mac version of Chrome support Java 7,self.java +1,1402525502,5,The jwall tools ModSecurity Toolbox,jwall.org +3,1402525166,6,Jetty 9 2 1 v20140609 Released,jetty.4.x6.nabble.com +2,1402509668,8,RSS Reader Using ROME Spring MVC Embedded Jetty,eyalgo.com +0,1402508865,14,How to do remote profiling if you have only console access to remote machine,dzone.com +0,1402496691,5,Print Diagnostics with Struts2 issue,self.java +0,1402496178,6,How to Install Apache Tomcat 7,youtu.be +0,1402495694,7,A Playful Eye for the JEE Guy,mbarsinai.com +5,1402493995,5,Mojarra 2 2 7 released,java.net +3,1402490324,3,Structuring JavaFX applications,yennicktrevels.com +16,1402486493,6,Java Thumbnail Generator ImageScalar vs ImageMagic,paxcel.net +0,1402484359,13,How to Set Up Apache Tomcat v 7 with Eclipse IDE using WTP,youtu.be +0,1402478334,12,Discover How to Set Up Apache Maven with Eclipse IDE and m2e,youtu.be +0,1402476923,9,Troubleshooting Apache Maven amp Eclipse WTP Web Tools Platform,youtu.be +15,1402473117,7,Feedback for an aspiring JEE software developer,self.java +0,1402443512,13,I need to see if these two Java games work on your computer,self.java +1,1402419084,9,Need some help on java doc rtf pdf generation,self.java +0,1402415274,12,Can you convert Inkscape s svg file to a png in java,self.java +34,1402411432,11,Check out and provide feedback for my java concurrency library Threadly,self.java +16,1402410944,7,A beginner s guide to Hibernate Types,vladmihalcea.com +6,1402409849,13,JetBrains Newsletter June 2014 0xDBE Brand New IDE for DBAs and SQL Developers,info.jetbrains.com +2,1402407901,4,Continuous Delivery Unit Tests,technologyconversations.com +0,1402399146,11,Export CSV and Excel from Java web apps With Data Pipeline,northconcepts.com +1,1402391852,12,Create Auto Refreshing Pie Chart Bar Chart in Servlet dynamically using JFreeChart,simplecodestuffs.com +46,1402390722,9,All java lang OutOfMemoryErrors with causation examples and solutions,plumbr.eu +15,1402387297,5,JDK8 Lottery Davy Van Roy,jacobsvanroy.be +11,1402375835,10,Lambda A Peek Under the Hood must watch very technical,techtalkshub.com +1,1402369477,14,Dynamic Dependent Select Box using JQuery and JSON in JSP amp Servlet via Ajax,simplecodestuffs.com +4,1402369268,13,What are your favorite HTTP clients and how do you handle path parameters,self.java +1,1402336044,8,AJAX implementation in JSP and Servlet using JQuery,simplecodestuffs.com +29,1402333086,10,TIL an important difference with frame pack vs frame validate,self.java +0,1402329124,9,A single simple rule for easier Exception hierarchy design,blog.frankel.ch +0,1402326936,9,A single simple rule for easier Exception hierarchy design,blog.frankel.ch +2,1402325600,6,Introduction to Play 2 for Java,informit.com +21,1402324304,5,Best way to distribute programs,self.java +1,1402317880,6,Good place to start learning Java,self.java +14,1402302883,10,Clean up your kids toy box with the loan pattern,self.java +0,1402298070,14,Could someone explain the purpose of constructors and method parameters in somewhat simple terms,self.java +9,1402297879,7,Java basic medium topics resources for programmers,self.java +8,1402295973,9,OpenJDK Sumatra Project Bringing the GPU to Java TechTalksHub,techtalkshub.com +6,1402295616,9,Java Heap Dump Analysis using Eclipse Memory Analyzer MAT,simplecodestuffs.com +0,1402278743,2,Java help,self.java +1,1402268264,5,Issue with a 2d Array,self.java +1,1402260742,4,I need some guidance,self.java +1,1402255133,10,Can I provide an update feature with a JAR file,self.java +6,1402251584,8,Hey look what I made Value objects implementation,self.java +30,1402249787,10,Looking for tutorials exercises to practice more advanced Java topics,self.java +4,1402218043,6,Version Control Best Practices from Rainforest,java.dzone.com +2,1402204578,6,Concept associated with web service technology,simplecodestuffs.com +10,1402195031,7,JenkinsCI User Conference 6 18 in Boston,jenkins-ci.org +3,1402190559,14,How can I use junit to unit test java code from the command line,self.java +0,1402187387,10,Any recommendations for a good ultra portable for Java programming,self.java +0,1402176640,13,Why does gradle run only seem to work from the Windows command line,self.java +24,1402176150,5,Safeguarding Against Java Remote Execution,blog.ktbyte.com +0,1402171232,10,World Life Without JAVA Please make it a real film,youtube.com +0,1402167156,3,Hibernate with Spring,softwarecave.org +6,1402164455,7,Help with comparing large amounts of Strings,self.java +0,1402131082,11,Can anyone help feeding a constructor from file into an array,self.java +12,1402124225,12,How to store security permissions roles and role permissions in source code,self.java +1,1402117114,6,Help with building upon Java fundamentals,self.java +17,1402105579,8,Choosing a project to motivate my learning process,self.java +25,1402100837,11,What s the quickest way to build a Java web app,self.java +0,1402092291,6,Can You Make Bots in Java,self.java +1,1402087368,8,Concept of Servlets Vs Concept of Struts 2,simplecodestuffs.com +3,1402078027,6,What is Web Services An Introduction,simplecodestuffs.com +23,1402069731,10,Hazelcast Redis equivalent in pure Java embeddable Apache 2 license,hazelcast.com +1,1402061391,8,Out of memory Kill process or sacrifice child,plumbr.eu +21,1402056239,10,Java 8 Friday JavaScript goes SQL with Nashorn and jOOQ,blog.jooq.org +6,1402053946,9,Spring Question about channels and gateways in Spring Integration,self.java +27,1402045686,7,Eclipse Key Shortcuts for Greater Developers Productivity,vitalflux.com +5,1402043352,12,AJAX based CRUD Operations in Java Web Applications using jTable jQuery plugin,simplecodestuffs.com +42,1402011500,12,New Tutorial Series How To Develop Web Applications Using Spring and AngularJS,youtube.com +19,1402010894,12,Why Java is used more than Python in big and medium corporations,self.java +8,1402002068,5,Java Database File Strategy Pattern,self.java +7,1402001766,13,xcmis An extensible implementation of OASIS s Content Management Interoperability Services CMIS specification,code.google.com +19,1402000512,9,Autocomplete in java web application using Jquery and JSON,simplecodestuffs.com +3,1401986233,5,Can anyone help with raycasting,self.java +0,1401981543,26,I want to improve but don t know how How can I make this code better or faster AFAIK it works perfectly Please help me improve,pastebin.com +9,1401977813,7,Android Resources concept for plain Java applications,self.java +4,1401944197,10,Advice for implementing solr for a Spring based ecommerce application,self.java +7,1401940053,12,Does anyone know how to get an early access version of 7u65,self.java +15,1401937187,14,How much of an asset is the Oracle Certified Java Programmer on a resume,self.java +0,1401930030,18,Trying to figure out a program to take multiple longitude and latitude points and convert them to azimuth,self.java +22,1401927724,1,JavaMoney,javamoney.github.io +11,1401927229,8,How can I create a shortcut using Java,self.java +1,1401912634,13,Can I do complex fraction Echelon row reduction using Java Apache Math Library,self.java +0,1401910999,8,Massachusetts Undergrad Summer classes for object oriented design,self.java +0,1401893068,4,OmniFaces 1 8 released,balusc.blogspot.sg +51,1401883706,5,Twitter Scale Computing with OpenJDK,youtube.com +23,1401881508,5,Considering Learning Java Some Questions,self.java +20,1401880687,10,Which method of using Hibernate is the best mostly used,self.java +2,1401843841,6,Having difficulty with writing an algorithm,self.java +2,1401841513,5,Fun project idea for class,self.java +1,1401829809,11,Xcelite easily serialize and deserialize Java beans to from Excel spreadsheets,github.com +1,1401829322,5,javassist 3 18 2 GA,github.com +2,1401829185,6,HtmlUnit 2 15 Jun 2 2014,htmlunit.sourceforge.net +0,1401823195,10,Copying a JavaScript Button and send it as a link,self.java +0,1401820402,3,Introducing Spring Cloud,spring.io +1,1401818768,7,Java Training Classes Real Time Online Training,hotfrog.com +17,1401804030,19,Is your Eclipse compiler slow Eclipse Bug 434326 Slow compilation of test cases with a significant amount of generics,bugs.eclipse.org +6,1401803542,10,Building HATEOAS API with Spring MVC JAX RS or VRaptor,zeroturnaround.com +2,1401801278,8,Choosing a fast unique identifier UUID for Lucene,blog.mikemccandless.com +3,1401798560,5,gonsole weeks git init gonsole,codeaffine.com +0,1401778473,10,8 Great Java 8 Features No One s Talking about,infoq.com +26,1401771112,10,Eventhub An open source event analysis platform built in java,github.com +1,1401770523,9,Why is my JDK download always stuck on 99,self.java +0,1401747532,6,Headaches and questions from a Sysadmin,self.java +12,1401738971,11,New release of OmniFaces sees light of day OmniFaces 1 8,balusc.blogspot.com +30,1401723139,9,JDK 8043488 Improved variance for generic classes and interfaces,bugs.openjdk.java.net +13,1401721837,8,Unit Testing how do you guys stay organized,self.java +21,1401719772,4,OmniFaces 1 8 released,showcase.omnifaces.org +28,1401718412,3,Proper password storage,self.java +5,1401713654,20,This guy argues that having too many classes in Java is a bad thing and I couldn t agree more,javacodegeeks.com +7,1401702188,7,Java Maven Struts2 with MS SQL Headache,self.java +18,1401698067,8,Integrate Gulp And Grunt Into Your Maven Build,supposed.nl +9,1401691823,4,Keycloak Beta 1 Released,keycloak.jboss.org +0,1401686858,7,IE Ajax bug amp Spring MVC solution,dominik-mostek.cz +29,1401657855,13,Any thoughts resources general tips for getting the most out of IntelliJ IDEA,self.java +2,1401642406,16,How to have an android project and a dynamic web project running on the same spot,self.java +5,1401636725,7,Scala on Android and stuff lessons learned,blog.frankel.ch +19,1401629635,6,WildFly 8 1 0 Final released,community.jboss.org +43,1401607881,14,Do most java programmers use Eclipse other IDE rather than a simple text editor,self.java +0,1401562431,7,Spring MVC and interfaces of Service class,self.java +1,1401560513,4,How to compile OpenOMR,self.java +0,1401555476,5,How to Compile Audiveris code,self.java +0,1401550428,12,Using the variable value and not the variable itself on an object,self.java +1,1401549957,3,Java in XCode,self.java +0,1401549765,10,How to run your first Java Program in NetBeans IDE,youtube.com +2,1401502906,8,Is there a better way to do this,self.java +35,1401486547,20,Why are the official Hibernate 4 docs so grossly outdated and inaccurate And where can I find a better alternative,self.java +3,1401481633,6,Performance Tuning of Spring Hibernate Applications,blog.jhades.org +7,1401469445,8,Java 8 Friday Most Internal DSLs are Outdated,blog.jooq.org +0,1401468036,5,This applet is so 2001,self.java +6,1401466357,10,After a Decade I m Coding for the VM again,medium.com +18,1401464765,29,I d like to build a modern web app using Java Based on my experience what do you think is a next good step to learn to do that,self.java +4,1401458365,7,Adding SSE support in Java EE 8,blogs.oracle.com +3,1401455872,7,Check out my first ever Java project,pilif0.4fan.cz +5,1401452719,5,Simple and fast logging framework,self.java +0,1401450543,7,Strange Rendering behaviour bug with JavaFX ListView,self.java +77,1401448197,10,8 Great Java 8 Features No One s Talking about,infoq.com +0,1401388255,18,x post from r programming Are you Java or Scala Developer Use Takipi real time code analysis technology,techmafia.net +1,1401376647,12,Policy question can more than one URL be added to a codebase,self.java +6,1401372726,6,EclipseLink JPA provider for Liberty profile,developer.ibm.com +7,1401369958,6,Translating Right tool for the job,bill.burkecentral.com +19,1401369435,6,Websockets in JEE 7 with wildfly,jlunaquiroga.blogspot.sg +2,1401364610,6,Most popular application servers in 2014,plumbr.eu +3,1401361063,5,ASM 5 0 3 released,mail.ow2.org +2,1401319981,23,Common Simulator is a library to create any simulator which uses field based message such as ISO 8583 message or properties like message,github.com +2,1401319479,4,When to use SharedHashMap,github.com +11,1401318985,11,Apache Tomcat 7 0 54 amp 6 0 41 released CVEs,mail-archives.apache.org +7,1401318391,4,spinoza Lenses for Java,github.com +16,1401318329,18,Rekord Type safe records in Java to be used instead of POJOs Java beans maps or value objects,github.com +7,1401310656,12,Need suggestions on some kind of documentation gathering system for this situation,self.java +0,1401304987,14,Generate a sequence of numbers 1 1 2 2 3 3 1 1 etc,self.java +13,1401300316,8,Hibernate Debugging Finding the Origin of a Query,blog.jhades.org +12,1401297487,16,Are there any open source efforts to create a Java wrapper library for the Steam SDK,self.java +5,1401296118,5,Reccomend Good Tutorials for EJB,self.java +4,1401293051,5,Question about thread safe lists,self.java +19,1401288043,11,The data knowledge stack Concurrency is not for the faint hearted,vladmihalcea.com +36,1401281199,8,Get Started With Lambda Expressions in Java 8,blog.stackhunter.com +14,1401278618,8,CDI 2 0 Survey on proposed new features,cdi-spec.org +22,1401262287,10,Would it be useful to create interfaces for immutable collections,self.java +1,1401256066,15,Why is the correct answer A and B Shouldn t ob have access to finalize,imgur.com +5,1401236001,5,Graphing and Statistical Analysis APIs,self.java +2,1401219571,4,Open Source Java Projects,self.java +23,1401217707,9,Typetools Erasure defeated almost Tools for resolving generic types,github.com +0,1401216107,5,Need help with a program,self.java +15,1401199708,31,As somebody who never programmed in Java and wants to learn from scratch what s a good resource to do so particularly taking advantages of the new features of Java 8,self.java +12,1401197620,7,PrimeFaces 5 0 New JSF Component Showcase,primefaces.org +22,1401197275,8,Why use SerialVersionUID inside Serializable class in Java,javarevisited.blogspot.sg +0,1401181391,14,CodenameOne 1 Java code to run natively on iOS Android Win RIM and Desktop,codenameone.com +0,1401157313,3,Object array construction,self.java +3,1401152623,2,Seeking mentor,self.java +0,1401148212,1,JNA,self.java +4,1401128587,5,My summary of JEEConf 2014,blog.frankel.ch +0,1401126072,5,Recommendation on where to start,self.java +6,1401118647,15,How to move columns from one CSV file into another CSV file using Data Pipeline,northconcepts.com +26,1401116953,4,Java Multiplayer libgdx Tutorial,appwarp.shephertz.com +1,1401113656,6,Most efficient way to learn Java,self.java +2,1401070881,9,Instantiating an object randomly between multiple triple nested classes,self.java +32,1401065265,11,RoboVM Write IOS app natively in Java Apache License v2 0,robovm.com +94,1401062046,6,Why is choice B not valid,imgur.com +6,1401053464,6,Netty GZip compression problem and question,self.java +0,1401030341,5,What is a SEC page,self.java +18,1400995743,7,Spring Hibernate improved SQL logging with log4jdbc,blog.jhades.org +26,1400891255,7,RoaringBitmap A better compressed bitset in Java,github.com +36,1400887888,6,Apache Commons Math 3 3 Released,mail-archives.apache.org +2,1400887358,5,Tupl The Unnamed Persistence Library,github.com +17,1400881569,12,Techonology Radar advises against the use of JSF Primefaces team reply inside,self.java +14,1400873821,5,GlassFish 4 0 1 Update,blogs.oracle.com +17,1400849943,9,Spring Web Services 2 2 0 introduces annotation support,spring.io +9,1400831502,5,Good source for Physics applets,self.java +10,1400824552,5,Spring Security blocking PUT POST,self.java +1,1400816788,5,Soft Light Mode for images,self.java +7,1400805941,6,iOS for Java Developers full talk,techtalkshub.com +6,1400803926,9,Java Coding Contest Program a Bot and Win Prizes,learneroo.com +102,1400795519,8,Java is now the leader on Stack Overflow,stackoverflow.com +6,1400792155,7,My new super fast distributed messaging project,github.com +11,1400787190,8,Pitfalls of the Hibernate Second Level Query Caches,blog.jhades.org +28,1400785472,15,Why is Eclipse generating argument names as arg0 arg1 arg2 in methods when implementing interfaces,self.java +2,1400784339,4,worries worries worries worries,self.java +5,1400775937,6,Hibernate Tutorial using Maven and MySQL,javahash.com +8,1400774261,8,JRebel is like HotSwap made by Walter White,zeroturnaround.com +1,1400774231,16,1 hour infoq presentation Using Invoke Dynamic to Teach the JVM a New Language Perl 6,infoq.com +4,1400774134,5,Clojure Kata 3 Roman Numerals,elegantcode.com +0,1400773586,4,Whats wrong with this,self.java +0,1400764946,10,Question How to display an image depending on certain data,self.java +2,1400764075,4,Need help unencrypting password,self.java +1,1400763519,5,Which runtime exception to throw,self.java +1,1400759541,9,69 Spring Interview Questions and Answers The ULTIMATE List,javacodegeeks.com +27,1400758339,8,Employers want Java skills more than anything else,infoworld.com +151,1400750221,9,115 Java Interview Questions and Answers The ULTIMATE List,javacodegeeks.com +6,1400746817,17,are there any AI expert systems or similar for teaching people to code in Java or SQL,self.java +5,1400731678,8,Help with GUI project dice game called Pigs,self.java +0,1400725616,26,I m taking a test that will determine if I can go to AP Computer Science next year Does anyone know a good way to practice,self.java +0,1400698955,9,Anyone looking for a job in the IT industry,self.java +3,1400684551,12,Could anyone recommend a best practice for connecting to a REST service,self.java +2,1400684313,8,Java C Programmers need help with your resume,self.java +4,1400683050,17,Looking for a UI Component preferably JavaFX don t know its name but here s a picture,self.java +11,1400677566,7,Spring Data Release Train Dijkstra Goes GA,spring.io +21,1400675495,7,Java Tools and Technologies Landscape for 2014,zeroturnaround.com +8,1400673404,6,How to end reading from console,self.java +3,1400651540,10,Interview with Tim Bray co inventor of XML at GOTOchgo,ugtastic.com +11,1400651494,5,Repeating annotations in Java 8,softwarecave.org +2,1400642071,15,Java beginner here Just trying out a simple program Is this right very simple program,self.java +27,1400641499,6,Initial Java EE 8 JSR Draft,java.net +12,1400624467,9,Xsylum XML parsing and DOM traversal for the sane,github.com +14,1400623832,7,Erlang OTP style object supervision for Java,github.com +5,1400618004,29,I use Struts 2 and Tiles in Eclipse and I d like to know if there is a plugin way to expose the borders between tiles on my project,self.java +6,1400614345,9,Anyone have personal experience with the Quasar Java library,self.java +0,1400606685,8,Configuring Spring Security CAS Providers with Java Config,self.java +2,1400602847,6,Where do I go from here,self.java +0,1400599152,6,Mid Level Java Developer Opportunity MN,self.java +10,1400590549,4,Async Servlets in Java,jayway.com +0,1400572260,7,Hiberanate 4 Tutorial using Maven and MySQL,javahash.com +3,1400561985,5,Understanding Polymorphism in Java Programming,tutorialspoint.com +1,1400549438,4,Help with applet code,self.java +42,1400527554,2,Better Java,blog.seancassidy.me +10,1400518816,4,Any alternatives to JOOQ,self.java +5,1400515638,13,RemoteBridge released access and modify Java objects in third party applications and applets,nektra.com +1,1400513726,9,Why Software Doesn t Follow Moore s Law Forbes,forbes.com +3,1400512142,7,Groovy language features case study with Broadleaf,broadleafcommerce.com +14,1400512096,10,When and why to use StringBuilder over operator and StringBuffer,java-fries.com +4,1400510079,25,EJB JAX WS Is it better to put business logic into a separate session bean and have JAX WS implementation class calling the session bean,self.java +15,1400507347,14,JBoss EAP 6 3 Beta Released WebSockets Domain recovery New console homepage Improved Security,blog.arungupta.me +0,1400494488,12,How do you map a Map lt String MyObject gt using Hibernate,self.java +6,1400490122,4,Java class name prefixes,self.java +0,1400467149,3,GeneralPath Java Example,ecomputernotes.com +2,1400460600,4,Tower Defense ScratchForFun help,self.java +2,1400458434,13,Is there a scripting interface for Java similar to Script CS or Cshell,self.java +8,1400450020,8,Java 8 Is An Acceptable Functional Programming Language,codepoetics.com +2,1400432663,4,Java Tower Defense Problems,self.java +44,1400431667,26,I m an experienced software engineer tho not in Java Which are good open source Java projects to get involved in for building my Java experience,self.java +0,1400423240,7,Dead simple API design for Dice Rolling,blog.frankel.ch +18,1400421372,13,Programming Language Popularity Chart Java ranks in as the 2 most popular language,langpop.corger.nl +0,1400407011,3,Incompatible types issue,self.java +0,1400378511,8,Best Video Tutorials To Learn Android Java Development,equallysimple.com +8,1400359165,12,JFRAME Window Creating in Eclipse and setup of Eclipse NEW TUTORIAL SERIES,youtube.com +0,1400350617,5,Help with making a diamond,self.java +3,1400347474,7,Java next Choosing your next JVM language,ibm.com +0,1400329298,4,Java APIs for Developers,geektub.com +43,1400328989,13,How To Design A Good API and Why it Matters Joshua Bloch 2007,youtube.com +7,1400328104,7,Avoid over provisioning fine tuning the heap,plumbr.eu +10,1400317655,5,Defining and executing text commands,self.java +7,1400308250,4,OpenJPA 2 3 0,mail-archives.apache.org +16,1400307913,14,Java Type Erasure not a Total Loss use Java Classmate for resolving generic signatures,cowtowncoder.com +5,1400307873,21,StoreMate building block that implements a simple single node store system to use as a building block for distributed storage systems,github.com +0,1400296427,8,What are oracle gonna do client side java,self.java +0,1400287460,4,Help Comment Some Code,self.java +9,1400275077,6,Open Session In View Design Tradeoffs,blog.jhades.org +14,1400263931,11,Sneak Preview The 14 Leading Java Tools amp Technologies for 2014,zeroturnaround.com +2,1400254084,9,Excelsior JET and libGDX Help fund Save Life Foundation,badlogicgames.com +0,1400252445,11,Sneak Preview The 14 Leading Java Tools amp Technologies for 2014,dzone.com +8,1400249372,10,JRE7 Any alternatives to jar signing for intranet enterprise systems,self.java +12,1400237387,11,Writing Java Socket HTTP Server Chrome thinks the request is empty,self.java +4,1400227411,11,Issues with Inverted Comma while parsing csv x post r javahelp,reddit.com +28,1400227068,7,Java performance tuning guide high performance Java,java-performance.com +5,1400216781,6,Dynamic Tuple Performance On the JVM,boundary.com +0,1400206060,5,Beginner Problem DrawingPanel in Java,self.java +67,1400172881,10,An Opinionated Guide to Modern Java Part 3 Web Development,blog.paralleluniverse.co +2,1400170110,6,JLabel text won t align properly,self.java +4,1400169899,10,Minnesota becomes first to sign smartphone kill switch into law,androidcommunity.com +4,1400169774,7,Is this possible to do with Java,self.java +18,1400168947,9,Interview with Aleksey Shipilev Oracle s Java Performance Geek,jclarity.com +0,1400168423,7,How to become an expert in Java,self.java +4,1400167735,6,Conclusions and where next for Java,manning.com +7,1400167309,8,Java Configuration A Proposal for Java EE Configuration,javaeeconfig.blogspot.com +5,1400159580,6,An open source JVM Sampling Profiler,insightfullogic.com +7,1400138735,7,Enum vs Constans java file in JAVA,self.java +1,1400105714,4,WindowBuilder for Java GUI,self.java +5,1400099441,9,Getting double values through a String for Rectangle constructor,self.java +72,1400092855,18,TIL enums can implement interfaces and each enum value can be an anonymous class x post r javatil,reddit.com +11,1400083886,21,Brian Goetz earmarka arrays and Value Types as burning issues to solve at conference keynote no mention of the modularity thing,jaxenter.com +0,1400076587,13,Find a number in the array having least difference with the given number,java-fries.com +0,1400075353,21,New Java 8 Optional sounds an awful lot like Guava s Optional I assume we can expect a judgement against Oracle,self.java +0,1400074258,7,Java 8 Optional What s the Point,huguesjohnson.com +32,1400062973,8,How to Use Java 8 s Default Methods,blog.stackhunter.com +0,1400018266,4,TextArea in java applet,self.java +1,1400015420,3,File Request Mac,self.java +2,1400010243,9,is XX UseCompressedOops enabled by default on 64bit JDK8,self.java +2,1399999689,7,Slab guaranteed heap alignment on the JVM,insightfullogic.com +54,1399997859,11,10 JDK 7 Features to Revisit Before You Welcome Java 8,javarevisited.blogspot.ca +4,1399997467,10,Load itextpdf OmniFaces and PrimeFaces as JBoss AS Wildfly Modules,hfluz-jr.blogspot.com +0,1399995315,7,Cyclic Inheritance is not allowed in Java,java-fries.com +8,1399990100,11,Too Fast Too Megamorphic what influences method call performance in Java,insightfullogic.com +88,1399987280,12,Why Oracle s Copyright Victory Over Google Is Bad News for Everyone,wired.com +9,1399986776,12,Java Explorer Code a Robot to Defeat Enemies and Reach the Goal,learneroo.com +5,1399980979,10,Liberty beta starting to add support for Java EE 7,ibmdw.net +5,1399978920,7,Why should Java developers adopt Java 8,zishanbilal.com +0,1399977097,6,Java 8 Features The ULTIMATE Guide,javacodegeeks.com +0,1399976279,3,Comparable and Comparator,kb4dev.com +2,1399959401,8,Proxy Servlet to Forward Requests to remote Server,blog.sodhanalibrary.com +0,1399958972,5,An idea for a program,self.java +1,1399957277,6,Modern imagining of an IRC api,self.java +28,1399950043,7,Java 8 Optional How to Use it,java.dzone.com +15,1399935996,8,Best place to learn about Spring Struts Hibernate,self.java +5,1399913310,7,HTTP responses with Jersey JAX RS noob,self.java +3,1399907884,5,A question about card layout,self.java +0,1399903119,8,Keeping Your Privates Private Java Access Modifiers Unleashed,codealien.wordpress.com +7,1399898613,19,Has anybody setup a Maven Nexus server at home to cache modules in your LAN Does it worth it,self.java +0,1399896115,12,Testing a secured Spring Data Rest service with Java 8 and MockMvc,blog.techdev.de +0,1399892429,6,Whats the difference in these two,self.java +2,1399882453,10,Is it a trap in JSON Processing API JSR 353,self.java +12,1399875681,4,Question about hashmap behaviour,self.java +1,1399874153,7,Big Modular Java with Guice old talk,techtalkshub.com +0,1399858921,3,Help one Homework,self.java +0,1399854796,12,Need help with creating one small java function Comp apps final tomorrow,self.java +9,1399839887,6,Where should I put SQL statements,self.java +3,1399829453,5,Ask Java Java XBee Library,self.java +0,1399828465,6,Looking for helpful sites learning Java,self.java +58,1399828048,10,Spark java re written to support Java 8 and Lambdas,sparkjava.com +15,1399822171,4,Assertion libraries for Java,self.java +14,1399820093,7,alpha OSv OS Virtualization for the JVM,osv.io +0,1399816999,16,Find max and min element of an unsorted array of integers with minimum number of comparisions,java-fries.com +0,1399798161,28,Given three strings str1 str2 and str3 find the smallest substring in str1 which contains all the characters in str2 in any order and not those in str3,java-fries.com +0,1399768860,8,Is there a way to declarate variables dynamically,self.java +0,1399760438,4,Entry point in maven,self.java +36,1399730203,2,Functional Thinking,techtalkshub.com +9,1399727295,2,SOAP Question,self.java +2,1399698566,14,Would anybody here by chance have a copy of jsdt src 2 2 zip,self.java +0,1399695992,7,Help for array inventories for rpg game,self.java +0,1399679664,8,Can t install 64 bit java onto computer,self.java +6,1399653745,7,Java 8 Friday Language Design is Subtle,blog.jooq.org +92,1399653417,14,Oracle wins Android Java copyright appeal API code copyrightable new trial on fair use,fosspatents.com +1,1399648380,9,Is it worth me doing a course in Java,self.java +0,1399642138,5,J Go Mother s Day,livememe.com +38,1399636015,3,JavaZone 2014 movies,2014.javazone.no +13,1399613994,9,Does your company send you for courses and training,self.java +0,1399610911,4,Help with learning java,self.java +0,1399604213,8,Interface in Java 8 Got Fancier Or Not,vitalflux.com +15,1399599580,16,What s the simplest most concise way to load an XML file from a remote server,self.java +7,1399584593,10,Working on a personal project and looking for peer input,self.java +1,1399581438,10,Facebook malware jar file but what does it actually do,self.java +2,1399570992,5,JavaFX on within Swing SIGSEGV,self.java +0,1399570609,3,Assertions in Java,softwarecave.org +25,1399569047,15,An Opinionated Guide to Modern Java Part 2 Deployment Monitoring amp Management Profiling and Benchmarking,blog.paralleluniverse.co +17,1399560115,36,I couldn t find a Zenburn color theme for the IntelliJ IDEA 13 that looked like the Emacs version so I made this one In my opinion its readability is much better than the Darcula theme,github.com +4,1399554606,17,JavaFX hangs at launch Is there some trick to getting JavaFX to work in Eclipse under OSX,self.java +30,1399548529,6,Most popular Java environments in 2014,plumbr.eu +54,1399539825,11,Can I do something with lambdas I couldn t do before,self.java +17,1399528062,5,Java Lambda Expressions by Examples,zishanbilal.com +10,1399528055,10,Ant 1 9 4 released with Java 1 9 support,ant.apache.org +0,1399526773,4,Confused over Java assignment,self.java +13,1399521289,22,Just finished a Semantic Versioning library for Java I tried to keep it short and practical let me know what you think,github.com +0,1399506911,14,I need a convenient way to run small demos for a library I write,self.java +4,1399501271,6,WebSocket in JBoss EAP 6 3,blog.arungupta.me +7,1399498499,11,How to simplify unit testing when a class uses multiple interfaces,drdobbs.com +11,1399490556,6,Java Related Certifications after SCJP OJP,self.java +4,1399480482,7,Where did the code conventions disappear to,self.java +9,1399480022,14,Starting a new Spring MVC project what directories files do you put in gitignore,self.java +4,1399477893,3,Pacman in Java,self.java +0,1399474557,17,I guess I m not buying this book if that s their idea of initializing a singleton,sourcemaking.com +7,1399473645,8,Continuous Integration with JBoss Fuse Jenkins and Nexus,giallone.blogspot.co.uk +14,1399469054,19,Excelsior JET AOT compiler pay what you can help charity enter draw for OS X version shipping in Sep,excelsior-usa.com +19,1399462344,6,What s New in PrimeFaces 5,beyondjava.net +22,1399461934,22,Just updated my ADT4J library Algebraic Data Types for Java I think it s in pretty good shape and is already useful,github.com +10,1399449668,7,Simplest Example of Dynamic Compilation in Java,pastebin.com +17,1399446265,4,Intermediate level Java Books,self.java +9,1399436074,2,Java Conferences,self.java +10,1399405044,8,drawImg extremely slow on Windows fast on Linux,self.java +0,1399401181,6,I need help fixing My Program,self.java +2,1399390119,12,Discussion Is it always better to use one actionlistener for multiple buttons,self.java +8,1399388340,12,Intro to Java 8 features and some Chicago blues w Freddy Guime,learnjavafx.typepad.com +6,1399387120,11,Does OCA SE 7 require you to take a special course,self.java +2,1399385524,5,JFrame not always on top,self.java +9,1399385190,8,Clojure Leiningen and Functional Programming for Java developers,zeroturnaround.com +8,1399373380,9,Ditch Container Managed Security To Create Portable Web Apps,blog.stackhunter.com +5,1399367788,8,Tutorial How To Change The Cursor in JavaFX,blog.idrsolutions.com +57,1399367209,6,About Unit Test By Martin Fowler,martinfowler.com +3,1399348518,8,Rendering Jframe to different resolutions without resizing it,self.java +5,1399344213,6,EJB 3 0 vs Spring Framework,self.java +0,1399343351,17,Why won t it recognize a class in my directory when I try to compile a file,self.java +17,1399332174,4,Clarifying Java Web Development,self.java +5,1399325907,7,Help with creating a Netflix like interface,self.java +0,1399321592,12,My if else conditionals are not working What am I doing wrong,self.java +0,1399319325,4,Need help regarding JProgressBars,self.java +5,1399308490,7,Design suggestions for secure internal web services,self.java +5,1399306600,13,An authoritative answer why final default methods are not allowed in Java 8,stackoverflow.com +0,1399306584,7,Can Someone explain to me package mainGame,self.java +25,1399302913,5,Comparing Maven features in Gradle,broadleafcommerce.com +2,1399302705,5,Annotated Java Monthly April 2014,blog.jetbrains.com +0,1399282872,7,How do you import static in Eclipse,codeaffine.com +7,1399279624,7,How do you test equals and hashCode,codeaffine.com +56,1399276580,13,An authoritative answer why synchronized default methods are not allowed in Java 8,stackoverflow.com +11,1399275947,3,libgdx packr GitHub,github.com +6,1399262618,9,Taking Computer Science AP test on Tuesday any tips,self.java +4,1399253555,9,Accessing Java Applets from HTML pages with Java code,self.java +0,1399222013,4,Playing with Java constructors,blog.frankel.ch +10,1399214520,6,Recommendations for a Complete Java Handbook,self.java +4,1399203927,10,Java ME 8 Getting Started with Samples and Demo Code,terrencebarr.wordpress.com +4,1399186323,14,What is the reason why final is not allowed in Java 8 interface methods,stackoverflow.com +1,1399172849,4,Java game on ios,self.java +1,1399143767,6,Apache PDFBox 1 8 5 released,mail-archives.apache.org +2,1399143706,5,Optic Dynamic data management fw,github.com +30,1399143601,3,High Availability JDBC,ha-jdbc.github.io +2,1399140243,4,Pattern Matching in Java,benjiweber.co.uk +0,1399091308,3,Java Language Enhancements,zishanbilal.com +25,1399088145,11,OpenJDK 1 6 b30 causes severe memory leaks Fixed in b31,java.net +3,1399073321,4,Some questions about JavaFX,self.java +4,1399062939,5,Project to help learn java,self.java +5,1399060986,6,RestX the lightweight Java Rest framework,restx.io +1,1399047960,6,Tutorial Intro to Rich Internet Application,self.java +1,1399045454,3,Concurrency design question,self.java +2,1399041966,7,Lambda expression and method overloading ambiguity doubts,stackoverflow.com +3,1399038605,8,How to make GUI suitable for more languages,self.java +9,1399036306,4,Custom annotations in Java,softwarecave.org +34,1399032039,4,Java 8 Nashorn Tutorial,winterbe.com +74,1399020104,15,Value types for java an official proposal by John Rose Brian Goetz and Guy Steele,cr.openjdk.java.net +2,1399013529,17,XALANJ 2540 Very inefficient default behaviour for looking up DTMManager affects all JDKs when working with XML,issues.apache.org +0,1398992558,6,Java Dijkstra s algorithm NEED HELP,self.java +0,1398965899,6,Programador Java Senior Oferta de empleo,self.java +17,1398965772,9,JEP proposal Improved variance for generic classes and interfaces,mail.openjdk.java.net +2,1398962713,13,Difference between Connected vs Disconnected RowSet in Java JDBC 4 1 RowSetProvider RowSetFactory,javarevisited.blogspot.sg +91,1398962461,14,Not Your Father s Java An Opinionated Guide to Modern Java Development Part 1,blog.paralleluniverse.co +3,1398959353,5,Netty 4 0 19 Final,netty.io +11,1398959239,17,Undertow JBoss flexible performant web server providing both blocking and non blocking API s based on NIO,undertow.io +3,1398916101,8,RabbitMQ is the new king Spring AMQP OpenCV,techtalkshub.com +0,1398914643,7,Need help with my MP3 player applet,self.java +13,1398908691,6,java awt Shape s Insidious Insideness,adereth.github.io +11,1398906824,6,The cost of Java lambda composition,self.java +2,1398895888,6,Need Help With my JFrame Code,self.java +0,1398887494,6,Developing an industrial software with Java,self.java +0,1398885051,11,Java In A NutShell Online E Book Read It For Free,thehackademy.net +6,1398879624,11,Steps to Get Started with Spring MVC 4 amp Hibernate 4,vitalflux.com +8,1398872983,7,Is this an API flaw in DataOutputStream,self.java +0,1398871204,10,Remember Me Authentication With Spring Security on Google App Engine,kctang.github.io +5,1398869524,3,Animal guessing game,self.java +2,1398865880,11,How to switch to the Java ecosystem What technologies to learn,self.java +2,1398864047,4,Professional connection pool sizing,vladmihalcea.com +0,1398861910,4,Building GlassFish from Source,blog.c2b2.co.uk +6,1398847262,7,REST development with intelliJ missing WebServices plugin,self.java +19,1398834226,12,In case you need some motivation when you run into a bug,youtube.com +1,1398813499,14,Does anyone have any experience with javax sound midi and or its Sequence class,self.java +1,1398813061,3,Ganymed ssh 2,code.google.com +0,1398811089,6,Sorting a list of objects alphabetically,self.java +3,1398800312,15,Having trouble using SOAP services that rely on common objects Is there a work around,self.java +7,1398785185,4,Modern Java web stack,self.java +0,1398778350,4,JAVA PRINT 1 2,javaworld.com +5,1398778269,11,Java 8 Stream API Examples Filter Map Max Min Sum Average,java67.blogspot.sg +4,1398774447,4,IntelliJ IDEA UI Designer,self.java +58,1398773713,6,Java equals or on enum values,flowstopper.org +9,1398769695,6,Design Pattern By Example Decorator Pattern,zishanbilal.com +4,1398764451,4,Understanding how Finalizers work,plumbr.eu +0,1398756092,27,I want to learn how to use Java I am brand new to this field Can you recommend tutorials websites books to use to optimise my education,self.java +5,1398742577,6,So who is already using lambdas,self.java +6,1398732130,6,Do you cast often in Java,self.java +3,1398730504,3,Insertion Sort Help,self.java +6,1398701264,4,Annotation basics in Java,softwarecave.org +57,1398700260,5,What Makes IntelliJ IDEA Different,medium.com +7,1398692850,8,Putting Kotlin MongoDB Spring Boot and Heroku Together,medium.com +0,1398658577,4,Updating between two panels,self.java +21,1398657887,6,Java Code Style The Final Decision,codeaffine.com +13,1398646735,3,Worlds Of Elderon,self.java +1,1398632257,15,So I made a one method text based game of rock paper scissors lizard Spock,self.java +2,1398613968,11,Jaybird 2 2 5 is released with support for Java 8,jaybirdwiki.firebirdsql.org +158,1398603014,9,What subreddits should a software developer follow on reddit,self.java +5,1398602567,4,The Visitor design pattern,blog.frankel.ch +1,1398593856,5,I want to learn Java,self.java +1,1398587578,6,Java EE 7 at Bratislava JUG,youtube.com +0,1398558370,1,Prefix,self.java +7,1398555167,12,what is a good way book I could use to learn java,self.java +6,1398538151,11,TIOBE Is Unintentionally Misleading in Truth Interest in Java Is Surging,weblogs.java.net +3,1398533600,12,RHSA 2014 0414 01 Important java 1 6 0 sun security update,redhat.com +0,1398532600,18,Need help with my program trying to split data from a file and then do math to it,self.java +41,1398526603,11,TIOBE Is Unintentionally Misleading in Truth Interest in Java Is Surging,weblogs.java.net +6,1398526178,14,Struts 2 up to 2 3 16 1 Zero Day Exploit Mitigation security critical,mail-archives.apache.org +1,1398514343,7,Victims Embedded Vulnerability Detection command line tool,securityblog.redhat.com +4,1398513935,17,ClassIndex is a much quicker alternative to every run time annotation scanning library like Reflections or Scannotations,github.com +24,1398513882,6,High performance Java reflection with Asm,github.com +0,1398513302,20,Some Questions JAVA SE Useful only For Beginners of Java Programming to get to know with terminology and basic stuff,people.auc.ca +7,1398507972,5,Flexy Pool reactive connection pooling,vladmihalcea.com +4,1398473805,13,ELI5 How do you code a gui interface with Java without using Swing,self.java +4,1398473157,8,Optional Dependency for Method Parameter With Spring Configuration,kctang.github.io +1,1398462860,18,Is there a way around bug JDK 8004476 so XSLT extensions work over webstart prior to Java 8,self.java +0,1398454572,10,Hiring Jr Java Developer Technology Hedge Fund 120k 200K NYC,self.java +0,1398452422,6,Abstract Class versus Interface In Java,javahash.com +7,1398449767,12,Running Node js applications on the JVM with Nashorn and Java 8,blog.jonasbandi.net +12,1398435536,9,Interested in working on OpenJDK Red Hat is hiring,jobs.redhat.com +977,1398430944,6,I HATE YOU FOR THIS ORACLE,i.imgur.com +6,1398426627,4,Reducing equals hashCode boilerplate,benjiweber.co.uk +1,1398424610,9,How to register MouseListener on divider of SplitPane JavaFX,self.java +5,1398417700,11,Simple ToolTipManager hack that prevents ToolTips from getting into the way,self.java +0,1398416490,8,How to create Spring web application video tutorial,javavids.com +1,1398400478,18,Help a newbie with a GUI that prints lines of a sonnet two buttons that switch line sonnet,self.java +7,1398389602,16,Is there a reason why in OSGi apps some people declare Logger fields as instance variables,self.java +1,1398378245,6,A Simple way to extend SWTBot,codeaffine.com +11,1398374565,11,Netflix Roulette API An unofficial Netflix API with a Java wrapper,netflixroulette.net +52,1398372137,6,HashMap performance improvements in Java 8,javacodegeeks.com +2,1398358047,8,Challenges in bringing applications to a multitenant environment,waratek.com +14,1398352459,9,How can I learn about the Java Virtual Machine,self.java +4,1398349889,7,Java Tutorial Through Katas Tennis Game Easy,technologyconversations.com +38,1398343390,8,Anyone use automated browser testing such as Selenium,self.java +2,1398327675,5,An Automated OSGi Test Runner,codeaffine.com +9,1398324812,6,Speed up databases with Hazelcast webinar,hazelcast.com +0,1398301556,2,Best IDE,self.java +3,1398289918,8,Scala 2 11 just launched check it out,news.ycombinator.com +0,1398265997,8,Can t Download Java Development Kit from Guam,self.java +2,1398259876,11,How did you convince your managers to switch to IntelliJ IDEA,self.java +2,1398259304,9,Configure Your OSGi Services with Apache Felix File Install,codeaffine.com +0,1398249997,5,Working with ArrayList of ArrayList,self.java +11,1398247104,8,Developing Java web apps with a lightweight IDE,blog.extrema-sistemas.com +11,1398241857,3,Java Blog Aggregator,topjavablogs.com +5,1398239978,6,An Introduction to the JGit Sources,codeaffine.com +35,1398233319,6,Spring Boot 1 0 GA Released,spring.io +3,1398230553,11,How can you use a static variables in non static methods,self.java +0,1398229258,2,weird syntax,self.java +0,1398220016,2,Netbeans problem,self.java +1,1398213945,18,Attempting my first Java project Trying to develop good practices from the beginning I would appreciate any feedback,self.java +0,1398209694,3,Assistance with programming,self.java +2,1398207434,19,I m a mainframe developer planning to learn java and get certified What certification should I aim for SCJP,self.java +2,1398204715,11,Golo a dynamic language for the JVM with Java equivalent performance,golo-lang.org +10,1398204223,7,A JUnit Rule to Conditionally Ignore Tests,codeaffine.com +0,1398200095,8,How do you make a restart in java,self.java +1,1398190807,10,Messing with I O two quick questions about my program,self.java +2,1398186363,7,Notes On Concurrent Ring Buffer Queue Mechanics,psy-lob-saw.blogspot.com +0,1398181646,7,Accessing HTTP Session Object in Spring MVC,javahash.com +69,1398177241,6,Java Evolution of Handling Null References,flowstopper.org +5,1398148223,11,Online Tool to Convert XML or JSON to Java Pojo Classes,pojo.sodhanalibrary.com +0,1398128928,11,Incompatible types when trying to access an element of an ArrayList,self.java +0,1398125607,8,My compiler refuses to import java util Arrays,self.java +1,1398105608,8,Creating ripemd 256 hash in Java Please help,self.java +17,1398094347,10,Intuitive Robust Date and Time Handling Finally Comes to Java,infoq.com +3,1398092235,6,Help with finding path to file,self.java +0,1398084843,9,Need help from subject matter experts multi JRE environment,self.java +28,1398078501,9,Flyway 3 0 Hello Android Database Migrations Made Easy,flywaydb.org +8,1398057156,7,Nashorn The New Rhino on the Block,ariya.ofilabs.com +8,1398046578,3,My Java ASCIIAnimator,self.java +37,1398020071,11,Nashorn The Combined Power of Java and JavaScript in JDK 8,infoq.com +19,1398001594,4,Introduction to Mutation Testing,blog.frankel.ch +85,1397970628,9,jMonkey Engine 3D Game Engine written entirely in Java,self.java +3,1397965573,12,Spring 4 Getting Started Guides using Gradle Spring Boot MVC and others,spring.io +22,1397950906,5,Spring Updated for Java 8,infoq.com +9,1397947595,2,Javacompiler Janino,self.java +0,1397903699,7,Need some help with a small converter,self.java +0,1397901799,16,Can someone help me compile a simple advertisement management system in Java I need it ASAP,self.java +4,1397895855,5,Best Development OS Personal Opinions,self.java +3,1397893640,9,Tutorial Read JSON with JAVA using Google gson library,blog.sodhanalibrary.com +38,1397837797,3,Embracing Java 8,sdtimes.com +5,1397827320,6,Learning JUnit Simple project testing sockets,self.java +7,1397826666,4,Facelets ui repeat tag,softwarecave.org +2,1397819350,5,Mon Trampoline avec Java 8,infoq.com +11,1397816930,8,How is this site for Java Certification preparation,self.java +56,1397804161,15,What have you learned from working with Java that you weren t told in school,self.java +16,1397787426,5,Web developer trying on Java,self.java +0,1397780511,9,Need some help copying this Map to my JList,self.java +18,1397770267,6,DevelopMentor Playing with Apache Karaf Console,developmentor.blogspot.com +0,1397768521,7,Looking to learn coding new to it,self.java +3,1397767989,4,Help with Environment Variables,self.java +3,1397767014,5,Summer break is coming up,self.java +15,1397752527,11,Collection of articles on java performance and concurrency from Oracle engineer,shipilev.net +23,1397746207,9,Using Exceptions to warn user vs if bool construct,self.java +27,1397742856,8,Contexts and Dependency Injection CDI 1 2 released,cdi-spec.org +5,1397731410,8,Tutorial How to Setup Key Combinations in JavaFX,blog.idrsolutions.com +6,1397725909,7,How to manage Git Submodules with JGit,codeaffine.com +11,1397717542,9,Writing Java 8 Nashorn Command Line Scripts with Nake,winterbe.com +5,1397704673,3,Java Career Help,self.java +25,1397693919,7,Which Java class is the real one,java.metagno.me +0,1397692703,11,Making an executable Jar file do what a batch file does,self.java +37,1397681211,10,Getting your Java 8 App in the Mac App Store,speling.shemnon.com +0,1397637269,5,Helper method in Frontcontroller pattern,self.java +24,1397636366,6,Pretty Map Literals for Java 8,gist.github.com +4,1397635412,7,How does Machine Learning Links with Hadoop,self.java +1,1397614548,6,Using JavaFX Collections in Hibernate Entitys,self.java +0,1397603666,20,I have an error in my program one with an infinite loop and also how do I add another test,self.java +0,1397595933,8,How did you progress on your first year,self.java +8,1397591976,7,Oracle Critical Patch Update Advisory April 2014,oracle.com +1,1397591604,20,Show r java I made a java code movie at work out of boredom Resize the console to run it,imadp.com +2,1397591367,5,Help with undo redo design,self.java +3,1397584539,9,Show r java My Maven plugin for Ivy dependencies,github.com +48,1397577751,7,Updated Eclipse Foundation Announces Java 8 Support,eclipse.org +10,1397577438,4,Data tables in JSF,softwarecave.org +4,1397573847,3,Java Generics Tutorial,javahash.com +10,1397572897,4,Free MyEclipse Pro License,genuitec.com +9,1397566060,7,Java EE 7 resources by Arjan Tijms,javaee7.zeef.com +18,1397563336,14,How to EZ bake your own lambdas in Java 8 with ASM and JiteScript,zeroturnaround.com +10,1397562698,9,Java EE 7 style inbound resource adapters on TomEE,robertpanzer.github.io +9,1397529665,7,Heads up using Hibernate with Java 8,self.java +0,1397528215,5,Need help with class problem,self.java +1,1397523260,10,What s the best JSP based bug issue source tracker,self.java +1,1397514588,7,Just watch this for a good laugh,facebook.com +2,1397512119,4,Requs Requirements Specifications Automated,requs.org +1,1397511949,6,Myra Job Execution And Scheduling Framework,github.com +1,1397505608,3,Forwarding Interface pattern,benjiweber.co.uk +1,1397502690,7,Uploading a file to a server Multipartentity,self.java +0,1397500251,4,URGENT NetBeans jFrame stuck,self.java +342,1397499212,13,Okay IntelliJ we get it You don t want us to use Eclipse,i.imgur.com +2,1397497691,6,Joins in pure java database queries,benjiweber.co.uk +2,1397489877,9,What time of day are critical patch updates released,self.java +1,1397489329,5,Hibernate in Action PDF Book,vidcat.org +0,1397485364,11,Question Running multiple instances of a game in a single server,self.java +1,1397479790,5,Notifications to server using android,self.java +1,1397476677,8,How to index all links in a string,self.java +19,1397468541,7,Ganesha Sleek Open Source NoSQL Java DB,self.java +6,1397463966,5,Using jOOQ with Spring CRUD,petrikainulainen.net +9,1397451379,6,Clean Synchronization Using ReentrantLock and Lambdas,codeaffine.com +3,1397444046,7,My paper on Java and Information Assurance,yazadk.wordpress.com +1,1397439692,10,HELP REQUEST Jlayer Javazoom pause un pause while playing song,self.java +31,1397434655,15,People that have passed the Java Certification Exam can you kind of do an AMA,self.java +2,1397423325,17,Need some help with my program I m very close to finishing it but getting some errors,self.java +0,1397422058,28,Help debunking a Java Net ConnectException Connection refused connect problem Trying to create connection between local Java application and a remote MYSQL database hosted on fdb7 runhosting com,self.java +0,1397414961,11,Bullets are not showing up across network client screen in game,self.java +0,1397405177,5,Know the Best JAVA IDEs,pravp.com +10,1397397268,7,Alternative to loading a bunch of BufferedImages,self.java +0,1397362944,7,Starting the calendar grid for current month,self.java +0,1397358497,8,How to search an array for a string,self.java +24,1397357778,5,How To Catch A ClassNotFoundException,ninthavenue.com.au +1,1397356200,8,Trying to parse keyless json in Java object,self.java +0,1397352908,5,Methods for predicting runtime exceptions,self.java +2,1397329103,9,Data structure for managing abstract set of 2D nodes,self.java +2,1397328074,13,Want to shift from Spring JDBC to Dagger Hibernate JPA is this viable,self.java +4,1397323186,9,Is there an interface foo void bar in JDK8,self.java +0,1397319760,18,a nice waiting utility class that can be used in many projects or modified to suite your needs,self.java +0,1397314852,24,Java Interop Can a URI on a web page interact with a Java applet running on the same client but as a separate process,self.java +13,1397310068,4,Java 8 monadic futures,github.com +25,1397295725,7,Apache Commons Lang 3 3 2 released,mail-archives.apache.org +21,1397295589,7,H2 1 4 177 2014 04 12,h2database.com +6,1397294263,20,Question re performance difference of getting data via a JSON based Web service vs using an in process ORM DAL,self.java +0,1397277711,4,ConcurrentHashMap vs Collections synchronizedMap,pixelstech.net +4,1397273444,4,JPA Bean Validation Help,self.java +5,1397236491,4,Parameterized tests in JUnit,softwarecave.org +0,1397234965,12,Need to find days ago instead of since 2 1 2014 search,self.java +7,1397228189,11,Transform your data sets using fluent SQL and Java 8 Streams,blog.jooq.org +58,1397228134,9,3 Good Reasons to Avoid Arrays in Java Interfaces,eclipsesource.com +12,1397217612,8,Best resources for learning Java JDeveloper and SQL,news.ycombinator.com +9,1397205250,7,Videos for React Conference 2014 in London,youtube.com +9,1397201699,4,Java Memory Model Basics,java.dzone.com +10,1397199714,13,Does Anyone know of a good website for third party look and feels,self.java +16,1397199644,4,Fluent Java HTTP Client,yegor256.com +17,1397195029,6,Gradle build process is painfully slow,self.java +0,1397192944,18,How does a reciever know the length of a string transmitted over a stream using the UTF8 format,self.java +1,1397181183,9,Looking for resources and reference information on integrating EmberJS,self.java +19,1397167249,9,Storing application configuration options Database xml file json file,self.java +11,1397164730,9,Any Good Resources for Learning the Jasmin Assembly Language,self.java +18,1397162040,14,I built a micro Web framework in Java 8 using lambdas Want some feedback,self.java +4,1397160621,14,How could I get my small company to switch me from Eclipse to IDEA,self.java +0,1397153174,10,In what order should I learn coding starting with Java,self.java +1,1397153032,12,Still can t figure this out I m pulling my hair out,self.java +0,1397147314,7,How to Check Java Version Java Hash,javahash.com +0,1397142227,2,Project idea,self.java +0,1397141699,7,Passing objects to and from different classes,self.java +15,1397141505,8,A functional programming crash course for Java developers,sdtimes.com +44,1397140949,3,Spring by Example,springbyexample.org +12,1397137588,9,Will requiring Java 8 limit adoption of a project,self.java +5,1397135358,11,Conquering job hell and multiple app branches using Jenkins amp Mercurial,zeroturnaround.com +0,1397130539,2,Algorithm complexity,self.java +4,1397125470,12,Set up JNDI datasource of Spring application in the embedded Jetty container,esofthead.com +27,1397123829,7,How to use Akka with Java 8,typesafe.com +0,1397099108,4,New to Java here,self.java +0,1397095997,10,How to add a string to a pre loaded array,self.java +0,1397090115,23,I m learning java and am running into trouble is it me not understanding it or is the teacher bad at teaching it,self.java +0,1397087762,18,Help a java newbie with class work creating an array list to store characteristics of dogs and cats,self.java +0,1397081499,3,Fibonacci Through Recursion,self.java +2,1397070703,7,Hey guys some help with Net Beans,self.java +11,1397070246,9,Processing Data with Java SE 8 Streams Part 1,oracle.com +10,1397067340,6,How to reliably release heap memory,self.java +0,1397066739,13,Orchestrate Java Client 0 3 0 update asynchronous programming and easy to use,orchestrate.io +0,1397065547,18,What kind of salary could a mid level Java Developer in a rural market proficient with Maven expect,self.java +46,1397059294,7,Why is Java so addicted to XML,self.java +3,1397058792,7,Best Java Books for Intermediate Python Developer,self.java +0,1397024387,5,why doesn t this work,self.java +0,1397021303,3,Java Training Institute,self.java +6,1397015803,6,Confused on where to go next,self.java +18,1396987459,6,Jetty 9 1 4 v20140401 Released,dev.eclipse.org +18,1396986717,4,PyJVM JVM in Python,pyjvm.org +11,1396984295,11,Automated JUnit test generation and realtime feedback repost from r eclipse,reddit.com +0,1396976107,2,JOptionPane jokes,self.java +3,1396969370,9,What are some good tools for automatic code review,self.java +0,1396960245,6,Java s professional and personal implication,self.java +0,1396959515,10,will objects in array be remembered after application is closed,self.java +1,1396954233,8,JSF GWT or Exposing your backend through webservices,self.java +52,1396947935,9,Why did Java JRE vulnerabilities peak in 2012 2013,security.stackexchange.com +11,1396946297,9,How many Java developers are there in the world,plumbr.eu +1,1396940103,9,Get content from a textfield with a button Beginner,self.java +0,1396918814,10,Intermediate at Java i like being challenged in java programing,self.java +3,1396917534,9,New to Java having trouble understanding the binary search,self.java +31,1396912708,16,Java Basics A new series started by my good friend teaching the basics of java coding,youtube.com +4,1396903934,8,Very simple traffic light that might inspire beginners,self.java +5,1396901551,11,A Brief Introduction to the Concept amp Implementation of HashMaps HashTables,youtube.com +0,1396901109,13,HELP Is there a way to ignore the counter in a for loop,self.java +1,1396896938,6,Assigning server processes threads to cores,self.java +4,1396885931,7,Spring Security Hello World Example Java Hash,javahash.com +0,1396883885,4,Java installation gone awry,self.java +3,1396879660,2,Comment Ettiquite,self.java +93,1396862175,10,Using Artificial Intelligence to solve the 2048 Game JAVA code,blog.datumbox.com +1,1396843701,5,Efficient Code Coverage with Eclipse,codeaffine.com +21,1396829254,4,From Lambdas to Bytecode,medianetwork.oracle.com +0,1396824493,6,Java for beginner to become professional,youtube.com +3,1396821036,6,Problems importing custom class in gridworld,self.java +2,1396816585,6,Eclipse or Netbeans for SmartGWT GWT,self.java +41,1396812234,4,Java Multithreading Basics Tutorial,youtube.com +8,1396810137,7,Help assembling a specific JAVA COM wrapper,self.java +5,1396788191,11,The right usage of Java 8 lambdas with Vaadin event listeners,morevaadin.com +1,1396761652,7,LWJGL Swing no mouse events What do,self.java +0,1396757684,21,Programming Help In my first programming class and I don t understand a problem with my code writing classes and methods,self.java +0,1396757336,6,Starting a thread with a button,self.java +3,1396747106,5,Java Grade Calculator Your thoughts,pastebin.com +10,1396734184,6,Scalability for a java web app,self.java +1,1396731635,5,Ways to compress an image,self.java +5,1396726377,26,advice installing and learning Broadleaf to get better at JEE Spring Hibernate Can you recommend any other large open source projects to read and learn from,self.java +0,1396719915,4,Confused about this interface,self.java +30,1396717385,2,Understanding JavaFX,self.java +9,1396717090,9,Java 8 Friday The Dark Side of Java 8,blog.jooq.org +3,1396715738,8,Project amp Learning Outcomes Java N Queens Solver,youtube.com +0,1396715643,8,scs lib Secure Cookie Session implementation RFC 6896,github.com +0,1396683152,41,Hi there Here is a paid course free for sometime on the launching of LearnBobby Best place to learn and earn Course name Java for beginners http learnbobby com course java master course lite version Get it before it gets paid,learnbobby.com +40,1396678209,6,Interface Pollution in the JDK 8,blog.informatech.cr +13,1396676680,14,What are the consequences of the PermGen free Java 8 VM on OSGi applications,self.java +0,1396670975,6,How badly did I get owned,self.java +11,1396664510,5,Java 8 default implementation question,self.java +5,1396660237,12,P6Spy framework for applications that intercept and optionally modify sql database statements,p6spy.github.io +6,1396650194,7,What is Java doing for Serial Communications,self.java +3,1396624373,13,Integration Testing From The Trenches An Upcoming Book You ll Want To Read,java.dzone.com +27,1396595639,9,JMockit mocks even constructors and final or static methods,code.google.com +0,1396576036,11,Get rid of that 8080 on the end of Tomcat links,self.java +0,1396558809,3,Minecraft amp Java,self.java +9,1396558507,12,Beginner to Java and practicing arrays Let me know what you think,self.java +22,1396554902,10,GlassFish v4 0 1 Daily Build Supports Java 8 Lambda,adam-bien.com +0,1396553242,1,Loops,self.java +25,1396547226,12,Face it those code quality issues aren t going to solve themselves,zeroturnaround.com +1,1396540689,2,Phantom FontMetrics,self.java +0,1396537194,4,Stuck on java programming,self.java +3,1396531098,40,I am working on creating a ANIMAT environment using genetic algorithms in Java I have found an old applet that is exactly what i need but can anyone point me in the direction of a more up to date equivalent,self.java +12,1396525984,11,Java build infrastructure Ansible Vagrant Jenkins LiveRebel and Gradle in action,plumbr.eu +29,1396521806,8,Java SE 8 Beyond Lambdas The Big Picture,drdobbs.com +3,1396512071,5,Learn Java by doing exercises,learneroo.com +0,1396476530,4,Error message wont display,self.java +1,1396474781,9,META INF services generator Annotation driven services auto generation,metainf-services.kohsuke.org +2,1396474704,20,Jasig CAS 3 5 2 1 and 3 4 12 1 Security Releases SAML 2 0 Google Accounts Integration components,jasig.275507.n4.nabble.com +25,1396474613,6,Apache Tomcat 7 0 53 released,mail-archives.apache.org +2,1396474564,6,Netty 4 0 18 Final released,netty.io +25,1396452135,6,Eclipse Foundation Announces Java 8 Support,eclipse.org +3,1396443666,8,Java Tip Hibernate validation in a standalone implementation,javaworld.com +0,1396442289,9,How to Encode Special Characters in java net URI,blog.stackhunter.com +11,1396435616,9,Netbeans users What s your favourite plugins and why,self.java +1,1396431992,4,Multiplayer game and sockets,self.java +3,1396430406,10,XPages IBM s Java web and mobile application development platform,xpages.zeef.com +3,1396425211,5,How do return really work,self.java +0,1396421423,7,Need some help and javahelp is empty,self.java +14,1396406403,6,Implementing functional composition in Java 8,self.java +4,1396406079,3,Help With JPanel,self.java +4,1396397706,8,Sudoku Solver Tutorial Part 1 Java Programming playlist,youtube.com +1,1396393430,12,Javahelp is very inactive and I m stuck on the finishing touches,self.java +8,1396390006,6,Utility Scripting Language for Java Project,self.java +0,1396383862,3,JAva program problems,self.java +3,1396381805,4,Android handler for java,self.java +23,1396381761,8,Vaadin UI technology switching from Java to C,vaadin.com +9,1396377123,4,Java Magazine Lambda Expressions,oraclejavamagazine-digital.com +16,1396374937,5,What s your favorite blend,self.java +1,1396370172,3,Project Euler 19,self.java +16,1396363147,6,JVM Java 8 Windows XP Support,self.java +0,1396328170,9,Looking for help with a Java assignment dont upvote,self.java +2,1396311736,5,Tutorials for android java development,self.java +1,1396310247,15,Intro to the NetBeans IDE One of the best Java Integrated Development Environments in Existence,youtube.com +3,1396302542,8,Need Help Controlling USB Relay Board in Java,self.java +0,1396299479,1,java,self.java +0,1396299459,4,ZOMBIES Hola Soy German,self.java +0,1396294598,5,ArrayList not returning proper type,self.java +2,1396292751,6,SPAs and Enabling CORS in Spark,yobriefca.se +119,1396288163,17,Do you like programming enough that you would keep doing it after winning the lottery for 100M,self.java +3,1396239070,5,Slim Down SWT FormLayout Usage,codeaffine.com +6,1396234220,21,Looking for a learning resource The basic data structures their pros cons use cases and Big O times for various operations,self.java +24,1396227289,7,Google new project written in Java GWT,google.com +7,1396219930,5,Compiling Java Packages without IDE,self.java +3,1396214997,6,Java equivalent to Net DataRow object,self.java +0,1396210184,10,looking for an open source java program 150 200 lines,self.java +2,1396207578,4,Clarification On Interfaces Please,self.java +2,1396193641,4,My recap of JavaLand,blog.frankel.ch +4,1396191968,5,Learn Java Programming The Basics,keenjar.com +8,1396189051,9,JVM Performs worse if too much memory is allocated,self.java +3,1396150683,14,Dumb question is the Spring GUI library and the Spring Framework the same thing,self.java +12,1396135853,11,Perft Speed amp Debugging Tips Advanced Java Chess Engine Tutorial 21,youtube.com +0,1396134097,7,Java Programming using only the Command Prompt,youtube.com +30,1396122792,12,Catching up with 5 6 years of Java progress What s good,self.java +0,1396119549,7,How to prevent IntelliJ from minimizing methods,self.java +5,1396088165,10,Apache Tomcat 8 0 5 beta available Java EE 7,mail-archives.apache.org +9,1396080231,5,Getters and setters gone wrong,refactoringideas.com +0,1396075636,3,XALAN J CVEs,issues.apache.org +4,1396075477,4,Dynamic Code Evolution VM,ssw.jku.at +50,1396061632,9,Coding with Notch from Minecraft The Story of Mojang,youtube.com +0,1396053167,5,Beginner question Project for school,self.java +2,1396035838,9,What is the disadvantage of importing too many packages,self.java +1,1396033276,4,java fork and join,javaworld.com +3,1396031009,3,Composition over Inheritance,variadic.me +0,1396025672,9,JAVA 8 TUTORIAL THROUGH KATAS REVERSE POLISH NOTATION MEDIUM,technologyconversations.com +3,1396024118,4,FirebirdSQL and IntelliJ IDEA,chriskrycho.com +1,1396017982,7,Recommend a primer for the Eclipse SWT,self.java +0,1396016981,7,Looking for someone with experience with jBPM,self.java +2,1396016742,13,Going to national competition in programming JAVA what should I bring with me,self.java +5,1396012614,11,I am writing a new book Ember js for Java Developers,emberjsjava.codicious.com +96,1396002558,12,Tired of Null Pointer Exceptions Consider Using Java SE 8 s Optional,oracle.com +5,1395999070,14,Base64 in Java 8 It s Not Too Late To Join In The Fun,ykchee.blogspot.com +19,1395988636,16,Effective Java by Joshua Bloch 2nd Edition Item 1 explained Static factory methods vs traditional constructors,javacodegeeks.com +5,1395988309,5,Will Java 8 Kill Scala,ahmedsoliman.com +1,1395982428,10,Cannot figure out why this will not delete the file,self.java +11,1395964834,9,How to tweet with Java as simple as possible,self.java +10,1395963424,49,Total java noob here For a intro level java class I had to use BufferedWriter to make a text document with the multiples of 5 up until 1 000 However my code prints Chinese I really want to know why on earth it prints Chinese code and output inside,self.java +4,1395961361,9,Java implementation of an array of lists of strings,self.java +9,1395957906,6,Still not getting try catch blocks,self.java +0,1395955539,13,Can someone give me a bit of advice on an assignment Thank you,self.java +3,1395954555,6,Including a JAR file in classpath,self.java +1,1395940494,4,Custom bean validation constraints,softwarecave.org +7,1395935199,3,Board game spaces,self.java +3,1395931261,12,Upgrading Java 6 SE 1 6 to Java 8 SE 1 8,self.java +3,1395929640,6,Need some help with image processing,self.java +29,1395919327,8,Why amp When Use Java 8 Compact Profiles,vitalflux.com +7,1395910637,11,Synchronize resources from local drive to Amazon S3 by using Java,esofthead.com +2,1395906254,4,Adding values to JTable,self.java +7,1395902904,10,Need a kick in the right direction for some homework,self.java +0,1395888910,6,Is operator overloading useless Interactive example,whyjavasucks.com +0,1395886801,7,Help with setup db in JUnit tests,self.java +4,1395874628,2,Java certificates,self.java +12,1395866200,6,Apache Archiva 2 0 1 released,mail-archive.com +0,1395860195,6,Need Help Extracting Sounds from Javascript,self.java +34,1395857536,8,What Would You Have Done Software Engineer Position,self.java +0,1395857502,14,How to make method know that there is no way that she will end,self.java +3,1395855656,3,Prime Factorization Program,self.java +4,1395851961,11,Java Generating Executable Jar File From Project Containing Third Party Library,idlebrains.org +6,1395850796,7,Lambdas and Streams in Java 8 Libraries,drdobbs.com +3,1395849922,8,What are good libraries for working with photos,self.java +12,1395842431,5,Java 8 in Enterprise Projects,spring.io +3,1395842266,7,Application development back end solution with Java,technologyconversations.com +13,1395830486,4,Java 8 API Explorer,winterbe.com +0,1395825976,4,Leaking Memory in Java,blog.xebia.com +2,1395823321,6,need help with Programming by Doing,self.java +7,1395793555,5,Java and Memory Leaks question,self.java +5,1395791973,8,Creating a stack trace in Java Easiest methods,self.java +3,1395777964,20,I am trying to create a table using java derby EmbeddedDriver but i don t understand what these errors mean,self.java +4,1395777230,6,How to apply try catch blocks,self.java +0,1395775956,3,Event Driven Model,self.java +3,1395773746,4,Question about bad coding,self.java +19,1395766486,5,Eclipse Support for Java 8,eclipsesource.com +12,1395764882,7,RebelLabs Java Tools amp Technologies Survey 2014,rebellabs.typeform.com +0,1395764266,5,Processing an argument String Recursively,self.java +4,1395762434,10,Versioned Validated and Secured REST Services with Spring 4 0,captechconsulting.com +7,1395758859,8,Integrating Amazon S3 in your Application using java,blogs.shephertz.com +0,1395757430,6,How to open Appletviewer via console,self.java +13,1395755405,8,Measuring Fork Join performance improvements in Java 8,zeroturnaround.com +31,1395748739,7,Creative approach for killing your production env,plumbr.eu +28,1395748627,8,Best OCR optical character recognition Library for Java,self.java +2,1395743158,14,Can someone help troubleshoot why my command line program only works via Java 7,self.java +2,1395717374,16,I can t figure out why certain variables are returning 1 instead of their actual values,self.java +4,1395700100,6,How to program with Bitwise Operators,half-elvenprogramming.blogspot.com +2,1395695790,10,Generating random number depending on how many digits you want,self.java +9,1395692135,3,Stack Hunter Screenshots,self.java +18,1395686952,12,Long jumps considered inexpensive John Rose on the relative cost of Exceptions,blogs.oracle.com +7,1395683809,7,What is your go to Collection implementation,self.java +37,1395680495,8,Common exception misuses in Java and not only,softwarecave.org +0,1395679165,5,New enhancements for Java 8u1,self.java +3,1395674507,9,Java 7 one liner to read file into string,jdevelopment.nl +7,1395672816,7,How to use SWT with Java 8,eclipsesource.com +0,1395664734,10,Anyone know of a graphical page layout app in Java,self.java +32,1395647920,8,What is obsolete in Guava since Java 8,self.java +10,1395645792,4,Checked Exceptions and Streams,benjiweber.co.uk +4,1395637842,5,What are Mockito Extra Interfaces,codeaffine.com +8,1395617086,7,Java Bootcamps Classes in New York City,self.java +12,1395603470,16,Questions on getting a Java job in Europe for a year or two I m American,self.java +0,1395596510,8,Where to make your own code with Java,self.java +20,1395594800,5,jphp PHP Compiler for JVM,github.com +1,1395590048,10,Thinking about starting to learn java where do i start,self.java +6,1395551828,7,Java 8 UI Lambda based keyboard handlers,self.java +78,1395551536,6,How much faster is Java 8,optaplanner.org +53,1395546202,12,Complete list of all new language features and APIs in Java 8,techempower.com +1,1395523391,6,Measuring bandwidth and round trip delay,self.java +2,1395510765,6,Help using StringBuilder or Regex Matching,self.java +150,1395510294,8,In Java 8 we can finally join strings,mscharhag.com +32,1395492056,10,Java 8 Language Capabilities What s in it for you,parleys.com +25,1395489890,14,ASM 5 0 released full support for the new Java 8 class format features,forge.ow2.org +0,1395489653,8,crawler commons functionalities common to any web crawler,code.google.com +3,1395484944,6,Apache Commons Weaver 1 0 Released,mail-archives.apache.org +4,1395470960,6,Declaring public private or protected constructor,self.java +0,1395440492,13,How do I write the contents of a JTable to a text file,self.java +2,1395426198,10,How can I check two 2 dimensional Polygons on intersection,self.java +0,1395412131,8,Introduction to Java Programming Free Computers Video Lectures,learnerstv.com +32,1395404148,10,Java Developers Readiness to Get Started with Java 8 Release,vitalflux.com +8,1395396764,19,Andrew Dinn of Redhat is coming to my University does anyone have any questions they want me to ask,self.java +0,1395395905,6,Parts of code with multiple meaning,self.java +1,1395374887,4,Just out of curiosity,self.java +38,1395358209,5,NetBeans IDE 8 0 Released,netbeans.org +6,1395352116,7,Glassfish 4 with Eclipse and Java 8,self.java +6,1395350438,5,C style properties in Java,benjiweber.co.uk +7,1395348989,6,Resources for modernize my Java skills,self.java +5,1395346680,4,Gradle multiple project inconsistent,self.java +1,1395339170,7,Label the sides of a JButton grid,self.java +2,1395333739,10,JCache Data Caching for Java App Programming Hits the Channel,thevarguy.com +33,1395331206,8,10 Examples of Lambda Expressions of Java 8,javarevisited.blogspot.sg +87,1395322050,4,Too many if statements,stackoverflow.com +29,1395313524,3,Kotlin M7 Available,blog.jetbrains.com +2,1395310577,7,How to remove tab indicators in Netbeans,self.java +12,1395309946,10,So i want to learn JavaFX where do i begin,self.java +0,1395285650,9,Help Integrating Bitcoin Litecoin use into Java Source Code,self.java +0,1395278605,5,Problem URLClassLoader doesnt find class,self.java +2,1395271523,10,Migrating An Existing CodeBase to a newer version of Java,self.java +0,1395264598,4,Help Java and Android,self.java +37,1395242645,35,The authors of Algorithms Part I describe a complete programming model using Java This is an excerpt from Algorithms Part I 4th Edition which was published expressly to support the Coursera course Algorithms Part I,informit.com +3,1395242055,12,ELI5 what is a framework and how does it relate to Java,self.java +4,1395239777,7,Introductory Guide to Akka with code samples,toptal.com +0,1395235630,7,MongoDB and Scale Out No says MongoHQ,blog.couchbase.com +7,1395233003,6,From javaagent to JVMTI our experience,plumbr.eu +5,1395221045,8,Unsigned Integer Arithmetic API now in JDK 8,blogs.oracle.com +3,1395220792,9,Why did Java 7 take 5 years for release,self.java +13,1395217962,4,Java 8 and Android,self.java +16,1395213707,7,Under the hood changes in Java 8,self.java +0,1395211206,4,Oracle ADF Help site,self.java +0,1395202871,6,Functional FizzBuzz with Java 8 Streams,jattardi.wordpress.com +0,1395198622,4,Java 8 Release Fail,self.java +2,1395193926,3,Autoboxing into Optionals,self.java +0,1395181499,4,JDK 8 Release Notes,oracle.com +4,1395180456,4,The Optional Type API,techblog.bozho.net +0,1395172078,11,With the release of Java 8 can someone please ELI5 lambda,self.java +41,1395170523,5,IntelliJ IDEA 13 1 Released,blog.jetbrains.com +12,1395168717,6,Java SE 8 download is live,oracle.com +244,1395168576,5,Java 8 has been released,oracle.com +6,1395165286,9,OOD principles and the 5 elements of SOLID apps,zeroturnaround.com +2,1395163960,8,Validating HTML forms in Spring using Bean Validation,softwarecave.org +0,1395161835,5,Research on Java Enterprise Programming,self.java +0,1395160434,9,HIRING Front and back end dev in Southern California,spireon.com +2,1395160011,6,Tools Like Swagger to document JAVA,self.java +9,1395155313,16,HotSpot will use RTM Restricted Transaction Memory instructions to implement locking when running on Intel Haswell,mail.openjdk.java.net +9,1395154054,5,The Fundamentals of JVM Tuning,youtube.com +14,1395152036,8,OpenJDK Project Panama improving native interoperability in Java,blogs.oracle.com +0,1395149335,6,6 tips on re factoring code,thebriman.com +0,1395146611,8,Is math random truly random If so how,self.java +1,1395139527,10,BeanstalkdConnector a connector component for a Java EE app server,github.com +0,1395132743,8,Tutorial How to Create Stacked Menus in JavaFX,blog.idrsolutions.com +38,1395130406,6,When is Java 8 actually released,self.java +1,1395111184,6,advice on calling method using variable,self.java +2,1395098308,9,Attending a hackathon event soon could use some advice,self.java +1,1395098056,5,Video Audio editing in Java,self.java +1,1395088217,4,JSF Runtime exec doubt,self.java +28,1395082838,6,First class functions in Java 8,youtu.be +12,1395076812,13,Nerds test out new Shenandoah JVM Garbage collector on Role Playing Game Application,jclarity.com +3,1395076049,5,Framework for dealing with Actions,self.java +0,1395071641,5,Need help from you guys,self.java +5,1395069371,9,Trying to create artistic compositions based on an RNG,self.java +16,1395064756,11,IntelliJ IDEA 13 1 RC2 Ships Nearly Final Java 8 Support,blog.jetbrains.com +0,1395053912,7,Is there any good java assignments source,self.java +1,1395052440,8,Any good free online tools to learn Java,self.java +56,1395043401,3,Java 8 Tutorial,winterbe.com +0,1395037164,6,Using JPA and JTA with Spring,softwarecave.org +8,1395031507,5,Getting JUnit Test Names Right,codeaffine.com +0,1395025173,28,Running into ADF Jdeveloper issues specifically passing a row selection via right click and context menus from a query table to objects that use it for record selection,self.java +0,1395018008,9,Getting a list of every value in a map,self.java +2,1395016274,3,EJB Servlet Issues,self.java +7,1395015753,9,Published Beta version of Practical Eclipse Plugin Development eBook,blog.diniscruz.com +0,1395013461,8,Why won t the fiveDegrees method print anything,self.java +3,1395006071,10,Ideas on positioning a variable amount of images using swing,self.java +27,1394996659,10,Experiment with Java 8 Functionality in Java EE 7 Applications,jj-blogger.blogspot.de +3,1394994337,6,Apache Mavibot 1 0 0 M4,mail-archives.apache.org +1,1394994216,23,Apache OpenWebBeans 1 2 2 CDI 1 0 API JSR 299 Context and Dependency Injection for Java EE and JSR 330 atinject specifications,mail-archives.apache.org +21,1394993992,6,Apache Commons Compress 1 8 Released,mail-archives.apache.org +8,1394993286,2,Timer help,self.java +2,1394980353,11,Recommendations for open source visual mapping software for mapping career paths,self.java +4,1394972236,8,How do I start over from main again,self.java +12,1394950817,23,What are some of the common interview questions which would be asked More programming questions than concepts ie writing code on the board,self.java +0,1394932718,8,How to view java source code in eclipse,abrahamfarris.com +0,1394909303,6,Java Basics Lesson 6 Conditional Statements,javabeanguy.com +0,1394907948,4,Generating a random figure,self.java +2,1394907018,13,Question about Method the three dots public int changeInt int input Moves move,self.java +49,1394893025,6,How DST crashed the batch job,self.java +0,1394864076,10,First service release for Spring Data release train Codd released,spring.io +7,1394863536,7,Locking the Mouse inside an Application Frame,self.java +20,1394853156,7,Deploying a Java Tomcat Application via Chef,blog.jamie.ly +3,1394844825,3,Authenticating a WebBot,self.java +0,1394844816,2,Gridworld battles,self.java +0,1394840510,8,How do you guys like my color scheme,imgur.com +0,1394839029,37,Hey r java this is probably an easy fix for you guys but I was trying to test my program and I noticed that it prints null as well as the word entered Any one know why,imgur.com +9,1394821723,3,Modern Web Landscape,self.java +14,1394811877,6,JSR 363 Units of Measurement API,jcp.org +12,1394811450,6,Integration testing with Maven and Docker,giallone.blogspot.co.uk +0,1394807926,2,Garbage Collection,self.java +0,1394795257,4,How I learn Java,self.java +2,1394779857,7,Strange Java compilation issue involving cyclic inheritance,self.java +21,1394768279,9,Examples of beautifully written heavily unittested open source code,self.java +4,1394754866,13,I m deploying to Glassfish How do I get a faster feedback loop,self.java +6,1394751889,19,Good books similar to the style of the C programming language by Brian W Kernighan and Dennis M Ritchie,self.java +0,1394749870,2,Quick question,self.java +0,1394738003,8,counting occurences of a substring in a string,self.java +10,1394734587,12,Repeating Annotations The Java Tutorials gt Learning the Java Language gt Annotations,docs.oracle.com +0,1394732191,11,The Future of Java and Python HSG Articles from Software Fans,hartmannsoftware.com +0,1394723376,2,Live streaming,self.java +0,1394723305,29,java SampleProgram 533 I m a little new to programming Can someone help me break the sections down at a high level What improvements can be made to it,self.java +3,1394723054,9,Hosting your Eclipse update site P2 on Bintray com,blog.bintray.com +1,1394723031,14,Is this an acceptable way to load a class into the JVM at runtime,self.java +8,1394713657,4,Guice vs CDI Weld,self.java +2,1394704612,7,Moving characters in text based java game,self.java +6,1394702726,8,Hazelcast vs Cassandra benchmark on Titan Graph DB,mpouttuclarke.wordpress.com +2,1394688983,9,Recommendations for textbooks tutorials on writing UI in java,self.java +0,1394688301,10,Can someone tell me why this is an infinite loop,self.java +3,1394677136,5,Java and MySQL on Linux,self.java +10,1394673221,5,Java Textpad Game Do While,self.java +0,1394663011,4,ELI5 JUnit and XML,self.java +16,1394653294,4,Recommended training or conferences,self.java +0,1394652690,8,Java installs supposedly but then doesn t run,self.java +1,1394650936,7,Effective JAVA Typesafe Heterogeneous Container Pattern Implementation,idlebrains.org +7,1394648869,12,Beginner making a ludo game in java Any recommendations how to start,self.java +0,1394643338,6,Spring Dependency Injection DI Java Hash,javahash.com +0,1394639105,13,Vlad Mihalcea s Blog JOOQ Facts From JPA Annotations to JOOQ Table Mappings,vladmihalcea.com +5,1394629716,7,Java Tutorial Through Katas Fizz Buzz Easy,technologyconversations.com +9,1394627962,10,Concurrency torture testing your code within the Java Memory Model,zeroturnaround.com +0,1394624839,4,java notepad plugin compiler,raihantusher.com +11,1394623057,7,Java 8 Day EclipseCon North America 2014,eclipsecon.org +15,1394610739,7,Significant SSL TLS improvements in Java 8,blog.ivanristic.com +0,1394610463,10,Which version control allows easy reverts to a previous version,self.java +56,1394591830,13,Is JSP dead Please clarify this to me Just got a job interview,self.java +0,1394589186,5,Java Annotations educating and entertaining,whyjavasucks.com +1,1394583129,4,Head First Java outdated,self.java +0,1394580525,4,Advanced Serialization for Java,prettymuchabigdeal.com +0,1394579943,2,java programming,self.java +2,1394567373,3,Java game programming,self.java +19,1394556298,9,Using a Java Hypervisor to reduce your memory footprint,waratek.com +3,1394554024,3,Hosted Sonatype Nexus,self.java +1,1394552510,4,Software Versioning and Bugfixes,flowstopper.org +9,1394544569,11,Extracting Dates And Times From Text With Stanford NLP And Scala,garysieling.com +8,1394528150,6,Why package by type of type,self.java +25,1394526487,4,ObjectDB VS Hibernate ORM,self.java +13,1394518490,7,Projects to include in your Github portfolio,self.java +1,1394501997,6,Java message source best practice question,self.java +0,1394496981,9,How to add JLabels to a grid of JButtons,self.java +1,1394493018,8,Looking for tutorials for game making 2 D,self.java +15,1394492602,8,Use JNDI to configure your Java EE app,blog.martinelli.ch +1,1394492248,7,Anyone using OpenShift to host Jsp s,self.java +1,1394487457,9,Can you install packages using OS manager through Ant,stackoverflow.com +1,1394449946,2,Java forums,self.java +0,1394446470,9,Configure Spring datasource with dynamic location of property file,esofthead.com +3,1394445240,11,JSF I love you me neither 2011 auto translate from French,next-presso.com +8,1394438604,9,Will java allow to use functional interfaces as methods,stackoverflow.com +0,1394430470,7,How to handle HTML forms in Spring,softwarecave.org +2,1394425828,6,Clean SWT Listener Notifcations with SWTEventHelper,codeaffine.com +0,1394408518,6,A good book to learn java,self.java +10,1394398843,6,Tools techniques standards to improve quality,self.java +23,1394389277,5,Read Modern Programming Made Easy,leanpub.com +7,1394380500,5,Spring Boot amp JavaConfig integration,morevaadin.com +0,1394363990,14,Why You Should Never Check if Two Strings Are Equal With Equal to Operator,javabeanguy.com +0,1394340827,6,Java program to Android app help,self.java +0,1394331808,3,Algorithm Analysis Help,self.java +0,1394317950,19,Today I m beginning my journey I will keep this post updated with my every days progress and pictures,self.java +1,1394317857,4,Hosting servlets within Eclipse,self.java +6,1394297655,10,libpst read Outlook pst file for the storage of emails,code.google.com +0,1394297370,4,Help with Java Assignment,self.java +0,1394295829,5,Workings on Java String JavaHash,javahash.com +34,1394288088,6,Guidance on self updating Java application,self.java +0,1394287637,18,Looking for some pointers to help improve my coding Swing GUI web scraping x post from f codereview,reddit.com +0,1394283431,6,Apache Maven Release 2 5 Released,maven.40175.n5.nabble.com +0,1394270296,8,Java Basics Lesson 4 Conditional and Bitwise Operators,javabeanguy.com +17,1394259620,6,Quick guide to building Maven archetypes,daveturner.info +1,1394256206,4,Working with Nexus Repository,daveturner.info +0,1394238357,6,New with Java need some help,self.java +4,1394236366,5,RxJava Observables and Akka actors,onoffswitch.net +0,1394235209,4,beginner help with Java,self.java +1,1394229195,12,Your opinion Are hand written methods on paper considered archaic to you,self.java +0,1394229034,17,Ping Identity A leader in the Identity and Access Management space Hiring multiple Java Engineers in Denver,self.java +0,1394226299,3,Help with Proxy,self.java +10,1394217786,12,Forward CDI 2 0 rough cut by future CDI 2 spec lead,next-presso.com +16,1394217658,7,Java 8 Friday Goodies SQL ResultSet Streams,blog.jooq.org +3,1394216644,14,DevNation Announced a new Java and open source conference San Francisco April 13 17,devnation.org +0,1394213138,4,Ideas for Java project,self.java +3,1394210785,20,Are the patterns guidelines described in Designing Enterprise Applications with the J2EE Platform still valid for Java EE 6 7,self.java +2,1394208037,6,Good resources on proper thread usage,self.java +48,1394196604,8,Java 8 Resources Caching with ConcurrentHashMap and computeIfAbsent,java8.org +0,1394149983,4,Learning Java after Scala,self.java +86,1394138319,11,Last minute critical Java 8 bug found Will release be delayed,mail.openjdk.java.net +5,1394138270,6,Controlling Belkin WeMo Switches from Java,blog.palominolabs.com +15,1394132894,4,Java EE 7 Petclinic,thomas-woehlke.blogspot.com +0,1394127748,5,Need help for personal knowledge,self.java +0,1394124789,4,Wicket Application Development Tutorial,vidcat.org +9,1394091511,17,Getting rid of hand written bean mappers using code generation MapStruct 1 0 0 Beta1 is out,mapstruct.org +21,1394089164,17,Would you specialise in Java technologies or broaden your skill set over another 2 to 3 languages,self.java +15,1394082312,6,Apache Commons DBCP 2 0 released,mail-archives.apache.org +43,1394082090,6,Apache Commons Lang 3 3 released,mail-archives.apache.org +5,1394081822,8,Apache Shiro 1 2 3 Released Security Advisory,mail-archives.apache.org +6,1394077518,9,A guide around Spring 4 s buggy Websocket support,movingfulcrum.tumblr.com +2,1394068973,4,Java as first language,self.java +0,1394061483,4,Simplifying a Roulette Simulator,self.java +10,1394060651,9,For someone who is moving from C to Java,self.java +4,1394056735,9,Spring can t find bean in a JAR file,self.java +13,1394051758,9,Java 8 Resources Introduction to Java 8 Lambda expressions,java8.org +3,1394050244,6,Question JIT JVM overhead on hypervisors,self.java +0,1394033561,7,Beanstalkd and Glassfish 4 connections piling up,self.java +18,1394012837,6,Typesafe s Java 8 Survey Results,typesafe.com +0,1394011042,2,Java Task,self.java +4,1394008606,12,SWT Do You Know the Difference of Tree select and Tree setSelection,codeaffine.com +17,1393987018,16,Hey r Java I ve been working on my Java conventions Am I doing it right,pastebin.com +0,1393973818,5,Anyone want to test this,self.java +0,1393964107,10,The Fate of TDD Research is in your Hands Reddit,self.java +1,1393951629,11,Find the name of Exe running java application from inside code,self.java +4,1393948703,11,How would I go about feeding live data into an app,self.java +30,1393946344,11,How to avoid ruining your world with lambdas in Java 8,zeroturnaround.com +5,1393942094,7,Using the AutoValue Code Generator in Eclipse,codeaffine.com +4,1393941637,16,A subreddit for java developers to show their projects and ask for help from other members,reddit.com +0,1393935443,7,Kickstarter EasyEclipse for Java by Pascal Rapicault,kickstarter.com +3,1393935153,7,How not to create a permgen leak,plumbr.eu +8,1393933089,7,Differences between Jboss EAP amp Jboss GA,self.java +0,1393932377,3,Beginner Java help,self.java +25,1393929462,7,Adding Java 8 Lambda Goodness to JDBC,java.dzone.com +4,1393913700,7,Recursively walking a directory using Java NIO,softwarecave.org +48,1393877485,6,Survey Developers eager for Java 8,infoworld.com +9,1393871865,8,Can somebody explain annotations to me like this,self.java +21,1393870854,9,Java 8 Friday Goodies Easy as Pie Local Caching,blog.jooq.org +42,1393854634,6,Why One Hour Equals Ten Defects,thebriman.com +3,1393845197,11,Measuring the Social Media Popularity of Pages with DEA in JAVA,blog.datumbox.com +0,1393841016,10,why do we have to pay for help on java,liveperson.com +7,1393836874,8,Spring MVC Hibernate MySQL Quick Start From Scratch,gerrydevstory.com +4,1393822997,2,EnterpriseQualityCoding FizzBuzzEnterpriseEdition,github.com +0,1393811424,3,Java Android HELP,self.java +28,1393809143,11,Short intro to WebSockets in Java with JavaWebSocket JavaEE7 and Spring4,hsilomedus.me +5,1393795340,11,Cool new way to deploy JavaFX applications to the end user,captaincasa.blogspot.co.nz +0,1393784789,8,Teaser for Cargo Culting and Memes in JavaLand,blog.frankel.ch +4,1393776521,11,What do you think about the new Java 8 Optional monad,plus.google.com +4,1393775474,10,Is there a thread safe JDK 8 equivalent for SimpleDateFormat,self.java +9,1393768798,10,Why doesn t Eclipse community stand up more to IntelliJ,blog.diniscruz.com +25,1393758363,7,Net web developer getting started with Java,self.java +9,1393744988,8,A few questions over the basics of java,self.java +0,1393744531,8,Trying to display circles not going so well,self.java +0,1393698573,4,NEED HELP IN JAVA,self.java +0,1393690499,6,Java Basics Lesson 3 Arithmetic Operators,javabeanguy.com +57,1393687806,14,It s more important that Java programs be easy to read than to write,java.net +4,1393687368,2,INDEX usage,self.java +9,1393682344,5,JLS amp JVMS spec diffs,cr.openjdk.java.net +1,1393680929,10,Achieving Extreme GeoServer Scalability with the new Marlin vector rasterizer,geo-solutions.it +1,1393674071,12,CVE 2014 0002 and CVE 2014 0003 Apache Camel critical disclosure vulnerability,mail-archives.apache.org +16,1393673978,6,HttpComponents Client 4 3 3 Released,mail-archives.apache.org +1,1393673676,6,Konik ZUGFeRD de invoicing data model,konik.io +1,1393673507,7,Persistent immutable collections for Java from Scala,github.com +1,1393637815,13,How to create a java file with no pre written code on Netbeans,self.java +6,1393636431,10,Gavin Bierman leaves Microsoft Research Cambridge to join Oracle Labs,plus.google.com +1,1393619027,6,NumberFormatException Best practices for form submissions,self.java +0,1393618981,12,Ad Hoc Analysis of Big Data Visualization Webinar Mar 19th 2pm ET,jinfonet.com +0,1393608457,10,Can anyone explain why this simple code breaks middway through,self.java +0,1393606658,12,Glassfish updatetool reports 502 Proxy Error but there s no proxy server,self.java +2,1393603805,15,Q Best way to package JDK Tomcat war wars as a package ready to run,self.java +6,1393596067,6,Java 8 Sorting values in collections,markhneedham.com +2,1393593745,8,Java Enterprise Software Versus What it Should Be,obsidianscheduler.com +110,1393589926,7,10 Subtle Best Practices when Coding Java,blog.jooq.org +6,1393544952,10,Using Proximo as a SOCKS proxy in Java on Heroku,blog.palominolabs.com +14,1393544211,19,Last weekend I made an opensource TwitchPlays Clone in java for Linux and VBA x post from r twitchplayspokemon,github.com +10,1393536891,3,codehause org gone,self.java +20,1393535499,17,With all that Java can do what type of project should I create for my portfolio first,self.java +11,1393525991,7,Loading a Properties File via context xml,blog.jamie.ly +7,1393524787,6,Help w intro to data structures,self.java +3,1393517717,7,Java Dev here Question about Spring framework,self.java +5,1393517563,9,WildFly 8 versus TomEE versus WebLogic and other matters,jaxenter.com +0,1393509720,5,How do you learn java,self.java +0,1393506179,9,Full Apache stack for the Apache licensed RIA framework,vaadin.com +1,1393503189,9,JavaFX 2 Testing Library With Fluent API EUPL license,github.com +0,1393501654,12,50 bounty if you fix this jenkins plugin java jenkins svn tagging,freedomsponsors.org +3,1393496811,4,Java Personal Cloud Software,self.java +8,1393490289,10,Tutorial How to Create a Border Glow Effect in JavaFX,blog.idrsolutions.com +10,1393483424,9,Pitfalls of using sun misc Unsafe for chasing pointers,psy-lob-saw.blogspot.com +10,1393479828,7,Performance of JSON Processing and json smart,self.java +0,1393478856,15,Need help with while loop code can t seem to figure out what is happening,self.java +3,1393449378,3,Java Security Updates,self.java +0,1393448125,5,Need help with pattern problem,self.java +0,1393446907,4,Java Fraction Calculator Example,gigal.blogspot.com +30,1393446009,7,Results from Java EE 8 survey pdf,java.net +2,1393445591,6,Calculating cryptographic hash functions in Java,softwarecave.org +4,1393443253,7,Why should I learn the Spring framework,self.java +8,1393442548,11,A deeper look into the Java 8 Date and Time API,mscharhag.com +7,1393441576,4,Worst possible method signature,self.java +1,1393439315,5,toString method on Immutable classes,self.java +3,1393407945,6,A simple JSF amp Glassfish question,self.java +9,1393407059,3,Mobile dev device,self.java +0,1393393955,3,If Statement Help,self.java +0,1393386220,9,New to programming having trouble with code from text,self.java +5,1393385941,3,Help with PropertyChangeListener,self.java +7,1393381817,2,Sound recording,self.java +0,1393378546,10,Very new to programming and Java Question about use charAt,self.java +0,1393373959,11,Is there an easy way to do exponential subtraction in Java,self.java +8,1393370821,7,Miranda Methods a historical note in comments,grepcode.com +3,1393366657,8,Practicality of JVM based languages other than Java,self.java +1,1393349150,11,Some New Tricks For the Old Dog Java 8 x programming,youtube.com +2,1393344016,8,Java 8 Tutorial Through Katas Berlin Clock Easy,technologyconversations.com +133,1393338439,6,Please stop saying Java sucks 2009,blog.smartbear.com +1,1393336230,9,Why Static Code Analysis is Important on Java Projects,javarevisited.blogspot.sg +0,1393334141,8,A JUnit Rule to Ease SWT Test Setup,dzone.com +2,1393327697,9,How to Load Config Files with the Strategy Pattern,blog.stackhunter.com +2,1393322610,27,Looking for a exciting payed summer project in big data Stratosphere got accepted to Google Summer of Code 2014 Check the idea list xpost from r bigdata,github.com +2,1393320209,4,Fast Remote Service Tests,blog.thesoftwarecraft.com +23,1393314175,15,Cool minimal open source screenshot program I wrote in Java x post from r coding,sleeksnap.com +15,1393313197,9,New grad feeling lost in java tools help please,self.java +4,1393299067,18,I want to improve my java what books frameworks modules should I look into to improve my java,self.java +0,1393298958,6,Java Help Yes it is homework,self.java +3,1393290601,9,Tomcat fighting me can not get a database connection,self.java +2,1393288041,15,io tools Java utilities for stream wiring and file format detection OutputStream to InputStream conversion,code.google.com +3,1393274828,7,Learning J2EE7 Java EE 7 vs Grails,self.java +0,1393274143,6,Book recommendations for refreshing my memory,self.java +2,1393271755,6,Java interview questions looking for feedback,self.java +2,1393264816,8,Tools and frameworks for the modern Java developer,self.java +1,1393264037,16,Is there a Java Emulator for iPad A way to practice java programming without the computer,self.java +10,1393262353,4,JPA and persistence xml,self.java +13,1393256669,30,UPDATE New version of Pebble the java templating engine It now includes the much desired autoescaping of templates and numerous bug fixes Looking for people to try and break it,blog.pebble.mitchellbosecke.com +0,1393249756,10,Year Of Code amp The Myth Of The Programmer Shortage,codemanship.co.uk +155,1393245915,8,Why printing B is dramatically slower than printing,stackoverflow.com +3,1393240326,6,Spring Framework Links by Amaresh Agasimundina,springframework.zeef.com +0,1393233540,18,New to java and programming in general I have 2 theoretical questions Would really appreaciate some answers Ty,self.java +3,1393231704,5,Most common gotchas in Java,vanillajava.blogspot.co.uk +2,1393231238,9,Where and how do you organize your central objects,self.java +1,1393219618,5,Specify cipher suites for HttpsURLConnection,self.java +0,1393219391,19,Updated my Java and now I cant access my chat site because it s being blocked by security settings,self.java +2,1393216709,6,Responsive UIs with Eclipse and SWT,codeaffine.com +1,1393215863,3,HelloWorld servlet help,self.java +16,1393207179,10,When should I assign null to a variable for GC,self.java +2,1393183784,7,How does MapReduce receive input by default,self.java +4,1393121316,3,Favorite Java talks,self.java +35,1393120922,16,What is your most interesting program you ve worked on in the last year or so,self.java +0,1393103530,14,How to receive a XML file or other similar format from an HTTP server,self.java +9,1393098030,22,Hello Javit I d like to show you an early version of a browser based log monitoring tool I m working on,self.java +27,1393094778,12,From Imperative Programming to Fork Join to Parallel Streams in Java 8,infoq.com +9,1393086499,5,Java Basics Lesson 2 Arrays,javabeanguy.com +0,1393080716,17,JFrame JPanel and repaint feel like I m being stupid but I don t really get it,self.java +3,1393079881,3,Law of Demeter,eyalgo.com +5,1393061654,15,Custom Java query class DSL Builder pattern static imports or something else for complex queries,stackoverflow.com +0,1393049727,13,Pass by reference and pass by value Which is it where and how,self.java +6,1393044119,11,Web Translation Service using Apache Cxf JAX WS JAX RS SpringFramework,apprenticeshipnotes.org +76,1393022881,24,My teacher told us to write a program to print a picture in Intro to Java a couple days ago This was the result,i.imgur.com +0,1393019873,18,Best way to generate elements from a list using custom components not a listview x post r javafx,reddit.com +0,1393010375,8,Has anyone seen this weird Eclipse bug before,stackoverflow.com +3,1393006505,6,Coping with Methods with Many Parameters,techblog.bozho.net +2,1393005043,10,Java And Scala Former Competitors May Be BFFs Before Long,readwrite.com +1,1392999760,5,Testing Spatial Data with DbUnit,endpoint.nl +6,1392996982,22,squirrel foundation is a State Machine library which provided a lightweight easy use type safe and programmable state machine implementation for Java,github.com +23,1392979311,9,Jersey 2 6 has been Released New and Noteworthy,blog.dejavu.sk +3,1392971037,5,Clean approach to Wicket models,blog.eluder.org +19,1392961953,5,Java performance and good design,self.java +0,1392957379,3,Confusion in Java,self.java +0,1392950129,2,Program help,self.java +30,1392942226,14,JAAS in Java EE is not the universal standard you may think it is,arjan-tijms.blogspot.com +0,1392933616,12,How do you assign a lambda to a variable in Java 8,stackoverflow.com +20,1392931477,10,Apache Tomcat 7 0 52 released Fix CVE 2014 0050,mail-archives.apache.org +0,1392929397,6,Cayenne ORM 3 1 release candidate,mail-archives.apache.org +1,1392928199,3,HtmlUnit 2 14,htmlunit.sourceforge.net +1,1392925538,12,Continuous Enterprise Development in Java by Andrew Lee Rubinger and Aslak Knutsen,blog.eisele.net +8,1392923237,10,Read What s New in Java 8 for free online,leanpub.com +6,1392913437,4,Good Java News Feeds,self.java +4,1392913080,9,How do I use a REST API in Netbeans,self.java +0,1392910555,5,Need Help New Java Programmer,self.java +3,1392906266,4,State of Embedded Glassfish,self.java +13,1392904427,6,Java 8 Friday Goodies Map Enhancements,blog.jooq.org +0,1392904049,7,Anyone here completed the Oraclce Dev exam,self.java +0,1392897753,5,JavaFX with Nashorn Canvas example,justmy2bits.com +88,1392892653,10,Your Path to a 16B exit Build a J2ME App,blog.textit.in +2,1392873844,6,Help me choose a thesis subject,self.java +0,1392867962,15,Is there a way to get JavaCC to ignore everything which is not a token,self.java +17,1392854465,10,More on Nashorn Oracle s JavaScript engine shipping with Java8,blog.credera.com +10,1392850997,14,Oracle and Raspberry Pi Develop Java Embedded Applications Using a Raspberry Pi Free MOOC,apex.oracle.com +5,1392841940,11,pretty console a java library to make application config properties beautiful,github.com +7,1392837990,9,Should You Use Spring Boot in Your Next Project,steveperkins.net +0,1392834919,17,Can t figure out how to access my sqlite database from within a webapp deployed on tomcat,self.java +1,1392834690,8,Did repaint change in Java 6 or 7,self.java +6,1392831689,13,Shenandoah A new low pause Garbage Collection algorithm for the Java Hotspot JVM,jclarity.com +3,1392829437,11,199 core java interview questions you can download from below link,programmers99.com +4,1392824446,17,Hazelcast MapReduce API distributed computations which are good for where the EntryProcessor is not a good fit,infoq.com +4,1392823890,6,Apache Archiva 2 0 0 released,mail-archives.apache.org +14,1392817652,15,jol Java Object Layout the command line tool to analyze object layout schemes in JVMs,openjdk.java.net +112,1392814367,6,Why amp How I Write Java,stevewedig.com +14,1392800472,16,Hooray We just released version 3 of Ninja A full stack web framework written in Java,ninjaframework.org +0,1392784036,11,Is there a good way to integrate ads to a gui,self.java +0,1392778867,6,Help counting trigrams in a string,self.java +5,1392776164,6,Java Graphical Authorship Attribution Program JGAAP,evllabs.com +0,1392748894,4,Trouble with Xamarin Studio,self.java +0,1392716911,5,Java Basics Lesson 1 Variables,javabeanguy.com +47,1392714812,7,Parsing very small XML beware of overheads,clement.stenac.net +0,1392706569,13,Java net a good resource for staying up to date with Java news,java.net +14,1392694866,7,Salary For an Entry Level Software Engineer,self.java +2,1392689664,8,Going to hackathon with no experience need help,self.java +2,1392684445,9,Need help with a tiny logic error almost finished,self.java +1,1392670518,4,Question about java classes,self.java +0,1392666480,7,Cannot get if statement to print text,self.java +1,1392663459,6,books can be read in bed,self.java +1,1392658943,11,Java EE Tutorial 4 1 Security Realms with Glassfish Part 1,youtube.com +0,1392656017,7,Adv Java Java Server Page Session Management,vakratundcloud.co.in +0,1392652992,5,Adv Java Servlet Hidden Field,vakratundcloud.co.in +0,1392652297,5,Adv Java Servlet Database Connectivity,vakratundcloud.co.in +20,1392651797,3,Swing to JavaFX,dreamincode.net +6,1392651691,2,Spek Documentation,jetbrains.github.io +12,1392635796,7,Optimize MySQL Queries with Spring s JdbcTemplate,blog.stackhunter.com +2,1392633296,4,Inject Properties using CDI,blogs.oracle.com +0,1392621695,5,How send data from server,self.java +27,1392615309,2,JUnit Rules,codeaffine.com +3,1392592018,8,Using Delimiter to get info inside curly braces,self.java +0,1392587855,14,An error concerning a local variable that is not a local variable Any Suggestions,self.java +0,1392586287,9,An improved example of how volatile in java helps,orangepalantir.org +0,1392575738,6,How do I end this loop,self.java +1,1392575476,11,HashMap is faster than a search through all the values right,garshol.priv.no +1,1392567167,7,Chaining URL View resolvers in Spring MVC,blog.frankel.ch +5,1392562950,6,Jersey Hello World Example Java Hash,javahash.com +3,1392561684,7,Is JDK8 going to support Windows XP,self.java +19,1392560782,11,Mockito Why You Should Not Use InjectMocks Annotation to Autowire Fields,tedvinke.wordpress.com +41,1392560431,12,10 Reasons Why Java Rocks More Than Ever Part 9 Backwards Compatibility,zeroturnaround.com +4,1392536617,13,What s a good book for learning about the new Java 8 features,self.java +0,1392527532,10,How do I round of to a specific decimal point,self.java +12,1392519462,3,Google Guava Presentation,scaramoche.blogspot.co.uk +8,1392506893,11,Java game engine jMonkeyEngine 3 0 Capuchin Prime is officially STABLE,hub.jmonkeyengine.org +0,1392504588,5,Need help to learn JAVA,self.java +0,1392504285,9,is a has a Difference between inventory and stock,self.java +3,1392499360,14,How to Overwrite The Version of Mojarra in WLS 12 1 2 and Beyond,weblogs.java.net +40,1392498481,15,Under what circumstances do you tell people you are a programmer verses a software engineer,self.java +5,1392493215,8,What is the best data type for currency,self.java +3,1392492284,10,How do I fill this empty space in my GUI,self.java +10,1392476573,7,Announcing Java ME 8 Early Access 2,terrencebarr.wordpress.com +3,1392454154,12,How should I use Hibernate Mapping while dealing with huge data table,stackoverflow.com +32,1392446717,8,Good Programming Tutorials Are Few and Far Between,self.java +0,1392441439,6,Did I make a major mistake,self.java +0,1392435079,16,Hi there I was wondering if anybody could help me with a problem I am having,self.java +0,1392425766,7,Why aren t my methods being called,self.java +3,1392420326,23,The Blind Builder An alternative design pattern to the Bloch Builder for classes intended to be extended and sub extended many times aliteralmind,programmers.stackexchange.com +10,1392414873,3,WildFly 8 benchmarked,jdevelopment.nl +2,1392413238,7,JavaFX application launches but does not run,self.java +1,1392402960,8,My first Java Game Thing Link in Desc,self.java +0,1392402238,11,Can t seem to figure out why this will not compile,self.java +0,1392395694,5,Adv Java Servlet Basic Example,vakratundcloud.co.in +5,1392393230,12,What common pieces of code you implement in most of your projects,self.java +0,1392390913,5,Best Tutorial to Learn Java,self.java +6,1392386547,6,The Exceptional Performance of Lil Exception,shipilev.net +1,1392386189,6,8 Cool Things About Java Streams,speling.shemnon.com +95,1392376716,10,What aspect of your Java programming do you like best,self.java +2,1392362363,4,JavaFX application slow startup,self.java +0,1392357082,4,Java Roomba Program Help,self.java +0,1392348947,2,Help please,self.java +1,1392341570,11,How do I parse a String into java sql Date format,self.java +1,1392340628,10,I have a noob question Can anyone help me out,self.java +1,1392340133,20,I want to build something in Java but I have no idea where to start and practically no code experience,self.java +1,1392330121,4,Help with Rounding Integers,self.java +21,1392327944,5,Elastic Search 1 0 0,elasticsearch.org +9,1392326672,6,Jetty 9 1 2 v20140210 Released,jetty.4.x6.nabble.com +2,1392326473,11,Securer String a String library for shredding sensitive data after use,github.com +22,1392323533,9,JSF is not what you ve been told anymore,blog.primefaces.org +21,1392322562,6,Netbeans 8 nightly impressive first day,martijndashorst.com +4,1392312402,8,A comprehensive example of JSF s Faces Flow,blog.oio.de +29,1392312272,5,Netty at Twitter with Finagle,blog.twitter.com +0,1392307261,4,Please Help Eclipse Error,self.java +0,1392306955,5,Anyone Feeling Bored and Helpful,self.java +0,1392304298,2,INSTALLING ERROR,self.java +24,1392298746,12,This Cool HTML 5 Game is Written In Java end to end,self.java +9,1392290807,10,Writing to Final Fields After Construction by Dr Cliff Click,azulsystems.com +7,1392290759,7,When I say final I mean FINAL,psy-lob-saw.blogspot.ie +17,1392281208,16,JSON in Query Params or How to Inject Custom Java Types via JAX RS Parameter Annotations,blog.dejavu.sk +0,1392274571,4,Adv Java Swing Menu,vakratundcloud.co.in +0,1392270735,3,Swing JTree Example,vakratundcloud.co.in +7,1392267486,7,Could someone please explain Java version compatibility,self.java +2,1392265396,10,Help integrating spring spring data in to existing maven project,self.java +0,1392244635,12,Opening a Perforce Stored Android Project that is Already In The Workspace,self.java +3,1392235726,12,What s the longest valid method call you have used in Java,self.java +0,1392235648,11,Web application stopped serving static files after adding RESTful web services,self.java +0,1392234381,10,Good intro to Android development for someone familiar with Java,self.java +3,1392233730,8,Oracle Java EE 7 curriculum and certification survey,surveymonkey.com +0,1392222694,6,Getting Started with IntelliJ from Eclipse,zeroturnaround.com +0,1392220659,9,Free Team Management Tool For JavaCodeGeeks Com Readers Giveaway,javacodegeeks.com +10,1392218697,10,Red Hat JBoss BPM Suite access GIT project using SSH,schabell.org +37,1392218635,10,Help Java listeners stop working when laptop is on battery,self.java +0,1392215147,5,Need help with this problem,self.java +0,1392210742,7,How to create method taking arbitrary arguments,self.java +14,1392206261,11,JTA 1 2 It s not your Grandfather s Transactions anymore,blogs.oracle.com +18,1392205967,20,Red Hat s JBoss team launch WildFly 8 with full Java EE 7 support and a new embeddable web server,infoq.com +32,1392202168,5,WildFly 8 Final is released,wildfly.org +0,1392200648,9,How to write dynamic SQL in MyBatis using Velocity,esofthead.com +0,1392163129,3,Basic help please,self.java +85,1392155947,10,Java 8 Cheatsheet lambdas method references default methods and streams,java8.org +12,1392153769,6,Hazelcast Websockets amp Real Time Updates,blog.c2b2.co.uk +0,1392148479,6,Jstack and kill 9 on OOM,self.java +0,1392115429,24,An old article but do we have a better binding to Qt in Java world Or does the current Qt Jambi working just fine,javaworld.com +12,1392103009,6,Apache POI 3 10 FINAL released,mail-archives.apache.org +26,1392102331,2,Effective Mockito,eclipsesource.com +1,1392082461,14,Has anyone used PDFBox or another open source library to successfully view PDF Files,self.java +9,1392065407,7,Java 8 Performance Improvements LongAdder vs AtomicLong,blog.palominolabs.com +1,1392064489,14,How to check if a double is the correct data type in java eclipse,self.java +1,1392063731,9,What is the best java web framework for production,self.java +28,1392059607,11,WildFly 8 0 joins roster of certified Java EE 7 servers,jaxenter.com +38,1392055445,6,Is GWT still a viable technology,self.java +5,1392054801,6,Preparing for the 1Z0 803 exam,self.java +0,1392053980,8,Looking for a free website that teaches Java,self.java +10,1392042476,3,A multithreading mystery,self.java +14,1392041976,6,Java 8 From PermGen to Metaspace,javaeesupportpatterns.blogspot.ie +0,1392041531,5,Am I A professional now,self.java +22,1392039599,4,Mockito Templates for Eclipse,codeaffine.com +1,1392031280,8,Need help question about programming assignment in java,self.java +6,1392028954,3,Everything about PrimeFaces,primefaces.zeef.com +2,1392025837,7,Logging in Java with users in mind,blogg.kantega.no +0,1392024594,8,When Attention converges to Zero Enterprise Software Trends,contentreich.de +21,1392007066,6,What has Java been useful for,self.java +27,1392001103,10,My modern take on Spring 4 MVC Hello World Tutorial,jbrackett.blogspot.com +0,1391999197,4,Java wizard getting interrupted,self.java +0,1391989455,7,Why won t me size method work,self.java +2,1391984964,2,Netbeans problem,self.java +0,1391975910,9,Core Java Advanced Features what do you guys think,self.java +10,1391960970,3,Java Runtime Compiler,github.com +9,1391960042,6,Try with resources in Java 7,softwarecave.wordpress.com +0,1391958799,8,How to generate a random four digit number,self.java +0,1391958133,7,Reusing front end components in web applications,blog.frankel.ch +44,1391951206,10,Spring 4 MVC Hello World Tutorial Full Example Java Hash,javahash.com +0,1391931825,8,Javafx TextArea scrolling bugs when writing 20k lines,self.java +1,1391929442,3,JSF Facelets templates,softwarecave.wordpress.com +14,1391917717,4,Java 8 Type Annotations,mscharhag.com +6,1391907278,9,Where do I start to learn Xpost r learnjava,self.java +0,1391906103,16,New To Java What are some recommended books or websites or tutorials to get me started,self.java +9,1391903878,14,JDK 8 Doclint for Javadoc is a pain but it can be turned off,blog.joda.org +1,1391902903,4,CSV File program java,self.java +24,1391874350,6,JeroMQ Native Java implementation of ZeroMQ,github.com +2,1391873591,8,SECURITY Apache Commons FileUpload 1 3 1 released,mail-archives.apache.org +6,1391870511,11,Are Project Coin s collection enhancements going to be in JDK8,stackoverflow.com +2,1391869788,7,Updating Jersey 2 JAX RS in GlassFish,blog.dejavu.sk +0,1391868845,5,Help with Java Error 1712,self.java +11,1391858398,8,Using JUnit JaCoCo and Maven for code coverage,softwarecave.wordpress.com +17,1391825284,8,Proposal Drop Stripped Implementations from Java SE 8,mail.openjdk.java.net +5,1391810426,15,Anyone know of a good intro to Java that is oriented toward tomcat application development,self.java +10,1391793385,5,Apache DeltaSpike Data Module JPA,deltaspike.apache.org +49,1391783014,19,Guava 16 0 1 fixes problems with JDK 1 7 0_b51 TypeVariable No more need to hold back update,plus.google.com +8,1391779377,7,Using JOOQ with Spring and Spring Transaction,jooq.org +0,1391779101,8,5 Ways to Handle HTTP Server 500 Errors,blog.stackhunter.com +5,1391768904,4,Parallel Parking JavaSpecialists 217,javaspecialists.eu +5,1391766574,8,First look at Deltaspike Introduction A JSF example,kildeen.com +16,1391723897,7,Strategy for JUnit tests of complex objects,self.java +14,1391723482,11,SECURITY CVE 2014 0050 Apache Commons FileUpload and Apache Tomcat DoS,mail-archives.apache.org +2,1391719427,31,I need some assistance using an arrayList to create an iterator in a stack class Details in comments Not sure if this is the right sub If not direct me elsewhere,self.java +13,1391714676,8,Filtering JAX RS Entities with Standard Security Annotations,blog.dejavu.sk +7,1391706728,9,JAXB Serialize child classes with only selected parent fields,blog.bdoughan.com +35,1391701604,12,A practical example of what Java 8 can do to your code,zeroturnaround.com +5,1391701053,6,Reactive functional UI development with Vaadin,vaadin.com +2,1391699581,5,Java EE CDI TransactionScoped example,byteslounge.com +0,1391697506,7,Plumbr Plumbr 3 5 usability lessons learned,plumbr.eu +4,1391695745,7,Radio Buttons Example with JSF 2 0,examples.javacodegeeks.com +48,1391693759,6,JEP 188 Java Memory Model Update,openjdk.java.net +0,1391683824,11,Whats the safest and best way to add to a database,self.java +1,1391668836,15,What is a good book to start learning Java for someone with some programming experience,self.java +1,1391660299,6,Small issue working with custom library,self.java +0,1391653657,24,To make a 2d field should I use a Array or a Hashmap And what is the argumentation for the one I should use,self.java +7,1391649265,2,Packaging OpenJDK,blog.fuseyism.com +4,1391643336,4,Using Swing and getActionCommand,self.java +31,1391641897,4,Just a hacking game,github.com +2,1391639013,10,Camunda Open Source BPM and Workflow with BPMN 2 0,camunda.org +0,1391631711,3,Help understanding Generics,self.java +0,1391629406,7,i need sorting using if and else,self.java +7,1391610246,11,Step by Step How to bring JAX RS and OSGi together,eclipsesource.com +13,1391607731,12,JDBC 4 0 s Lesser known Clob free and Blob free Methods,blog.jooq.org +41,1391606482,7,Stephen Colebourne s blog Exiting the JVM,blog.joda.org +16,1391595483,10,Shenandoah An ultra low pause time Garbage Collector for OpenJDK,rkennke.files.wordpress.com +7,1391575813,7,Is there a JAVA API for Reddit,self.java +0,1391553769,5,A question about java events,self.java +5,1391542900,10,New to Java Small App uses Massive Amounts of CPU,self.java +7,1391535045,8,Javax mail How to implement Undelivered Email notifications,cases.azoft.com +0,1391533574,3,Using a List,self.java +13,1391530008,7,first release candidate build of JDK 8,mail.openjdk.java.net +0,1391525309,7,I want a book on Design Patterns,self.java +28,1391523194,11,Why is it hard to make a Java program appear native,programmers.stackexchange.com +1,1391509125,10,New to JAVA Have to build a Text Miner Analyzer,self.java +56,1391467811,10,Java Ranks 2 in Most Popular Programming Languages of 2014,blog.codeeval.com +6,1391463731,7,Is Node js Really Faster Than Java,self.java +0,1391462458,7,Need some help in Java with selections,self.java +7,1391450571,5,WebSockets in Java A Tutorial,restlessdev.com +8,1391443315,7,JVM Language Summit 2013 Videos amp Slides,oracle.com +1,1391442919,2,Hibernate Advice,self.java +4,1391441666,22,How do I add jar files to classpath Specifically I am using Eclipse and I want to add Quartz scheduler jar files,self.java +0,1391436327,9,Configuring Tomcat and Apache httpd load balancing and failover,syntx.co +34,1391434816,7,Why using SLF4j is better than Log4j,javarevisited.blogspot.sg +6,1391428388,11,How To Build Template Driven Java Websites with FreeMarker and RESTEasy,blog.stackhunter.com +7,1391422529,14,Creating Multiplayer Game using libgdx libgdx is a cross platform Java game development framework,blogs.shephertz.com +4,1391415432,14,A question about how to handle structure persistence in a case that confuses me,self.java +2,1391398249,6,Help speeding up LRU cache implementation,self.java +27,1391367560,12,Hardware Transactional Memory in Java or why synchronized will be cool again,vanillajava.blogspot.co.uk +8,1391367207,9,Some help with a personal project would be nice,self.java +8,1391327501,16,How should I test implement my library but not include tests implementations when building a JAR,self.java +0,1391327474,7,Evaluating expressions using Spring Expression Language SpEL,syntx.co +8,1391302024,4,JSR 292 Cookbook PDF,i.cmpnet.com +3,1391286662,6,Apache PDFBox 1 8 4 released,mail-archives.apache.org +6,1391286442,3,Apache ODF Toolkit,incubator.apache.org +18,1391284791,5,Java 8 Support in Eclipse,waynebeaton.wordpress.com +0,1391276631,11,Looking for help on a layout created by a java program,self.java +4,1391272143,4,Detecting Scroll Lock State,self.java +12,1391264881,1,Speed4j,github.com +9,1391264293,4,Rio Dynamic Distributed Services,rio-project.org +0,1391234856,10,Java web developers who wish to implement robust security mechanisms,packtpub.com +7,1391231718,7,First Java 8 Book on The Market,amazon.com +12,1391228251,16,Looking for a small group of somewhat beginners at Java to work on small projects with,self.java +4,1391221571,9,Transforming an object into a subclass of that object,self.java +5,1391208846,5,Strange results in Java 8,self.java +0,1391205693,7,Passing an object into a static method,self.java +0,1391203889,14,Help with a problem I need help with part b and c the most,i.imgur.com +3,1391200525,5,Wanting to use multiple threads,self.java +29,1391199237,8,How To Regular Expressions in Java Part 1,ocpsoft.org +1,1391193881,11,Is it possible to run and automate a program in Java,self.java +2,1391193664,21,Eclipse Plugin that allows the execution of REPL Groovy Scripts in the current Eclipse Instance and Fluent API for Eclipse SWT,blog.diniscruz.com +34,1391188094,5,High performance libraries in Java,vanillajava.blogspot.co.uk +0,1391186957,14,Amazing site http opensource uml org Popular opensource Java libraries reversed in UML models,self.java +10,1391180735,6,Change from technical consultant to dev,self.java +1,1391174558,6,Writing serial data to text files,self.java +23,1391162601,11,The myth of calling System gc twice or several times prevails,stackoverflow.com +2,1391159896,10,41 Websites Every Java Developer Should Bookmark The Complete List,cygnet-infotech.com +26,1391151530,5,Java Programming as a job,self.java +0,1391147192,6,Java Web Applications and Much More,askvikrant.com +1,1391143806,2,Learning Java,self.java +0,1391139499,5,Results from random image generator,imgur.com +6,1391108552,8,Oracle Plans to Reunify Java for IoT Age,blog.programmableweb.com +1,1391105812,7,jHTML2Md A simple HTML to Markdown converter,self.java +5,1391101292,17,Deutsche Bank have an online eBills services that works with Java 1 6 but not 1 7,self.java +2,1391099931,8,Connecting JBoss WildFly 7 to ActiveMQ 5 9,blog.c2b2.co.uk +6,1391094206,5,Intrinsic Methods in HotSpot VM,slideshare.net +0,1391086937,3,Spring Integration Refcard,refcardz.dzone.com +0,1391081272,10,Handling JAX RS and Bean Validation Errors with Jersey MVC,blog.dejavu.sk +80,1391077865,10,JDK 8 reference implementation released except for Mac of course,jdk8.java.net +10,1391077417,3,Choosing an ExecutorService,blog.jessitron.com +0,1391074601,12,Is it possible to edit an application if I have the sourcecode,self.java +4,1391053554,11,XMLUnit Easy way to unit test your xml data BSD License,xmlunit.sourceforge.net +2,1391051263,13,Hello r java I made a project that encrypts files using XOR algorithm,self.java +0,1391045807,11,Building Java Programs A Back to Basics Approach 3rd Edition PDF,self.java +10,1391040174,12,How to make an IntelliJ IDEA plugin in less than 30 minutes,bjorn.tipling.com +1,1391039343,5,Writing to open excel files,self.java +0,1391018417,6,Taking an online Java programming course,self.java +0,1391014526,12,I created a Java programming course for the beginner that is free,self.java +0,1391012984,3,Java practise programs,self.java +1,1391003624,9,LiveRebel 3 0 lands Now release multiple apps simultaneously,zeroturnaround.com +1,1391000662,7,What is a good Java graphing library,self.java +156,1390999217,4,Google Java Coding Standards,google-styleguide.googlecode.com +7,1390997810,3,Java 8 Changes,codergears.com +2,1390992827,6,Java bash like parameter expansion library,self.java +1,1390990280,16,The Baeldung Weekly Review 4 A weekly review of interesting Java Java 8 Spring related topics,baeldung.com +0,1390973436,4,Simple Java Hashing Program,self.java +2,1390967800,9,A request for help with starting my pet project,self.java +3,1390953167,7,Writing Interactive Web Applications with Web Actors,blog.paralleluniverse.co +0,1390951174,38,I saw this problem in my java book T or F If the value of a is 4 and the value of b is 3 then after the statement a b the value of b is still 3,self.java +0,1390947528,4,Help with java array,self.java +43,1390941404,9,Java 8 will use TLS 1 2 as default,blogs.oracle.com +0,1390934950,11,How come I can t compile java on windows 8 1,self.java +0,1390932322,12,Can HTML make random text appear in a livejournal post Like java,self.java +15,1390932167,5,WildFly 8 vs GlassFish 4,blog.eisele.net +32,1390926211,12,ThoughtWorks latest Technology Radar moves Ant to Hold advocates Gradle Buildr etc,thoughtworks.com +18,1390922051,11,Machine Learning tutorial Developing a Naive Bayes Text Classifier in JAVA,blog.datumbox.com +27,1390920390,16,I made a new Java templating engine and I m looking for feedback and or contributors,mitchellbosecke.com +1,1390915750,9,Creating Grammar Parsers in Java and Scala with Parboiled,hascode.com +1,1390912255,15,New easy way to resolve Maven dependency conflicts in IntelliJ x post from r IntelliJIDEA,self.java +0,1390907340,13,Hello r Java I m very new to programming and need your help,self.java +0,1390902152,15,Java is the new C Comparision of different concurrency models Actors CSP Disruptor and Threads,java-is-the-new-c.blogspot.de +5,1390898725,20,Hello r java I ve written a Java documentation and source code viewer and would love to hear your feedback,self.java +8,1390894286,21,Benchmarking SPSC lock free queues in several ways presenting the best thus far 470M ops sec and meditations on said benchmarks,psy-lob-saw.blogspot.com +1,1390884654,11,How has the internet influenced the development of the Java language,self.java +0,1390865293,4,NetBeans 8 Loves PrimeFaces,youtube.com +33,1390858799,4,JEP 186 Collection Literals,openjdk.java.net +0,1390858583,4,Mpxj Microsoft Project Interop,mpxj.sourceforge.net +2,1390857947,14,JTS Topology Suite is an API of spatial predicates and functions for processing geometry,tsusiatsoftware.net +13,1390856214,12,AutoValue simple value object code generation with no metalanguage just plain Java,plus.google.com +8,1390854988,12,Annotations and Annotation Processing What s New in JDK 8 57 10,youtube.com +14,1390852794,9,Oracle doing a survey on sun misc Unsafe usage,blogs.oracle.com +0,1390842526,9,Java 8 Goodies The New New I O APIs,javacodegeeks.com +1,1390835969,9,Brief Discussion About the Java 8 Date Time API,blog.codecentric.de +19,1390834912,7,Best practices to improve performance in JDBC,precisejava.com +1,1390833574,4,Is new String immutable,stackoverflow.com +0,1390831018,6,From Java to Scala Tail Recursion,medium.com +1,1390830305,4,More Units with MoreUnit,codeaffine.com +11,1390830200,11,The new Java Streams API was a really bad name choice,self.java +1,1390816069,5,JVM JIT Compilation Overview Video,vimeo.com +3,1390814924,11,Practicing at the Cutting Edge Learning and Unlearning about Java Performance,infoq.com +15,1390809457,12,So this was my midnight program tonight how would you improve it,github.com +6,1390789376,17,How can I include a terminal in my java program restricted to a directory or custom filesystem,self.java +0,1390783643,5,Calling all DFW Java devs,self.java +0,1390772806,10,How to get an integer value from a dropdown menu,self.java +0,1390764692,29,Doing Codelab and stuck on a problem This is very beginner stuff and I m new to Java would someone be willing to help me out with this one,self.java +2,1390759107,5,A little help with GCJ,self.java +23,1390747408,4,Extrinsic vs intrinsic equality,blog.frankel.ch +17,1390743843,7,Running JUnit tests in parallel with Maven,weblogs.java.net +4,1390716034,10,How to Host your Java EE Application with Auto scaling,openshift.com +40,1390707101,6,Java 8 Date and Time API,youtube.com +14,1390667632,19,Learning java from the Java tutorials from oracle Any way to get them on my Kindle for reading anywhere,self.java +5,1390667361,17,What should be a development roadmap for a legacy Java Swing application for the next 5 years,self.java +12,1390663908,12,The la4j library release 0 4 9 sparse dense Java matrix library,la4j.blogspot.com +35,1390662213,9,20 very useful Java code snippets for Java Developers,viralpatel.net +20,1390649706,13,Introduction to JSR 310 Part 1 Overview of existing Date and Time API,java.amitph.com +0,1390637891,13,Please help me with this program I ve been stuck for 2 days,self.java +0,1390615697,9,I need you Java masters TAKE A LOOK INSIDE,self.java +4,1390607623,4,Memory Issues with LibGDX,self.java +1,1390606079,6,Is Wildfly 8 a game changer,colocationamerica.com +5,1390602536,3,Java server hosting,self.java +0,1390600955,31,I have ten days to brush up on my Java skills before an interview All I have done for 3 years is minor code changes What resource s would you recommend,self.java +2,1390595284,3,Generic method arguments,stackoverflow.com +11,1390593812,13,What s New in the JVM in Java SE 8 by Gil Tene,youtube.com +30,1390588096,4,Java interview question feedback,self.java +8,1390575974,4,question about java threads,self.java +4,1390567851,4,JVM Performance Magic Tricks,javacodegeeks.com +5,1390567599,7,Managing Java logs with logstash and Kibana,blog.progs.be +0,1390560939,2,Java problems,self.java +9,1390558637,8,JSR 356 Java API for WebSocket or Atmosphere,jaxenter.com +6,1390545269,17,I m creating an introduction to Java programming series inspired by the community and want your feedback,self.java +8,1390541578,9,Converting from json to Java within a Java program,self.java +3,1390535137,8,A question about how to develop frameworks libraries,self.java +2,1390519468,9,Need advice on designing mocking up a web service,self.java +7,1390510765,8,Simple gui toolkit for lwjgl or playn videogames,github.com +0,1390510316,11,Best Java book after Java for Dummies x posted to LearnProgramming,self.java +0,1390508907,6,Netty 4 0 15 Final released,netty.io +10,1390508310,9,Thread safe FIFO queues in Java over Generics types,self.java +0,1390506475,6,HttpComponents HttpClient 4 3 2 Released,mail-archives.apache.org +10,1390506177,7,TreeTable Sorting in upcoming PrimeFaces 5 0,blog.primefaces.org +5,1390504327,11,How can I define a standalone goal in Maven pom xml,self.java +7,1390500365,10,Where to get a certificate to sign my JavaFX app,self.java +1,1390496565,1,Scripting,self.java +1,1390491704,9,10 Reasons to Replace Your JSPs With FreeMarker Templates,blog.stackhunter.com +5,1390488736,8,Java Magazine Jan Feb 2014 published registr required,oraclejavamagazine-digital.com +0,1390488637,11,many concurrent reads 1 write cause ObjectNotFoundException due to ehcache why,stackoverflow.com +17,1390485260,6,Java security patch breaks Guava library,jaxenter.com +7,1390450521,3,CodeEval supports Java,codeeval.com +6,1390439030,10,How to implement desired functionality in JavaFX Background Socket Listener,self.java +32,1390438010,5,Stack amp Heap Java Programming,self.java +12,1390434068,3,Question about Immutability,self.java +7,1390426131,7,Book recommendations to learn Java for Android,self.java +3,1390424543,11,Practicing at the Cutting Edge Learning and Unlearning about Java Performance,infoq.com +0,1390420888,3,Help reinstalling java,self.java +2,1390418672,7,How much am I supposed to understand,self.java +2,1390410780,6,What is wrong 1 6 generics,self.java +3,1390407613,6,DataFlow or Pipeline library Framework recommendation,self.java +1,1390406299,7,The Top Java Memory Problems Part 1,apmblog.compuware.com +0,1390404861,6,How to compile java code dynamically,weblogs.java.net +16,1390401726,20,Interesting report on Java Build Tools Maven Gradle and Ant Ivy I wonder who will win least annoying build tool,zeroturnaround.com +0,1390401483,11,Java Memory Model Structures and causes for OutOfMemory Error Java Hash,javahash.com +0,1390401031,4,Multiple actionlisteners in JSF,stackoverflow.com +2,1390397939,6,Proof of Concept Using Spring Roo,keyholesoftware.com +99,1390385254,2,System exit,self.java +2,1390353184,4,Java to xls xlsx,self.java +4,1390343763,9,Why won t this extremely simple if statement work,self.java +12,1390328779,4,JBoss HornetQ and JCA,self.java +0,1390327104,18,M x shell and M x term don t play well with mvn test xpost from r emacs,reddit.com +16,1390326027,5,Is AES Cipher secure enough,self.java +5,1390322187,10,Does Java certification have a value on the job market,self.java +0,1390318163,7,SOLID Part 2 The Open Closed Principle,net.tutsplus.com +23,1390313112,3,JetBrains is hiring,blog.jetbrains.com +8,1390303554,12,What is so bad about static and how can I avoid it,self.java +0,1390301741,13,Is it me or is there something slightly odd about the Easymock logo,easymock.org +1,1390301711,6,Ajax Example with JSF 2 0,examples.javacodegeeks.com +2,1390273971,6,Pull model interface to the keyboard,self.java +102,1390265804,13,Notice Java 1 7 0 Update 51 is no longer compatible with Guava,code.google.com +0,1390260192,12,HELP Can someone tell me why this code gives me an error,self.java +0,1390255742,17,I just finished Beginning Programming with Java for Dummies and I am wondering where to go next,self.java +4,1390253882,10,ImageJ an image processing program widely used for scientific research,developer.imagej.net +5,1390241661,6,How can I bot my setup,self.java +2,1390240718,10,Ricston s experience of running Mule on a multitenant JVM,java.dzone.com +2,1390237054,29,Adjacency list Array of ArrayLists OR ArrayList of ArrayLists What would be your preference and why I am using these in an assignment and some marks are for style,self.java +23,1390228948,7,Collection of NetBeans resources by Nebrass Lamouchi,netbeans.zeef.com +21,1390228268,7,30 Days with IntelliJ IDEA Application Servers,blog.jetbrains.com +9,1390226288,4,JArchitect v4 0 Released,infoq.com +0,1390225671,9,How long would you take to understand this P,self.java +2,1390184152,12,Problems with tomcat embedded NoInitialContextException when trying to get a JDBC connection,self.java +5,1390182594,4,Question about advanced programming,self.java +1,1390181168,5,Setting up a photo array,self.java +2,1390172331,5,Question about calling static methods,self.java +37,1390171643,22,If you had to name 5 books that take you from being a java beginner to a pro what would they be,self.java +0,1390163664,7,High School Project need help with GUI,self.java +7,1390163633,5,LWJGL OpenGL scaling textures weirdly,self.java +4,1390159760,11,ANTLR 4 IDE can now export a syntax diagram to HTML,jknack.github.io +11,1390157151,10,What is a simple cool program to write in Java,self.java +5,1390156788,4,Java Starting class files,self.java +0,1390153006,4,WebJars and wro4j integration,blog.frankel.ch +1,1390149718,14,How do I stop the execution of a parent method within an execution stack,self.java +41,1390149121,10,JCommander An Alternative to Common CLI Apache 2 0 license,beust.com +10,1390143404,7,Automating JMeter tests with Maven and Jenkins,blog.codecentric.de +4,1390136579,9,What are Best Resources to Learn Java for Beginners,javatalk.org +6,1390124426,14,Why do I need to resize the frame for my images to be seen,self.java +0,1390115536,9,Using regex to hanging indent a paragraph in Java,blog.pengyifan.com +0,1390102567,2,JFrame help,self.java +0,1390098000,7,Need help on a Highschool project gui,self.java +10,1390092146,7,Coding can get quite lonely Context inside,self.java +9,1390080999,15,Are there any sample MVC projects out there that use a relational database for download,self.java +0,1390078087,17,ductilej A Java compiler plugin that turns Java into a mostly dynamically typed language Google Project Hosting,code.google.com +1,1390077173,17,I m trying to write some packages to use as a Framework and I have a question,self.java +0,1390074690,14,Is there a better alternative to BigInteger for java Especially for the operation modpow,self.java +0,1390040169,18,Now Don t Learn Just Small Programs Development Learn Real Life Software Development Online with online debugging facility,programsji.com +0,1390037704,6,Cannot play my game on Mac,self.java +1,1389999115,14,Apache Camel 2 11 3 Released ex Update to XML Security 1 5 6,camel.apache.org +0,1389996140,8,Coding techniques to avoid security exploits in Java,self.java +3,1389970931,10,How were the java util Collections optimized in Java 7,self.java +22,1389968330,8,Looking for fellow coding noobs to collaborate with,self.java +16,1389966855,14,What is the current status of JMX What are alternatives that are worth considering,self.java +1,1389958012,7,Need a little help with some basics,self.java +24,1389949155,7,Why is package private the default access,self.java +6,1389907885,11,Containers and application servers can someone help me with the terminology,self.java +1,1389902021,7,Coding question which should be very basic,self.java +14,1389897903,12,Java Blamed by Cisco for 91 percent of all Exploits in 2013,eweek.com +0,1389890853,6,Why won t my image display,self.java +5,1389890821,8,The top 5 features of NetBeans IDE 8,jaxenter.com +0,1389890358,10,Learn Java with LearnStreet s Java for Dummies Online Course,learnstreet.com +0,1389884799,12,Why Default or No Argument Constructor is Important in Java Class JavaRevisited,javarevisited.blogspot.com +71,1389881606,13,Java 7 update 51 has been released includes 36 security fixes Upgrade ASAP,oracle.com +0,1389880482,8,Where can I alter my Java security settings,self.java +7,1389876953,8,21 things about Synchronized and Synchronization in Java,javarevisited.blogspot.sg +14,1389860850,9,Shenandoah Red Hat s JEP for a pauseless collector,openjdk.java.net +2,1389855435,15,Is it a bad idea to use transaction in JDBC for executing single SQL statement,self.java +0,1389852786,10,Basic JAVA programming help I am a newbie to this,self.java +0,1389849854,7,What should be a simple JOption question,self.java +11,1389841193,14,Can someone guide me in creating a simple multi threaded program which uses locks,self.java +0,1389829854,7,HTTP server and socket on same port,self.java +0,1389829826,5,Anyone wanna help me out,self.java +0,1389799036,5,Dialog Box with multiple inputs,self.java +22,1389796173,6,The infamous sun misc Unsafe explained,mydailyjava.blogspot.no +7,1389768055,7,JavaEE Redirect user from HTTP to HTTPS,self.java +0,1389764630,4,Help with Java Assignment,self.java +9,1389760864,8,MQ Any comparison chart for correlationId vs messageId,self.java +0,1389760092,5,Why doesn t this work,self.java +0,1389749908,6,A little enquiry on my project,self.java +0,1389746267,4,Trouble using Maven JavaFX,self.java +0,1389737897,5,Help with first Java program,self.java +0,1389734886,3,Radicals in Java,self.java +8,1389734754,15,New security requirements for RIAs in 7u51 January 2014 Java Platform Group Product Management blog,blogs.oracle.com +6,1389731774,10,Automatically testing all possible states caused by pseudo random behaviour,babelfish.arc.nasa.gov +0,1389713204,13,X Post from r AskProgramming JButton setlocation only works inside my actionListener Help,self.java +2,1389712954,4,Incorporating a plugin framework,self.java +0,1389709293,6,Need help with a problem Diamonds,self.java +25,1389708474,9,I Don t Like Scala Bozho s tech blog,techblog.bozho.net +2,1389696565,11,Java Persistence Performance Objects vs Data and Filtering a JOIN FETCH,java-persistence-performance.blogspot.com +9,1389690672,6,JSF to become action based framework,weblogs.java.net +3,1389689683,13,Trying to generate reports in a PDF format Not sure where to start,self.java +0,1389664380,13,Anyone have a list of patches in Java patch day 2014 01 14,self.java +22,1389653915,10,Best book for experienced devs to touch up on Java,self.java +19,1389647549,4,OmniFaces 1 7 released,balusc.blogspot.com +0,1389645608,5,Is Java still worth learning,news.ycombinator.com +20,1389628778,5,Fluent Interfaces Yea or Nay,self.java +0,1389622338,7,Spring XD 1 0 0 M5 Released,spring.io +2,1389616483,9,Java EE 7 collection of resources by Abhishek Gupta,javaee7.zeef.com +1,1389607448,10,Adding an object to an array of objects at constructor,self.java +3,1389605988,15,Batch writing and dynamic vs parametrized SQL through JDBC How well does your database perform,java-persistence-performance.blogspot.ch +0,1389582169,9,Java How to streamline returning hard coded array values,self.java +0,1389567749,9,Issues with a Java Based Program in Windows 8,self.java +18,1389565463,14,What are the best practices and best tools to make unit testing less painful,self.java +0,1389551205,12,Guava is an heavyweight library and I would like this to change,blog.frankel.ch +0,1389538294,5,How to use LMAX Disruptors,vijayrc.com +0,1389537314,9,I need help with J Unit testing on Eclipse,self.java +47,1389536791,3,Apache Commons Imaging,commons.apache.org +16,1389535503,7,ANN Apache Tomcat 7 0 50 released,tomcat.10.x6.nabble.com +0,1389468119,6,For those confusing Javascript with Java,self.java +22,1389456092,9,Java code for Permutation using Steinhaus Johnson Trotter algorithm,programminggeeks.com +0,1389449376,19,Does anyone know of a good website that lists pros and cons of all the data structures in java,self.java +1,1389446219,4,Structorizer Nassi Shneiderman diagram,structorizer.fisch.lu +12,1389446064,13,SubEtha SMTP is an easy to use server side SMTP library for Java,code.google.com +3,1389445817,4,Zopfli bindings for Java,github.com +19,1389444302,6,Jetty 9 1 1 v20140108 Released,jetty.4.x6.nabble.com +0,1389439661,11,15 Reasons Why You Should Use The Grails Web Application Framework,indicthreads.com +6,1389438783,5,Can I prevent auto unboxing,self.java +2,1389438123,14,Develope High Performance Clojure Java Web App On Nginx without Any Java Web Server,self.java +4,1389409648,9,How is switch over string implemented in Java 7,coolcoder.in +15,1389391139,15,Can someone point me in the direction of some well structured well commented github projects,self.java +5,1389386810,8,Tutorial web development with JSF Security Part I,blog.mueller-bruehl.de +0,1389385325,9,What s the easiest quickest way to learn java,self.java +2,1389384661,9,Integrate openCMS 9 w Facelets Back end app how,self.java +19,1389380273,9,Why does Java prohibit static fields in inner classes,self.java +3,1389372992,11,Silent World 2D Minecraft Like Game Made with Java Alpha Version,youtube.com +4,1389369375,9,CMD recognizing java but not recognizing javac Please help,self.java +0,1389360829,5,Getting started with JBoss Fuse,rawlingsj.blogspot.co.uk +4,1389356102,5,Algebraic Data Types for Java,github.com +64,1389341931,19,Why is it called both Java 1 6 and Java 6 Are these two things 100 the same thing,self.java +0,1389331195,3,MAW Text Encoding,self.java +3,1389327122,4,Clear terminal Screen linux,self.java +0,1389319516,2,Coding crazy,self.java +3,1389317097,14,How do you activate OS X s native fullscreen without using the arrow button,self.java +8,1389313043,7,How to make borderless fullscreen in java,self.java +9,1389304888,9,Interesting article about java still being a important skill,readwrite.com +0,1389298238,7,Friends Don t Let Friends Use Eclipse,slideshare.net +3,1389287369,10,Free java source codes to learn from and play with,self.java +3,1389283034,8,DripStat Java Performance Monitoring Service Realtime MMO Game,chrononsystems.com +2,1389272458,6,Java 7u45 Deployment Rule Set Question,self.java +0,1389240454,7,Any recommendations for a full development stack,self.java +3,1389239036,8,Should I still go for the OCPJP 6,self.java +0,1389228242,2,Android browser,self.java +3,1389226694,12,What do you guys think of IDE One online java editor compiler,ideone.com +0,1389225587,3,Spare time project,self.java +8,1389222623,6,Apache Commons Exec 1 2 Released,mail-archives.apache.org +5,1389218748,2,KeyStore Explorer,keystore-explorer.sourceforge.net +14,1389186794,7,Useful JVM Flags Part 8 GC Logging,blog.codecentric.de +0,1389153904,2,Java Training,self.java +0,1389149035,4,Is java still useful,medium.com +0,1389137679,4,java text receiving program,self.java +6,1389130861,13,XFlat Lightweight embedded no sql object DB persisting objects to flat XML files,xflatdb.org +2,1389130598,8,JumpStart tutorial for the future Tapestry 5 4,jumpstart.doublenegative.com.au +1,1389130011,6,Open Wonderland collaborative 3D virtual worlds,openwonderland.org +34,1389129893,8,How do I stop being a Java newbie,self.java +0,1389129441,5,Apache JMeter 2 11 released,mail-archives.apache.org +0,1389129390,5,JOnAS 5 3 0 released,jonas.ow2.org +3,1389128405,4,Need to learn openGL,self.java +2,1389122838,8,Why do JUnit assertions behave like yoda conditions,self.java +1,1389117835,5,What should I improve on,self.java +0,1389110535,8,I m hating hibernate I need something easier,self.java +2,1389105708,12,Capacity Planning memory for real world JVM applications what do you do,waratek.com +45,1389101069,8,What Every Java Developer should know about String,javarevisited.blogspot.sg +2,1389100758,6,Java plugin not working with firefox,self.java +12,1389099003,10,Tips and tricks creating profile specific configuration files with Maven,petrikainulainen.net +11,1389096595,11,How applicable is Java in terms of the future of technology,self.java +0,1389092429,8,what is wrong with this piece of code,self.java +14,1389091940,11,Java bytecode hacking for fun and profit x post r programming,cory.li +0,1389085441,15,Trying to learn Java Stuck on loops Please can someone help me with this question,self.java +0,1389073478,6,Java vs C Memory Management Features,codexpi.com +0,1389070675,14,I am not getting any errors my window opens but no graphics show up,self.java +10,1389070132,9,Making a java game why is my rendering jumpy,self.java +24,1389044991,16,Is it possible to catch an exception then make it just run the try block again,self.java +9,1389037893,4,Multiplayer Game In Java,self.java +0,1389026028,10,Hey there searching for someone to help me out S,self.java +0,1389024218,5,Changing Scenes without using FXML,self.java +0,1389017832,10,Why is tomcat a Webserver and not an Application Server,blog.manupk.com +0,1389016959,11,Boon JSON in five minutes Faster Java JSON parsing and serialization,rick-hightower.blogspot.sg +0,1389012481,11,How to configure an SSL Certificate with Play Framework for https,poornerd.com +6,1389010318,10,Domain Integrity What s the best way to check it,codergears.com +30,1389005821,4,Using jOOQ with Spring,petrikainulainen.net +6,1389000754,13,Android port of the Firebird Jdbc driver Jaybird 2 2 4 is released,firebirdnews.org +2,1388983127,7,Has anyone here used Java Au Naturel,self.java +8,1388973802,13,Do you find Ant or Java s style of to be more natural,selikoff.net +5,1388966328,13,How is Head First Java 2nd Edition for an absolute beginner to Java,self.java +3,1388916676,10,1 Hour Speed Code Attempt Conway s Game of Life,youtube.com +87,1388900938,9,7 Ways to be a Better Programmer in 2014,programming.oreilly.com +2,1388900379,3,Going beyond Swing,self.java +5,1388890310,9,Looking for feedback on a concurrency framework I built,github.com +0,1388859087,15,Could somebody help me modify a simple app to allow for spaces in a String,self.java +12,1388841625,5,Apache Oltu OAuth protocol implementation,oltu.apache.org +4,1388841094,3,XWiki 5 3,xwiki.org +0,1388829597,7,Debug Your java Spring Jsp Programs online,programsji.com +2,1388825204,24,Do oracle make money from maintaining and updating Java If so how do they and why do they Besides a creating a kickass language,self.java +0,1388821795,5,Compile clojure to Objective C,github.com +15,1388789647,11,One of the earliest appearances of Duke Java s mascot 1992,youtu.be +0,1388778476,4,Help with a calculator,self.java +89,1388770249,4,Looking for Java Beginners,self.java +0,1388761422,4,Opinions about Apache Beehive,self.java +0,1388756994,7,Working with OS environment variables in Java,java-only.com +0,1388755952,7,why jdon Jdon is a Domain container,en.jdon.com +3,1388753920,11,JSF usage in the real world List of sites using JSF,wikis.oracle.com +3,1388752562,7,Java Colletions waste statistics from 500 apps,plumbr.eu +23,1388748743,3,Everything about GlassFish,glassfish.zeef.com +47,1388736575,5,Snake in under 30 minutes,youtube.com +12,1388725263,16,All Hibernate Framework topics at a place If you don t find the topic suggest it,hibernate-framework.zeef.com +3,1388702777,6,Question about objects and file reading,self.java +1,1388699628,9,Could somebody help me with using the split method,self.java +33,1388699088,11,auto complete in google and bing faster than eclipse and netbeans,self.java +27,1388681792,6,Apache Commons Lang 3 2 released,mail-archives.apache.org +19,1388680136,5,Embedding Jython in Java Applications,blog.smartbear.com +0,1388676241,4,Immutable Binary Search Trees,self.java +4,1388670287,13,Is an M S worth the time and effort for an aspiring programmer,self.java +0,1388621182,3,Saving Player information,self.java +0,1388601596,5,Java String to Array split,self.java +72,1388598728,9,OpenWorm Building the first digital life form Open source,openworm.org +3,1388598353,5,Text Based Java Noob Help,self.java +0,1388582962,10,Why I no longer contribute to StackOverFlow Not Me OP,michael.richter.name +2,1388515598,11,Program that concatenates images of various resolution into one large wallpaper,self.java +0,1388510752,8,What do lines 4 and 5 do here,self.java +0,1388510219,7,Community Support Open Source Project Repository Hosting,issues.sonatype.org +1,1388500466,5,Problem running compound system commands,self.java +0,1388494041,12,Spring from the Trenches Invoking a Secured Method from a Scheduled Job,petrikainulainen.net +1,1388461275,11,What are some caching options with a low open file footprint,self.java +7,1388455573,12,Emacs eclim users What are your opinions x post from r emacs,self.java +43,1388445887,13,To try catch or not What every Java Developer must know about Exceptions,10kloc.wordpress.com +3,1388436906,6,Netty 4 0 13 Final released,netty.io +3,1388436761,7,HttpComponents Core 4 3 1 GA released,mail-archives.apache.org +1,1388435348,12,How do can I call a function on it s own thread,self.java +2,1388421301,8,Creating Zoomable User Interfaces Programs with Piccolo2D Framework,codejava.net +0,1388415887,5,Let s compare some IDEs,self.java +21,1388415171,6,Apache Ant 1 9 3 Released,mail-archives.apache.org +40,1388414402,5,Pong Speed Code 1 Hour,youtube.com +0,1388388568,7,Whats an easy game program in processing,self.java +16,1388359388,8,Three Cheers for JSF 2 2 Faces Flows,liferay.com +11,1388342880,6,Restful Web Services Netbeans and Glassfish,self.java +14,1388340027,10,Are there disadvantages to using static variables within static methods,self.java +11,1388326903,39,What is wrong with my java install I had to do a system repair and ever since my java is refusing to validate certificates I ve uninstalled and re installed several times any ideas on how to fix it,prntscr.com +10,1388298472,8,Single sign on with Sharepoint WSS 3 0,self.java +14,1388293572,7,BrainFuck in java More info in comments,filedropper.com +1,1388261115,6,How expensive is text file polling,self.java +1,1388258052,12,Java Graph libraries with good user interaction and a save export function,self.java +0,1388257200,9,Books for learning Java coming from a JavaScript background,self.java +62,1388252083,6,Typesafe database interaction with Java 8,benjiweber.co.uk +1,1388250261,3,Regular expression using,self.java +18,1388248442,3,Swing or JavaFX,self.java +0,1388213176,4,help with binary division,self.java +1,1388180297,6,rotating object to face another object,self.java +12,1388171634,11,10 Most Commonly Asked Questions About Multi Threading For Java Developers,efytimes.com +0,1388170619,10,How to use Type safe dependency injection in Spring 3,coolcoder.in +4,1388164416,9,Is Java really a good tool for personal projects,self.java +5,1388162674,9,Test Driven Development TDD Best Practices Using Java Examples,technologyconversations.wordpress.com +0,1388155357,9,About Bauke Scholtz BalusC top SO Java JSF user,bauke-scholtz.zeef.com +1,1388147173,9,A mandatory cast to Object is kind of funny,gist.github.com +58,1388139483,7,Top 10 not so popular Eclipse Shortcuts,summa-tech.com +25,1388111923,6,Which IDE do you prefer Why,self.java +0,1388059942,20,Part 3 of 3 Synopsis of articles amp videos on Performance tuning JVM GC in Java Mechanical Sympathy et al,neomatrix369.wordpress.com +3,1388054440,12,Looking for a tool offering CLI for building testing running Java project,self.java +14,1388016577,20,Which would you recommend for storing things like levels for players YML XML or SQL x post from r bukkit,self.java +3,1387983585,7,Oracle Tunes Java s Internal String Representation,infoq.com +17,1387981704,4,Clarifications on JDBC transaction,self.java +0,1387968854,5,Building a jar file HELP,self.java +3,1387966706,12,Need some help thinking through the architecture of this simple ish project,self.java +16,1387953109,4,Java Graphics and GUI,self.java +6,1387951707,12,Books and other resources for learning to use Java for interactive graphics,self.java +0,1387924762,15,How to create using Eclipse JavaDocs that looks good My current approach is not working,blog.diniscruz.com +13,1387920314,13,What is the difference between one line if statements and regular if statements,self.java +5,1387900403,8,The OCJP exam scoring retaking the test etc,self.java +7,1387899795,5,Questions about the OCJP exam,self.java +15,1387851294,11,Looking to start Learning Java what book s should I get,self.java +2,1387836459,17,Is there a predefined method for checking if a variable value contains a particular character or integer,self.java +10,1387833147,13,New to Java What are best practice for XML building and query building,self.java +2,1387830491,9,Something inherently wrong with how I m doing this,self.java +15,1387824857,6,Why must interface methods be public,self.java +6,1387821624,2,Layout help,self.java +5,1387808365,10,Java 8 Tutorials Resource and Books to learn Lambda Experssions,javarevisited.blogspot.sg +0,1387807698,5,What is up with else,self.java +4,1387807519,6,Orika Spring Framework easy bean mapping,kenblair.net +64,1387782603,4,Java Programming Timelapse Pong,youtube.com +11,1387750650,11,Why are all the JavaFX built in layout managers so bad,self.java +0,1387747664,6,Netbeans Windows Clean and Build problems,self.java +3,1387731010,15,Complete wipe of computer what do you suggest to have downloaded when start off fresh,self.java +0,1387717574,21,Trying to add an EVIL bit to java lang String aka Java Taint Flag and the first one has been set,blog.diniscruz.com +33,1387714859,8,JBoss AS 8 WildFly 8 CR1 is released,wildfly.org +0,1387713975,9,A blog post about creating Spring beans for tests,self.java +1,1387711472,6,Newbie question about strings and syntax,self.java +8,1387711037,7,Be a better Developer An Annotation Nightmare,beabetterdeveloper.com +2,1387707034,6,Need help with handling race conditions,self.java +0,1387696487,10,What is Java History of Java how it all began,javatalk.org +0,1387696427,12,Is it possible to run use Eclipse IDE online browser using RAP,self.java +0,1387694131,5,Partition a List in Java,baeldung.com +29,1387682725,12,Java Developers of Reddit are there any other programming forums you use,self.java +2,1387680823,18,XStream Remote Code Execution exploit on code from Standard way to serialize and deserialize Objects with XStream article,blog.diniscruz.com +11,1387667649,6,Why does my thread close automatically,self.java +0,1387643306,5,Ideas for a java project,self.java +4,1387627438,9,Any java conf s like javaone but less expensive,self.java +40,1387605861,10,Best way to expand java learning and get some skills,self.java +2,1387592654,4,GUI and other things,self.java +21,1387560484,16,New to Java working through short exercises Could someone please explain a result of this code,self.java +14,1387552956,5,Java Object Mapping with Orika,viaboxxsystems.de +11,1387548537,5,RAP 2 2 is available,eclipsesource.com +9,1387548501,4,Beginner Question about constructors,self.java +12,1387501275,3,JMS and JBoss,self.java +2,1387497946,20,Part 2 of 3 Synopsis of articles amp videos on Performance tuning JVM GC in Java Mechanical Sympathy et al,neomatrix369.wordpress.com +3,1387495678,14,What is the best book to get my dad for beginning to learn java,self.java +20,1387493859,11,What is a feature that the Java Standard Library desperately needs,self.java +0,1387493805,5,Help With Simple File Input,self.java +19,1387492223,7,Apache Sirona simple but extensible monitoring solution,sirona.incubator.apache.org +9,1387490864,10,Inter thread communications in Java at the speed of light,infoq.com +6,1387490460,9,Apache Mavibot 1 0 0 M3 released MVCC BTree,directory.apache.org +8,1387463371,6,Write concurrent Java tests with HavaRunne,lauri.lehmijoki.net +12,1387459733,6,RMI usage triggering regular Full GC,plumbr.eu +0,1387451019,6,AND and OR Operators in Java,self.java +0,1387446905,7,Banking system using hashMap and linked list,self.java +0,1387417329,13,Will learning JavaScript online hurt me from learning Java from a college course,self.java +1,1387404106,20,Part 1 of 3 Synopsis of articles amp videos on Performance tuning JVM GC in Java Mechanical Sympathy et al,neomatrix369.wordpress.com +1,1387389554,4,Java WEB and git,self.java +7,1387383487,10,A new open source general purpose data storage library xdata,github.com +3,1387380596,10,Attack of the logs Consider building a smarter log handler,zeroturnaround.com +8,1387379226,16,Executing Eclipse Plugin JUnit tests in real time without needing to restart Eclipse with no mocking,blog.diniscruz.com +0,1387375936,6,Online texture packer tool for devs,tpacker.com +2,1387369459,7,Yes you can do that in Maven,adamldavis.com +1,1387366205,21,Can anyone help me figure out how to check if an input is a number if the input is a String,self.java +0,1387361087,3,Chess Piece Help,self.java +40,1387338451,8,Coffee With Dessert Java And The Raspberry Pi,m.electronicdesign.com +10,1387308397,17,Does anyone know of a library framework that allows you to get a screengrab of a webpage,self.java +0,1387289961,4,JavaScript for Java developers,schneide.wordpress.com +35,1387272886,9,Hibernate 4 3 0 released JPA 2 1 certified,in.relation.to +7,1387237547,12,How would I go about creating an executable file for my program,self.java +3,1387160031,13,Eclipse and JDK trouble First couldn t find it now exit code 13,self.java +1,1387129508,15,Calculating probability from parameter estimates from a regression equation x post from learnprogramming and stackoverflow,self.java +66,1387118518,6,5 Facts about the Java String,codeproject.com +1,1387110785,8,Exercises and answers for threads synchronization and concurrency,self.java +7,1387079600,14,What are the best places to get practice program ideas X Post r learnjava,self.java +5,1387064908,7,Tutorial Simple HTTP Request in Android Java,droidstack.com +0,1387057090,5,Help creating Hashmap of Arraylists,self.java +6,1387055839,14,Implementing a HashMap class with generics Getting value type V from solely an Object,self.java +5,1387052085,9,What are some of the pitfalls of the JVM,self.java +19,1387040571,14,Programmers of this subreddit what s the best way for me to learn Java,self.java +0,1386994862,12,An error occurred while processing your request Reference 97 b147da3f 1386994777 1beed97d,java.com +4,1386993376,7,Adding and Removing MouseListeners from a class,self.java +7,1386974728,3,Noob Android Development,self.java +26,1386964869,7,About PayPal s Node vs Java fight,developer-blog.cloudbees.com +27,1386958824,12,What s the better career choice Java EE 7 or Spring 4,self.java +4,1386951968,12,Broadleaf Continues to Choose The Spring Framework over EJB 3 Sept 2012,broadleafcommerce.com +7,1386947786,7,Benchmarking SPSC concurrent queues latency using JMH,psy-lob-saw.blogspot.com +50,1386935856,8,Spring Java framework springs forward despite Oracle challenge,m.infoworld.com +6,1386906858,5,Welcome to the new JavaWorld,javaworld.com +1,1386903077,3,Simulating in Java,self.java +2,1386902379,6,Having a hard time with recursion,self.java +0,1386895565,8,Need help returning lowest date in Java 1,self.java +1,1386891813,15,Fix monitor contention when parsing doubles due to a static synchronized method using bootclasspath p,github.com +4,1386888187,6,Commons BeanUtils 1 9 0 Released,mail-archives.apache.org +32,1386881083,11,Spring 4 0 GA released today time to experiment with it,spring.io +18,1386868054,11,Anyone know how to have java read the crontab in linux,self.java +9,1386861709,18,Find out how to Virtualize Java and the Challenges faced compared to the virtualization of other machine specifications,waratek.com +2,1386858128,6,Strategies for managing a large image,self.java +5,1386852001,3,Measure not guess,javaadvent.com +27,1386833095,8,Java Advent Calendar Anatomy of a Java Decompiler,javaadvent.com +0,1386829723,6,How to use an API question,self.java +4,1386823402,10,Using invoke dynamic to teach the JVM a new language,jnthn.net +2,1386815811,6,java generics extending multiple class interfaces,self.java +40,1386796442,11,Where to go to keep up with new developments in Java,self.java +1,1386794965,7,Javadoc creation gives 9 errors line Help,self.java +1,1386783186,11,Java Programmers One month head start enough to help a noob,self.java +3,1386772633,8,Enable CDI when bundling an overriding JSF version,weblogs.java.net +0,1386771571,5,Learning Apache Maven 3 Video,self.java +7,1386759187,7,Struts 2 3 16 GA release available,struts.apache.org +0,1386737017,13,What s the black console window that everyone seems to use to code,self.java +4,1386714088,7,Confused about a review question final tomorrow,self.java +14,1386701674,6,Java 8 for the Really Impatient,weblogs.java.net +0,1386699250,12,Apples and Oranges The Highlights of Eclipse IntelliJ IDEA and NetBeans IDE,parleys.com +0,1386698738,10,Java Only Working with basic file attributes in Java 7,java-only.com +1,1386697259,10,A Lesser Known Java 8 Feature Generalized Target Type Inference,java.dzone.com +52,1386688603,7,Jetbrains changes IntelliJ IDEA Personal Licensing Model,blog.jetbrains.com +1,1386671683,7,Time Overlap Check in Java Using BitSet,technoesis.net +0,1386664500,8,Help with front end wev dev in Java,self.java +2,1386657570,9,Where can I find a general tutorial on eclipse,self.java +54,1386626270,6,Apache Commons Collections 4 0 released,mail-archives.apache.org +10,1386626222,6,Apache Commons Pool 2 0 released,mail-archives.apache.org +6,1386625789,2,Java RMI,self.java +3,1386624915,9,Private constructor issue with Serialization of third party class,self.java +1,1386623995,6,What are the commonly expected Methods,self.java +9,1386622956,8,tempFile delete returns true but the files remain,self.java +4,1386605663,10,Addison Wesley Signature Series sale this week 50 off ebooks,informit.com +17,1386596292,10,Alexey Ragozin HotSpot JVM garbage collection options cheat sheet v3,blog.ragozin.info +6,1386593773,5,Framework for GANTT like charts,self.java +16,1386567643,15,Open source project plans to fork chromium bring java vm to the browser client side,upliink.aero +2,1386567432,15,The Firebird JDBC team is happy to announce the release of Jaybird 2 2 4,firebirdnews.org +5,1386549058,5,App to code on Android,self.java +0,1386541683,19,JAVA EXPERTS Help me kind of sort of finagle my FINAL EXAM for my intro to JAVA college course,self.java +23,1386521474,17,An overview of Apache Karaf a lightweight OSGi container by introducing its main components and overall architecture,developmentor.blogspot.com +4,1386503381,6,GC Tuning With Intel Performance Counters,javaadvent.com +27,1386490991,9,A print method that provides it source code line,self.java +0,1386439725,6,A month of Apache Tapestry 5,indiegogo.com +27,1386422984,5,Bouncy Castle Release 1 50,bouncycastle.org +15,1386422727,6,Spring WebSockets and Jetty 9 1,java.dzone.com +0,1386396433,52,I am really finding it difficult to understand Command and Observer Design Pattern Can someone explain me the complete flow with an example from end to end i am referring the link below but don t get it why we have so many classes and what is role of each in practical,newthinktank.com +0,1386376602,6,ELI5 Difference between classes and interfaces,self.java +0,1386357040,4,Connect 4 computer AI,self.java +0,1386353009,3,Java vs C,self.java +6,1386348605,6,Learning Java quick about IDE s,self.java +3,1386347380,19,Is 8 3 x 2 3 Math pow 8 3 java lang Math sqrt x 2 3 in Java,self.java +5,1386340923,4,Good JavaFX 2 layout,self.java +2,1386329475,8,Java template engine like Razor and Play templates,rythmengine.org +48,1386324008,3,JHipster home page,jhipster.github.io +0,1386312521,12,What is Java History of Java how it all began Java Talk,javatalk.org +8,1386306827,3,Semantic logging libraries,self.java +1,1386299871,3,Regarding Code Efficency,self.java +3,1386293491,3,R java help,self.java +53,1386282589,27,InnerBuilder an IntelliJ IDEA plugin that adds a Builder action to the Generate menu Alt Insert which generates an inner builder class as described in Effective Java,github.com +2,1386279171,18,Find optimal combination of flights to get from one place to another using a graph xpost r programminghelp,self.java +3,1386273527,4,How to test null,self.java +5,1386272504,11,Spring Why can t you just give me the Jar files,self.java +0,1386271119,6,Help with JCreator 5 00 Centering,self.java +2,1386259263,10,How can I hide INFO messages from org apache sshd,self.java +0,1386255923,6,Scala 1 Would Not Program Again,overwatering.org +14,1386253863,15,What is the Java server side response to HTML5 and jQuery like client side frameworks,self.java +0,1386244531,9,BEST JAVA IDE for JAVA Programming Language Java Talk,javatalk.org +0,1386241792,4,Why i love StackOverflow,stackoverflow.com +4,1386212395,2,GUI applications,self.java +2,1386210139,9,Trouble with eclipse swt library on 32 bit JVM,self.java +1,1386208678,12,Help with Creating a My Anime List application for a final project,self.java +3,1386200651,3,preprocessing java ftw,gist.github.com +35,1386175431,5,Core Java 7 Change Log,java-performance.info +6,1386169280,9,Trisha Gee Design is a process not an artefact,jaxenter.com +1,1386154254,6,Hierarchical finite state machine for Java,github.com +2,1386147459,7,Java2Days 2013 Modern workflows for JavaScript integration,blog.mitemitreski.com +48,1386140075,9,Should Swing be deprecated to force use of JavaFX,weblogs.java.net +0,1386103389,7,Who uses null values in a list,self.java +0,1386096747,21,What is the correct way to use if statements i e How does having two else statements not overwrite one another,self.java +5,1386093370,4,Java compiler in java,self.java +0,1386090121,10,How to output the SUM of your name in Java,self.java +74,1386084025,3,IntelliJ IDEA 13,jetbrains.com +2,1386044537,15,Have you used any open source Java e commerce software Which one would you recommend,self.java +3,1386037900,27,Help I m making a class that uses different sorting algorithms on an array but the original array changes and ruins the sorting for the subsequent algorithms,self.java +0,1386036860,4,Tic tac toe GUI,self.java +19,1386018681,10,Best practice for many quick and short lived TCP Sockets,self.java +6,1386018166,10,A lite MSAccess mdb export tool Jackess Wrapper pure Java,github.com +1,1386014519,11,How to hide INFO level log output from org apache ftpserver,self.java +25,1386006389,4,Good algorithms book suggestions,self.java +1,1386005948,13,Create a simple RESTful service with vert x 2 0 RxJava and mongoDB,smartjava.org +0,1386004565,7,Help with making enemies disappear Android Game,self.java +3,1385999600,5,Java Game with Window Builder,self.java +43,1385996202,4,Current Java Web Stacks,self.java +13,1385981291,4,Collection of Hibernate links,hibernate-framework.zeef.com +6,1385963953,10,Any books you reccomend for a next to complete beginner,self.java +14,1385920677,6,Solr as a Spring Data module,blog.frankel.ch +0,1385916023,2,Java AutoUpdater,self.java +2,1385855237,11,x post javafx adding a date to a table via observablelist,self.java +2,1385850095,8,Can someone explain groupSum from CodingBat to me,self.java +8,1385842196,18,Do you always call certain variables by the same name If so what names do you normally use,self.java +325,1385807026,7,IntelliJ really has some hard working inspections,imgur.com +16,1385733045,6,Getting started with Spring Data Solr,mscharhag.com +0,1385731959,6,I have a problem with Java,self.java +0,1385717985,6,How to write Production quality code,javarevisited.blogspot.sg +6,1385693832,6,Interesting easy to learn java libraries,self.java +0,1385682982,5,Need help hashsets and deduplication,self.java +3,1385678063,10,Implementing the in Mapper Combiner for Performance Gains in Hadoop,dbtsai.com +2,1385673774,3,Unreachable statement Why,self.java +65,1385655184,9,Paypal Switches from Java to JavaScript for Production Applications,paypal-engineering.com +0,1385649681,10,Best Countries to Work and Live in as a Developer,blog.splinter.me +3,1385648614,13,Regex Help How to split a string with multiple back to back delimiters,self.java +11,1385646787,8,View UMLet diagrams inside GitHub with Chrome Extension,chrome.google.com +0,1385630627,11,I could use some help with a java problem for homework,self.java +3,1385627886,16,Fetching website s source code after x seconds page loads ie chat using JSoup or other,self.java +0,1385598095,5,I keep getting this error,self.java +4,1385592349,6,Am I marketable with the JVM,self.java +5,1385590121,6,Good libraries to get exposed to,self.java +14,1385588916,12,Java EE examples amp tests now a top level org on GitHub,blog.arungupta.me +3,1385585668,6,Strange String issues in JVM languages,sites.google.com +0,1385578899,13,Would 3 x 2 3 2 3 x 2 3 2 in java,self.java +4,1385575845,10,How do I register scp as a valid URL protocol,self.java +0,1385574924,8,How does this part of the code work,self.java +0,1385551732,3,coding the IoT,blogs.oracle.com +5,1385550507,15,GitHub s 10 000 most Popular Java Projects Here are The Top Libraries They Use,takipiblog.com +0,1385530864,17,Jdon is a java opensource reactive framework use to build your Domain Driven Design CQRS EventSourcing applications,github.com +0,1385526377,7,Quick question about creating new class types,self.java +0,1385514813,4,Question Answer MIDTERM EXAM,youtube.com +75,1385508694,7,What DON T you like about Java,self.java +0,1385494292,7,Help me printing out a directory tree,self.java +3,1385491168,4,Catching up Java knowledge,self.java +0,1385475404,15,Can somebody please help me with Math pow and specifically raising to the power of,self.java +4,1385470437,6,Time intervals and repetitions with Java,self.java +0,1385458316,7,Just got an interview for Java Developer,self.java +5,1385437851,6,Pseudo random number function in Java,self.java +1,1385413719,13,Teaching myself Java Having issues de serializing an array from a file Java,self.java +0,1385401167,6,What is giving me these errors,i.imgur.com +1,1385392870,5,Java SE 7 Programmer I,self.java +11,1385387611,6,6 Differences between Java and Scala,javarevisited.blogspot.com +29,1385380964,8,AOT compiler Excelsior JET pay what you can,self.java +0,1385373341,1,Hybernate,self.java +9,1385350694,7,YAML JSON Parsing for settings configuration file,self.java +4,1385349060,6,Help with a random number generator,self.java +9,1385331187,6,Making a round grid world help,self.java +11,1385307344,7,Who of you uses JNI and why,self.java +18,1385305971,4,Spreading some JavaFX love,blog.frankel.ch +22,1385289110,7,Is Effective Java 1st Edition still relevant,self.java +0,1385267975,5,Need help with a program,self.java +40,1385267931,6,Google Guava s Bloom Filter Tutorial,codingjunkie.net +3,1385267791,16,Interesting Woodstox STAX Tutorial Including Comparison With DOM Based XML Parser With Full Sample Source Code,developerfusion.com +1,1385261278,13,Comparing the Lotus Notes Domino and Sharepoint as platforms for Rapid Application Development,self.java +0,1385219682,11,Changes to String internal representation made in Java 1 7 0_06,java-performance.info +0,1385187442,5,Echoing all values in bean,self.java +2,1385178060,6,Asynchronous Java database and Play Framework,self.java +0,1385155219,7,Can A Java Class Constructor Be Private,sribasu.com +1,1385153592,9,Implementing a DFA in Java without using reg expression,self.java +6,1385147767,23,Looking to develop for small businesses such as trading companies and retail businesses Wondering how I should prepare myself More in the description,self.java +11,1385136179,4,International Base64 Encoding Confusion,self.java +31,1385107150,9,Has anybody been using the JDK 8 Early Release,self.java +0,1385106328,12,Is there a Java library for interacting with the Ebay Shopping API,self.java +5,1385100494,5,Learning Java coming from Python,self.java +0,1385094710,19,Hopefully this is a simple question how do I update components in a JPanel instead of add remove them,self.java +0,1385077863,13,If statements not registering as false when they should am I being stupid,self.java +0,1385070176,7,I need help for my java project,self.java +0,1385064766,10,Need help finding the correct command for a Modding Project,self.java +0,1385063537,12,Lightweight HTTP FTP servers for use with JUnit tests and ClassLoader files,self.java +28,1385062802,6,Pretty good java 8 lambda tutorial,dreamsyssoft.com +0,1385060115,4,New free dns service,self.java +32,1385036948,7,Apache redraws battle lines against Oracle licensing,jaxenter.com +53,1385030691,9,New backdoor worm found attacking websites running Apache Tomcat,arstechnica.com +0,1385019559,4,I am Learning Java,self.java +0,1385007551,8,Need help deciding on a simple ish project,self.java +0,1385004650,6,Need help with the Point class,self.java +0,1385001271,8,Need help converting json into ArrayList using GSON,self.java +0,1384993377,6,Formatting a Gui interface in java,self.java +9,1384956409,11,Day 22 Developing Single Page Applications with Spring MongoDB and AngularJS,openshift.com +0,1384950353,10,Cache vs In Memory Data Grid vs In Memory Database,dzone.com +66,1384940484,9,Poison Null Byte and The Importance of Security Updates,blog.c2b2.co.uk +0,1384929058,8,QUESTION What JVM languages has the best ecosystem,self.java +0,1384923792,30,Please help My least common multiple method seems to be missing a return statement but I m sure I ve put one Does anyone know what I m doing wrong,self.java +0,1384916193,5,Discovering Corporate Open Source Contributions,garysieling.com +0,1384911306,7,Removing duplicates from a double linked list,self.java +5,1384907812,5,Need help with strange SSLHandshakeException,self.java +2,1384905926,6,Best performance monitoring tools for Tomcat,self.java +3,1384897513,6,Having trouble with random Integer Arrays,self.java +0,1384889778,10,Is it possible to see the code behind an app,self.java +0,1384886637,9,Got a problem with my bouncing ball help Please,self.java +0,1384883213,6,jd gui best Java Decompiler ever,self.java +8,1384880127,8,Questions about Java SE 7 Programmer I Cert,self.java +0,1384869957,2,Spring Loaded,self.java +10,1384869183,7,Trove High Performance Collection Library LGPL License,trove.starlight-systems.com +37,1384868777,7,Memory Efficient Java Tutorial Direct PDF Link,cs.virginia.edu +27,1384865079,4,Profiling and memory handling,self.java +0,1384841995,27,My Friend says my code is really messy what do you guys think and how could i improve it to make it easier to read for people,pastebin.com +0,1384830496,10,ELI5 how to impliment persistance on a simple java program,self.java +5,1384815996,7,Notes from Java EE meetup at Devoxx,blog.arungupta.me +0,1384787196,7,JAVA Tutorials and Example with Source Code,javatutorialsource.blogspot.com +16,1384786261,10,JRE 7 is the only thing in my path variable,self.java +4,1384786187,15,If anyone is familiar with the JDBM BTree interface I could use a little help,self.java +0,1384783698,12,How to use Intellij idea Live templates to make your life easy,lankavitharana.blogspot.sg +0,1384776358,6,Need help reading from txt file,self.java +0,1384766087,11,Having some issues with Java Homework could really use some help,self.java +0,1384755904,12,Having an arrayindexoutofbounds problem in eclipse not sure how to solve it,self.java +0,1384738360,21,Need help writing a method that will take in an integer parameter and return an integer array filled with random numbers,self.java +5,1384737489,7,How do i make my program standalone,self.java +38,1384733631,22,All java based games minecraft 8bit mmo etc have been displaying font this way What happened and how do I fix it,i.imgur.com +4,1384731102,7,What is the purpose of an Interface,self.java +0,1384728318,11,I need some help understanding the problem I need to build,self.java +0,1384723016,5,Allow user to name object,self.java +0,1384716554,8,Is setting the classpath as a property portable,self.java +0,1384713530,13,Using JSF 2 2 features to develop ajax scrollable lazy loading data table,dwuysan.wordpress.com +0,1384704485,6,Allow user to set object name,self.java +4,1384693774,7,Turning Assertions Into a Domain Specific Language,petrikainulainen.net +21,1384687844,15,Java 8 Lambda Expressions and the Psychology of the Masters of the Universe devoxx style,ileriseviye.wordpress.com +7,1384665415,8,Another day another Java menace Ceylon has landed,jaxenter.com +32,1384638589,8,When to use Java and when to not,self.java +0,1384627118,37,Hey guys so Im trying to make a recursive method that finds the minimum value in an array and returns it But im having some trouble with my code When executing it just returns 0 Any suggestions,self.java +36,1384622389,11,R in Java FastR an implementation of the R language scribd,oracle.com +10,1384609153,10,Can java be used to make a video editor app,self.java +7,1384583031,8,Day 18 BoilerPipe Article Extraction for Java Developers,openshift.com +0,1384579111,3,3d game tutorial,self.java +3,1384561774,7,What Java EE Book would you recommend,self.java +22,1384543698,12,Ents a new Entity Component Model View Controller game library for Java,self.java +0,1384543173,9,Looking for some starter projects to help me learn,self.java +11,1384540643,8,Get a REPL On Your Current Java Project,joeygibson.com +23,1384532649,31,I just posted this to a request for advice on becoming a Java developer in r Austin anything I missed or messed up I don t want to lead anyone astray,self.java +18,1384525177,17,Juergen Hoeller Co founder of the Spring Framework Spring eXchange Keynote Spring 4 on Java 8 Video,skillsmatter.com +0,1384521576,4,Java Application with DB,self.java +1,1384501961,13,Should I use an embedded web server or deploy to a standalone server,self.java +4,1384498002,17,Day 17 JBoss Forge Build and Deploy Java EE 6 AngularJS Applications using JBoss Forge and OpenShift,openshift.com +18,1384464879,14,Google open sourced AutoValue an immutable value type code generation for Java 1 6,docs.google.com +0,1384452140,14,Java beginner stuck amp feel like I m so close to figuring it out,self.java +38,1384450454,8,Create charts in Excel using Java Apache POI,programming-free.com +9,1384440283,32,My company just announced a 5 3M investment We use Java machine learning and game theory to predict what will interest people We re based in Austin TX and we re hiring,self.java +0,1384434745,9,Need help with coding on Khan Academy Java base,self.java +34,1384419158,5,Ceylon 1 0 0 released,ceylon-lang.org +2,1384408405,6,JavaFX Problem with Oracle FXML Example,self.java +7,1384391399,7,Difference between Static and Non Static Methods,self.java +0,1384375593,12,Easy way to integrate SPICE circuit simulator into JAVA without OS dependencies,self.java +38,1384374638,9,Repository of Java 8 source code examples for learning,github.com +6,1384371831,10,My first major accomplishment been coding for about three months,self.java +14,1384354385,21,Can JavaFX be compiled to HTML5 JS Or is it a competitor to Flash in an era where Flash is dying,self.java +0,1384354212,5,import awt is not working,self.java +0,1384351224,23,Mac using 10 6 8 seems unable to use Java in both Chrome amp Safari but insists that it is up to date,self.java +0,1384342031,11,Newbie seeking help with probably a simple problem unique to me,self.java +22,1384337960,14,First OpenJDK OpenJFX 8 App finally found its way to the Mac App Store,mihosoft.eu +4,1384325213,11,So i finished my 1st java program that actual does something,self.java +17,1384321620,5,IntelliJ 13 preview now available,blog.jetbrains.com +1,1384309677,6,Java tool to browse Windows shares,self.java +0,1384302972,9,Help with a type of syntax for arrays substrings,self.java +8,1384298033,5,syso like shortcuts on Eclipse,self.java +6,1384291113,21,Is it bad practice to use interfaces as a way to store constants even if it s for only two classes,self.java +0,1384290259,13,Minecraft Make Your Own Mod Part 1 Introduction and Java Setup How To,youtube.com +5,1384289787,6,What s up with the Factories,self.java +0,1384287994,5,Java Algorithms question need help,self.java +0,1384284530,7,Adding a jPanel GUI to a jPanel,self.java +4,1384272663,5,How does Math random work,self.java +4,1384269204,6,Lambdas for Fluent and Stable APIs,blog.thesoftwarecraft.com +79,1384250464,9,AMD charts a path to Java on the GPU,semiaccurate.com +0,1384243005,4,Need help ASAP please,self.java +4,1384234547,9,Day 13 Dropwizard The Awesome Java REST Server Stack,openshift.com +0,1384226318,3,User Defined Exceptions,self.java +10,1384217510,15,I am stuck in programming I really don t know where to go from here,self.java +14,1384214892,42,I need help understanding what exactly the spring framework is used for I have read about it a bit and I understand the concepts of AOP and IOC But a little more explanation with respect to real world examples would be awesome,self.java +6,1384202100,5,Code convention for spring annotations,self.java +0,1384193696,10,Can t figure out why java keeps looping through method,self.java +22,1384186371,9,Good example of extremely well documented and clear class,developer.android.com +8,1384158827,13,BQueue A Single Producer Consumer queue alternative interesting near empty full queue handling,psy-lob-saw.blogspot.com +16,1384152677,8,Day 12 OpenCV Face Detection for Java Developers,openshift.com +0,1384146827,7,Where should I start my unit tests,self.java +0,1384140170,6,SwitchMap error after decompiling jar file,stackoverflow.com +43,1384136855,20,Forbes wrote an article about r java and u kristler after his shining example of the Socratic method of teaching,forbes.com +1,1384128536,7,Creating an ssl connection using a p12,self.java +53,1384126877,16,Do you think Java will still be a dominant programming language in a decade In two,self.java +0,1384124919,2,Swing help,self.java +1,1384120187,3,Question about serializable,self.java +5,1384119949,7,Book review Getting Started with Google Guava,blog.mitemitreski.com +5,1384114132,8,Desktop app that connects with a weather site,self.java +0,1384111864,3,10 method program,self.java +10,1384110313,4,IBM witdraws Geronimo support,www-01.ibm.com +32,1384089425,3,Strange Graphics Bug,imgur.com +15,1384052585,3,Java to Arduino,self.java +5,1384034920,7,Create a JSF flow programmatically using annotations,weblogs.java.net +1,1384014409,9,A Java geek Integrate Spring JavaConfig with legacy configuration,blog.frankel.ch +25,1384013214,6,Learning the history of Java Platform,self.java +0,1383996724,8,Need help with my first simple java program,self.java +0,1383982538,6,Need help installing and running java,self.java +0,1383979967,27,Taking a CS class made a program in which you play rock paper scissors vs the computer How d I do and what improvements could I make,self.java +2,1383979452,9,Day 11 AeroGear Push Server Push Notifications Made Easy,openshift.com +0,1383974356,12,Help with a normal and reverse binary search on an array list,self.java +0,1383959913,6,Help with this simple GPA Calculator,self.java +0,1383946836,17,Q What is the simplest way to save High Score to a file and read it later,self.java +0,1383941796,10,Step by step install Apache Tomcat in Amazon EC2 instance,excelsior-usa.com +4,1383940919,5,Suggestions for good Java resources,self.java +0,1383940162,17,Does there exist an automatic HTML table generator that does the row counting wrapping logic for you,self.java +0,1383938950,3,Web Application Container,self.java +2,1383905286,9,How to gather information to support remote J2EE applications,self.java +0,1383880969,9,Help with basic Java programming in Dr Java Urgent,self.java +0,1383880876,10,Good and bad books for OCAJP 7 Exam 1Z0 803,codejava.net +0,1383872839,8,Help with a little program editing amp compiling,self.java +0,1383871491,11,How can I import my own graphics to a Snake game,self.java +0,1383870633,5,Regex and print formatting notation,self.java +0,1383867695,11,Rounding up or down based on which perfect square is closer,self.java +0,1383866084,11,Problems with compressor code for robotics don t really know java,self.java +0,1383862230,6,Having trouble with arrays university assignment,self.java +0,1383848048,10,New to Java trying to accomplish a simple switch code,self.java +12,1383843192,9,R I P GlassFish Thanks for all the fish,blog.eisele.net +9,1383840226,7,Trouble connecting to MS SQL Server Database,i.imgur.com +80,1383838809,5,5 Useful Hidden Eclipse Features,tech.pro +4,1383816348,2,Stateless JSF,weblogs.java.net +3,1383804180,9,How to identify AWT component names in running applet,self.java +628,1383798569,9,Changing the color of a bug based on direction,self.java +3,1383771806,7,SAP Integration with Red Hat JBoss Technologies,de.slideshare.net +0,1383766365,5,New to Java need help,self.java +0,1383756292,4,Sin x Program homework,self.java +0,1383752328,3,GUI help netbeans,self.java +9,1383749731,6,Connecting to Eclipse Kepler OSGi Console,digizol.com +4,1383746631,7,What does read timeout means in URLConnection,self.java +0,1383733420,3,Switch Case help,self.java +15,1383731654,16,Q How are real time updates achieved on a HTML front end with an MVC backend,self.java +7,1383703951,9,Help With Managed Images and OSX Xpost r javagamedev,self.java +18,1383682404,14,My company is going to pay for my Java courses Which is your favorite,self.java +2,1383671891,16,Does anyone have any experience invoking TestNG programmatically within java running only a single test method,self.java +2,1383660427,11,What is your go to resource for java tuts news etc,self.java +0,1383654527,9,Help with Java Not getting the answers I need,self.java +2,1383635072,8,Java toString the Program Logic vs Debug Dilemma,flowstopper.org +0,1383624968,7,How to install javadb in 64bit OS,self.java +0,1383616301,5,Estudo de Java Para iniciantes,arruda.blog.br +15,1383614895,3,Stateful JAX RS,self.java +29,1383590512,8,No more commercial support from Oracle for GlassFish,blogs.oracle.com +9,1383588541,13,Is there anyway to re inject data into a method for rapid testing,self.java +26,1383584236,14,How can I scan my java code for fields yet to be javadoc ed,self.java +0,1383582982,2,Pastebin Scraper,self.java +2,1383579738,11,Day 6 Grails Rapid JVM Web Development with Grails And OpenShift,whyjava.wordpress.com +1,1383575847,9,Desktop Java Server Side Java Embedded Java Informal Poll,self.java +10,1383557877,6,Spring Framework 4 0 RC1 released,spring.io +0,1383557180,4,My case against autowiring,blog.frankel.ch +46,1383538245,10,HikariCP New JDBC Connection Pool blows doors off the competition,brettwooldridge.github.io +1,1383526335,6,Accessing localhost SQL database with Netbeans,self.java +18,1383520538,10,The difference between doing a job and getting a job,self.java +11,1383510992,6,WebLogic 12c Does WebSockets Getting Started,blog.c2b2.co.uk +8,1383490821,16,Trying to improve my best practices Care to critique a short two classes program I wrote,self.java +9,1383484747,11,Firebird Java driver Jaybird 2 3 will become Jaybird 3 0,firebirdnews.org +1,1383424031,8,Java 8 Lambdas in Action First chapter free,manning.com +4,1383422465,7,Is anyone here developing for Adobe CQ5,self.java +21,1383412165,5,Java tutorial for beginners Introduction,javatutorialbeginner.blogspot.com +0,1383408121,3,Java help requested,imgur.com +0,1383385319,9,Need help with a CS 110 Connect 4 project,self.java +0,1383350694,8,Java noob help me improve this code please,self.java +0,1383343644,5,Migrate your ManagedProperty to annotations,weblogs.java.net +0,1383340513,6,How would I search for this,self.java +0,1383334495,2,Java tutorial,self.java +0,1383333841,2,Learning BIRT,self.java +0,1383314960,8,Help for me and those mobile java programmers,self.java +0,1383312974,6,D mystifier les iteratees avec Java,infoq.com +9,1383309659,7,Discovering Senior Developers From Source Code History,garysieling.com +0,1383298167,13,How to specify null value in MS Access through the JDBC ODBC bridge,stackoverflow.com +107,1383292435,13,Watch out for these 10 common pitfalls of experienced Java developers amp architects,zeroturnaround.com +2,1383279481,10,Starting a new Java app with Spring MVC Stop me,self.java +7,1383276096,7,0 4 0 9 0 36000000000000004 Why,self.java +0,1383260549,30,I created a JavaFX bootstrap program It uses the MVP IoC amp Command patterns Please fork it Contribute to it Criticize it Rip it a new one Make it better,github.com +0,1383259316,34,Im reviewing for an exam and i need tips on writing a recursive function that has one parameter that prints x amount of dots followed by x amount asterisks while not using any loops,self.java +1,1383259118,10,Programming Help How do I get the motherboard to beep,self.java +0,1383253641,29,Assuming a copy takes longer than a comparison why is it faster to delete an item with a certain key from a linked list than from an unsorted array,self.java +4,1383251777,8,Is the iText license safe for government work,self.java +2,1383251169,12,Is there free online tutorial style documentation for either PDFBox or iText,self.java +6,1383236109,5,Less verbose alternative to Maven,self.java +12,1383223742,8,How to cache component rendering in JSF example,byteslounge.com +0,1383217800,4,Help on Java JSF,self.java +8,1383212537,8,Migrate your JSF ManagedBean to CDI Named annotations,weblogs.java.net +0,1383195125,10,Scanner based program to remove comments trying to use useDelimiter,self.java +0,1383180485,6,Java redirect to download updated plugin,self.java +6,1383176081,10,Project JAdventure Looking for a project to get involved in,self.java +0,1383173031,5,help with java letter counting,self.java +0,1383163849,8,Core Java JPA Hibernate Spring Youtube Video Channel,hubberspot.com +1,1383159529,7,Scanner reads uc285 as end of line,self.java +16,1383159051,15,Is it common for JVM to complain of heap errors when you spawn 100 threads,self.java +0,1383150858,4,The IoT takes flight,jaxenter.com +0,1383136741,6,synchronized vs ReentrantLock in java threading,guruzon.com +0,1383102904,6,Having some troubles with this program,self.java +7,1383096786,12,Strange problem with JDK 1 7 0_45 on Mac OS X Maverick,self.java +0,1383086574,7,Databen ch JVM Persistence Benchmark Round 2,databen.ch +8,1383086365,8,Disabling all EJB timers in Java EE 6,jdevelopment.nl +16,1383080775,20,Tutorial Designing and Implementing a Web Application with Spring we ve had no end of questions on this topic lately,spring.io +12,1383077764,3,Working with PDFs,self.java +7,1383069411,6,Lesser known concurrent classes Part 1,normanmaurer.me +4,1383064810,8,Java Swing in 2013 Is it worth it,java.dzone.com +0,1383060745,32,Would it be easy to reuse Jersey s JAX RS Routing capabilities I am looking to make a JAX RS implementation for Finagle and would prefer to not have to rewrite everything,self.java +2,1383054042,6,Help with Connect 4 in Greenfoot,self.java +0,1383021746,3,Help with pseudocode,self.java +0,1383018718,12,Yahoo games and unsigned applications warning Not overly important just wondering something,self.java +0,1383012278,5,help with basic java strings,self.java +0,1383008298,2,Joyce Farrell,self.java +0,1382996419,16,Help with polymorphism For some reason I can t get the instance variables of the superclass,self.java +0,1382992141,10,Lady Java YouTube Something funny I ran across on Youtube,youtube.com +3,1382989872,20,A simple and easy Java Performance API that allows single and multi thread benchmarking with assertions what do you think,github.com +0,1382936255,10,How to Make a Java Virus Just a little fun,youtube.com +0,1382917177,11,I m really interested in learning but starting is so confusing,self.java +2,1382900333,6,Of running multiple regexp at once,fulmicoton.com +17,1382891062,7,Java EE 7 JSR 166 Concurrency Utilities,en.kodcu.com +0,1382886316,4,Needing help with Java,self.java +20,1382885809,18,If you could only buy one book to learn as much Java as possible what would it be,self.java +0,1382840178,9,Making a char by removing spaces from another char,self.java +16,1382824148,5,Howto overwrite static final field,self.java +25,1382785638,10,JavaOne 2013 Roundup Java 8 is Revolutionary Java is back,infoq.com +0,1382770640,11,Problem with Program can someone help a new java coder out,self.java +0,1382765322,5,Java Help for a noob,self.java +0,1382760095,7,Need help with exception handling in swing,self.java +44,1382750957,22,If I were hired at your place of work as a java developer what might my first week of work be like,self.java +0,1382745100,2,Immediate Help,self.java +0,1382739450,2,coding help,self.java +0,1382730760,5,Need beginner java question answered,self.java +0,1382729294,7,Flapi A fluent API generator for Java,github.com +2,1382725115,9,How do I install Java SE 6 in Mavericks,self.java +2,1382722011,7,Java and XML Based Neural Net Suite,github.com +6,1382705889,9,Book to learn EJB on not so basic level,self.java +9,1382695879,6,a atay ivici of PrimeFaces interview,devrates.com +5,1382676922,14,How can I write to a javax sound sampled SourceDataLine without blocking or polling,self.java +0,1382674452,8,Explain JPA Java Persistence API and its Architecture,youtube.com +0,1382671682,13,I want to know what r java thinks of this program I wrote,self.java +0,1382665891,4,What s the difference,self.java +0,1382664772,5,Fixing basic code for homework,self.java +0,1382662526,1,jQuery,plugins.jquery.com +0,1382645826,3,Need some advice,self.java +0,1382641269,2,JFrame error,self.java +5,1382640823,8,How to remove included resources in JSF example,byteslounge.com +0,1382636116,14,Java being blocked at work What does this mean sorry for the idiotic question,self.java +0,1382635015,7,How You Helped Shape Java EE 7,blogs.oracle.com +0,1382629803,5,Simple array for loop issue,self.java +1,1382621043,6,The road ahead for WebLogic 12c,technology.amis.nl +0,1382619761,19,Not sure if this is the right place but I need help with a program that I am writing,self.java +11,1382596750,3,Web App frameworks,self.java +0,1382580739,8,Swing component not sure how to create this,self.java +0,1382574346,7,Need help converting png to int please,self.java +0,1382568544,3,help por favor,self.java +0,1382567137,7,Rock Paper Scissors program in Java 1,self.java +0,1382560618,11,Here are some tutorials if you are trying to learn Java,youtube.com +1,1382542012,17,Why Can t Johnny Read Urls Request for comments on a URL library in Java xpost programming,gist.github.com +30,1382534621,8,We don t have time for code reviews,blog.8thcolor.com +0,1382534516,10,Getting Started with method security in Grails using Spring Security,mscharhag.com +1,1382532931,23,OOP Has A relationship has my mind swimming Details with POC working code inside just want to make sure I m not stupid,self.java +0,1382521115,6,Trying to understand System out printf,self.java +1,1382500550,6,Need help with Git on NetBeans,self.java +3,1382500388,10,Learning programming at home using Java Any books you recommend,self.java +0,1382496265,17,Why wont one piece of code work in netBeans but it work perfectly fine in Eclipse Keplar,self.java +0,1382490510,2,Weird error,self.java +0,1382470048,13,Can anyone point me to an example of an attractive desktop Java app,self.java +0,1382467526,14,Popping Tag libs From my co worker s wall while removing old custom taglibs,imgur.com +1,1382462434,4,eli5 java file constructor,self.java +0,1382451161,11,Why should you use Unchecked exceptions over Checked exceptions in Java,jyops.blogspot.in +1,1382446062,7,A Boon to Java Development introducing Boon,rick-hightower.blogspot.sg +4,1382442921,14,Exclusive interview with Hans Dockter ahead of his keynote at the Gradle eXchange 2013,skillsmatterblog.wordpress.com +2,1382437443,3,Demystifying ThreadLocal variables,plumbr.eu +4,1382419764,4,Java 1 6 REPL,javarepl.com +1,1382403621,7,Is there anything wrong with this practice,self.java +3,1382402688,3,Best Java applications,self.java +44,1382400794,8,Is Java the right language to learn first,self.java +0,1382400214,13,How to print the first and second digit of a two digit number,self.java +0,1382396565,15,How to insert a variable entity into the html code from my java server code,self.java +0,1382391082,5,5 Song MP3 Player Problems,self.java +0,1382387735,13,REST JaxB Validating parameters Can someone help point me in the right direction,self.java +0,1382385020,12,Can i be good at Java without a degree in Computer Science,self.java +4,1382380146,9,How can I statically add elements to a Map,self.java +0,1382376253,5,What makes a great developer,beabetterdeveloper.com +0,1382371680,9,How to uninstall a java version 1 4 2_04,self.java +1,1382368725,7,Any server solutions for Swing frontend clients,self.java +1,1382365041,3,Graph drawing software,self.java +0,1382364066,29,People who program in Java Do you write your code in a separate text editor and paste it over into a compiler or do it all in the one,self.java +2,1382362183,13,Whoops Where did my architecture go Best practice Application layers amp Package structure,olivergierke.de +1,1382357125,11,Spring MVCs RequestBody and ResponseBody demystified SRP on the Web Layer,beabetterdeveloper.com +35,1382355651,11,Java forever 12 keys to Java s enduring dominance Application Development,infoworld.com +4,1382343276,7,A failed experiment improving the Builder pattern,branchandbound.net +5,1382340841,19,Multi Producer Single Consumer Queues From 2M ops sec 6 producers ABQ to 50Mops sec lock free MPSC backoff,psy-lob-saw.blogspot.com +0,1382336478,10,Dear Java Stop alt tabbing me from games to update,self.java +5,1382334990,14,Anyway to automatically prepare a static variable that can t just be trivially initialized,self.java +0,1382320719,3,Basics on iteration,self.java +2,1382315685,10,Annoying issue trying to remove line feeds from XML SAX,self.java +0,1382310020,7,Code for updating a value every minute,self.java +4,1382291418,5,Why embed javascript in java,self.java +46,1382288701,7,You Thought You Knew About Java Performance,nerds-central.blogspot.com +0,1382264738,13,Cannot get junit to work in eclipse after upgrade to windows 8 1,stackoverflow.com +7,1382254256,7,Brian Goetz Survey on Java erasure reification,surveymonkey.com +3,1382249852,7,Looking for advice doing a VoIP project,self.java +0,1382232834,5,JDK 7 will not uninstall,self.java +0,1382231745,8,HW Help Coding a simple interface calculator class,self.java +0,1382212766,9,Why is it so hard to find Java talent,ensode.net +0,1382197153,7,Alternative to Oracle Java for the browser,self.java +28,1382195649,9,JHades Your way our way out of Jar Hell,jhades.org +34,1382191919,9,Oracle releases 127 security fixes 51 for Java alone,nakedsecurity.sophos.com +8,1382179310,8,PrimeFaces Extensions drag and drop feature in Timeline,ovaraksin.blogspot.com +12,1382177610,21,I wrote up a small example that shows how to use the FileSystem URL Reader Pattern Objects InputStream URL URI etc,rick-hightower.blogspot.com +12,1382137540,6,JEUS application server The story continues,arjan-tijms.blogspot.com +2,1382136607,9,Meta Can we have a monthly job posting thread,self.java +0,1382130338,8,HIRING ENFOS is looking for Java Software Engineers,enfos.com +0,1382129541,5,Wanted Java developers to be,infoworld.com +6,1382129098,7,Hibernate Facts The importance of fetch strategy,vladmihalcea.wordpress.com +26,1382093067,10,RESTful Webservices made easy with spring data rest An Introduction,beabetterdeveloper.com +0,1382067172,5,Need Java Help for class,self.java +0,1382061810,4,Adding JPanels to JFrames,self.java +9,1382057906,5,JRE not updating Mac OSX,self.java +0,1382056950,25,I have a friend who insists on using Terminal the built in OSX app to program in Java How can I convince him not to,self.java +0,1382038874,3,Java Developer Position,linkedin.com +0,1382030716,10,Custom error pages for expired conversations involving CDI and JSF,jaitechwriteups.blogspot.com +0,1382029621,9,Add Some Entropy and Random Numbers to Your JVM,tech.pro +17,1382023886,11,The most popular Java EE 7 technologies according to ZEEF users,arjan-tijms.blogspot.com +0,1382020642,10,Why are my class files smaller under linux than windows,self.java +1,1382020456,26,Is there a way to continue to use java jre 1 7 0_25 Since update 45 cane out with a new security baseline it s blocked,self.java +0,1382016348,2,Overloading variables,self.java +0,1382015061,3,Java Digital Signature,self.java +6,1382011084,11,How to handle many many objects without running out of memory,self.java +22,1381996683,9,Which features would you love to see in Java,self.java +0,1381991793,6,What has happened to Spring MVC,self.java +2,1381991221,9,Java resources tutorials for experienced programmers in other languages,self.java +1,1381985388,17,Is it correct to use a volatile Void field to enforce a consistent view of global memory,self.java +21,1381984667,36,YSK JIVE interactive execution environment for eclipse You can manually step forwards AND BACKWARDS through a program s execution while it syncs the code position sequence diagrams object diagrams AND console output It s gloriously helpful,cse.buffalo.edu +0,1381977580,18,If I wanted to learn to code where would I start and how would I go about learning,self.java +0,1381966381,4,object oriented design questin,self.java +13,1381959682,4,Semantic diffing Java code,codicesoftware.blogspot.com +3,1381959084,2,Lexicographical Order,self.java +0,1381955438,9,Explain Java Class Loaders Java Interview Questions and Answers,youtube.com +11,1381955423,14,A more efficient way of moving an array of C strings into Java space,self.java +2,1381951298,11,Free Java Devroom Call for Papers now open for FOSDEM 2014,wiki.debian.org +0,1381947770,5,Please help me with java,self.java +36,1381934173,4,NetBeans 7 4 released,netbeans.org +0,1381930034,3,question about error,self.java +68,1381907897,7,Hilarious job posting for a Java developer,i.imgur.com +6,1381900885,15,JDBC lint helps Java programmers write correct and efficient code when using the JDBC API,github.com +39,1381894447,7,1000 Responses to Java Is Not Dying,drdobbs.com +18,1381875220,9,Please explain the relationship between OpenJDK Oracle and HotSpot,self.java +8,1381873454,7,Oracle Critical Patch Update Advisory October 2013,oracle.com +0,1381871313,6,Assistance needed for small project questions,self.java +0,1381863662,4,Boost your development speed,beabetterdeveloper.com +0,1381856828,3,hey help please,self.java +8,1381853961,9,Best ways to learn about multi threading and concurrency,self.java +0,1381851102,3,Self teaching Java,self.java +7,1381847732,8,Best place to assist in self teaching Java,self.java +14,1381830613,11,Why is my code running significantly faster on an older machine,self.java +3,1381821909,5,PrimeFaces 4 0 1 released,blog.primefaces.org +2,1381819235,13,Help with error Could not open create prefs root node Software JavaSoft Prefs,self.java +4,1381810232,18,What does the Java certification exam cover and would 2 classes on it be enough to pass it,self.java +0,1381806420,7,Error in my queue simulator Need Help,self.java +0,1381788380,4,some help if possible,self.java +2,1381784768,14,How are you designing your Java web architecture to include more client side libraries,self.java +18,1381782732,9,The Resurgence of Apache and the Rise of Eclipse,insightfullogic.com +1,1381762813,10,Just started learning java need help with classes and methods,self.java +6,1381762365,13,In a Maven project how can I configure JUnit to show error traces,self.java +27,1381734484,12,Hitting 400M TPS between threads in Java using a lock free queue,psy-lob-saw.blogspot.com +2,1381732426,7,Issues with multi project maven Java project,self.java +29,1381723871,12,What kinds of skills does a Java programmer need for a job,self.java +3,1381698184,3,Why the hate,self.java +1,1381695662,11,What learning sources print or online best cover idiomatic Java practices,self.java +0,1381673044,3,Need some help,self.java +6,1381666819,4,Java update mirror broken,self.java +5,1381655660,20,Would like to learn about a practical implementation of CDI Context and dependency injection in Java EE in real life,self.java +1,1381652620,15,Changing the displayed value of a button after clicking on it from a java bean,self.java +2,1381619947,23,Fun with genetic algorithms image generation using GA inspired by the Alsing Mona Lisa blog post r java tell me what you think,self.java +22,1381616700,5,Is Java a hard language,self.java +0,1381608131,8,Using the Very Unsupported Java Flight Recorder API,hirt.se +8,1381604087,14,JBoss 8 next State of the Union starring Wildfly it s new ModularServiceContainer heart,reddit.com +0,1381594217,13,Help on a small piece of code question Not sure if right place,self.java +0,1381579715,15,Remember the good old days when we were newbies Can I combine Java and SQL,stackoverflow.com +2,1381536522,10,Beginner Java student looking to branch out into Android development,self.java +2,1381527427,9,Batch Jobs and CDI Quartz ExecutorService etc And BatchEE,kildeen.com +45,1381514332,6,How Java Programmers Feel in 2013,discursive.com +1,1381467953,9,Can anyone help me make this method more efficient,self.java +0,1381465481,19,Are there other options than using nested ifs or switch case for evaluating a number and returning a string,self.java +0,1381463922,11,What do I do with the class file I ve created,self.java +0,1381450057,3,Java homework help,self.java +5,1381442245,13,Ed Burns JSF Spec Lead discusses JSF 2 2 and Java EE 7,jsfcentral.com +0,1381423657,5,io write using a boolean,self.java +53,1381420030,13,10 Reasons Why Java Rocks More Than Ever Part 2 The Core API,zeroturnaround.com +0,1381416736,6,Is Java JNI in JEE possible,self.java +3,1381416564,9,Will Java 8 IO input streams feature boolean isClosed,self.java +13,1381391165,7,CodeCache is full Compiler has been disabled,blogs.atlassian.com +0,1381366319,40,Hi Me and a friend over the summer decided to open up a Youtube channel teaching people how to code This is my first Java tutorial mind giving me some tips om how to improve myself Than s so much,youtube.com +0,1381355378,10,Hey new to Java i have a question about Threads,self.java +0,1381352498,13,Just started university thrown in at the deep end with Java Crapping myself,self.java +9,1381345413,21,Ask r Java What Java Profilers do you use Is there any text books on techniques or advanced tools and methods,self.java +1,1381339752,3,OutOfMemoryError or Swapping,self.java +109,1381336777,9,If Java Is Dying It Sure Looks Awfully Healthy,drdobbs.com +0,1381335992,10,Can anyone figure out the encryption algorithm my encrypter uses,self.java +17,1381331105,5,Java Auto Unboxing Gotcha Beware,tech.pro +4,1381329582,9,Why JSF 2 0 Hides Exceptions When Using AJAX,beyondjava.net +0,1381316868,7,How to remove this Java from Firefox,imgur.com +0,1381312618,3,Change origin oval,self.java +0,1381304833,11,I want to delete string and ints from a text file,self.java +8,1381290299,7,Enterprise App Multiple WAR vs single WAR,self.java +11,1381262226,8,Goodbye Redeployment spring loaded a free jrebel alternative,babdev.blogspot.co.at +7,1381254387,7,Can someone please explain Logging to me,self.java +9,1381241259,5,How relevant are application server,self.java +37,1381232748,12,sun misc Unsafe could migrate to a public API in Java 9,mail.openjdk.java.net +3,1381215529,13,Is It Time For Semantic HTML 5 For JSF In Java EE 8,adam-bien.com +6,1381206082,14,Install Oracle Java 7 in Ubuntu via PPA Repository Web Upd8 Ubuntu Linux blog,webupd8.org +0,1381199071,6,Options for wrapping 3rd party classes,self.java +2,1381198549,2,MJPEG streaming,self.java +43,1381198022,11,Well I guess LGA arrival departures does Java and Windows 7,i.imgur.com +0,1381159884,11,Executing a exe or w e linux uses from a jar,self.java +0,1381146941,4,Result is not correct,self.java +68,1381131840,14,10 Reasons Why Java Now Rocks More Than Ever Part 1 The Java Compiler,zeroturnaround.com +10,1381104815,11,What is the significance of the words Big Java Late Objects,self.java +0,1381102992,6,Is downloadjava us a malware site,self.java +0,1381074769,9,How to query Environment Variables through a Java Program,youtube.com +14,1381065482,9,JavaFX has no accessibility support What are my options,self.java +0,1381054143,10,How to Install Java JDK and Set Environment Variables Path,youtube.com +5,1381036235,8,How can I improve this nonblocking binary semaphore,self.java +3,1381020686,3,double a5 10,self.java +4,1381020242,3,New to this,self.java +0,1381000566,16,The method paintComponent Graphics in the type JComponent is not applicable for the arguments Graphics Error,self.java +12,1380998374,13,OmniFaces 1 6 1 and why CDI doesn t work well in EARs,balusc.blogspot.com +0,1380983785,5,Maven is broken by design,blog.ltgt.net +29,1380977309,5,Huge collection of Spring resources,springframework.zeef.com +0,1380934036,16,Iterate an array replace int with first number that is not equal to that int Help,self.java +8,1380923149,9,PrimeFaces 4 released What s new with PrimeFaces Push,jfarcand.wordpress.com +4,1380923044,4,PrimeFaces 4 0 released,blog.primefaces.org +0,1380915878,10,Is there a open source discussion platform implemented in java,self.java +4,1380909175,14,Is there any tool that moves multiple java files into one big java file,self.java +0,1380897400,5,Kick off the programming game,self.java +0,1380880132,5,Jsoup cant Login on Page,self.java +0,1380844541,4,Login in https page,self.java +0,1380840629,5,Help with a simple code,self.java +5,1380836931,13,Is there a modeling studio that can export animations as working Java code,self.java +10,1380836354,10,Reflections on JavaOne 2013 by the NetBeans Community Part 1,netbeans.dzone.com +14,1380829936,9,Friendly reminder about Integer int nulls and autoboxing unboxing,self.java +0,1380819621,13,How can I mimic Java 7 s switching on strings in Java 6,self.java +0,1380817088,13,Stack Overflow is a question and answer site for professional and enthusiast programmers,stackoverflow.com +0,1380805795,19,A question for Java developers If life is like a Java program then what are emotions dreams sexuality ect,self.java +5,1380786323,8,Unable to combine pipeline with transaction using Jedis,self.java +0,1380758759,3,How to Subtract,self.java +6,1380747743,14,Can JavaFX Scene Builder generate a UI wherein panes are repopulated with different components,self.java +0,1380738243,4,Problem using Clip class,self.java +2,1380737516,2,Need suggestion,self.java +0,1380728580,15,Can anyone help me with a code tiny error I think just newish to Java,self.java +39,1380703364,8,Devoxx 2012 made all 180 presentations freely available,parleys.com +0,1380693016,5,Need help with program ASAP,self.java +0,1380688602,5,Learning Java Looking for help,self.java +12,1380663769,10,can i learn java the same way i learned python,self.java +0,1380648965,15,mvn install install file Dfile x jar failing to read the jar s pom xml,self.java +23,1380642615,12,The la4j Linear Algebra for Java 0 4 5 has been released,la4j.blogspot.ru +1,1380624007,4,Need help with methods,self.java +0,1380623187,6,Java2Scala Converts Java code to Scala,java2scala.in +7,1380594221,6,How to begin working with frameworks,self.java +5,1380579367,4,JavaOne 2013 trip report,branchandbound.net +0,1380577807,8,Why does my program print out even numbers,self.java +0,1380574050,9,How to solve this in Java using for Loops,i.imgur.com +45,1380570239,16,If there is one Java library that you need to start using today this is it,projectlombok.org +0,1380554676,14,How do I check if an array has the same value as another array,self.java +0,1380524997,20,Just finished a school project and would like some feedback Primarily deals with updating a 2D Array with random ints,self.java +0,1380501003,4,need 3d programming help,self.java +0,1380497098,9,Brand new to java Looking for ideas for class,self.java +45,1380488210,10,What is the best open source code you have seen,self.java +11,1380481938,7,Best place and ways to learn java,self.java +0,1380469953,11,I am seriously lost with my if else lab Please help,self.java +0,1380457371,9,Go Agile Java Development with Spring to Maximize ROI,javascriptstyle.com +0,1380400916,9,HIRING a Java Team Leader and 2 Java Developers,self.java +0,1380397112,15,In which order should Java be learnt and what excercises for Java do you recommend,self.java +0,1380395992,4,I Need Some Advice,self.java +0,1380395008,4,Java Meme Wrapper Class,i.imgur.com +0,1380391137,7,Java Beginner Project Looking for a partner,self.java +0,1380387995,2,Textbook help,self.java +30,1380373481,7,Eclipse 4 3 SR1 again silently released,jdevelopment.nl +0,1380349215,15,Trying to place 2 values on an array border that aren t on the corners,self.java +0,1380313557,4,help with simple error,self.java +4,1380309618,5,Definding message structures in Java,self.java +11,1380303511,14,Somewhat fresh to Online Java trying to expand my portfolios Would love some ideas,self.java +14,1380297383,4,Java to Scala converter,javatoscala.com +0,1380297229,4,Java Generics are Infuriating,self.java +0,1380295204,8,Is input validation needed here Google App Engine,self.java +36,1380289983,4,Discussion Java EE Servers,self.java +15,1380280828,6,James Gosling at NetBeans Day 2013,blogs.oracle.com +3,1380259486,11,Just released Firebird JDBC driver Jaybird 2 2 4 SNAPSHOT version,firebirdnews.org +2,1380259032,4,Java Video Tutorial Ideas,self.java +0,1380236638,4,Help out a Newbie,self.java +0,1380235343,10,Looking for advice on how to improve my program code,self.java +0,1380227748,5,Looking for Java collections practice,self.java +0,1380219352,8,Beginning java programming What are some good resources,self.java +0,1380208918,9,New subreddits about Reactive Programming and Dataflow in general,self.java +21,1380205995,8,Hunting Memory Leaks in Java Deciphering the OutOfMemoryError,toptal.com +0,1380203989,5,Help configuring checkstyle Maven plugin,self.java +0,1380197766,7,Silly question but what is in java,self.java +0,1380112531,12,Vice president of engineering at Twitter talks about Java and the jvm,wired.com +57,1380112452,6,Java8 The Good Parts JavaOne 2013,java.dzone.com +6,1380110691,8,Diving into the unknown the JEUS application server,arjan-tijms.blogspot.com +0,1380089322,7,One more error Pretty sure Help please,self.java +0,1380088525,3,Debugging help please,self.java +0,1380072086,3,Anagram Java Program,self.java +0,1380067153,17,Beginner checkup Any advice for this completed code Just some things I had to do for homework,self.java +0,1380064212,10,Null pointer Exception while trying to sort an class array,self.java +4,1380062203,8,Java Comparable consistent with equals reversible SortedSet related,self.java +0,1380051910,5,AP Computer Science Test help,self.java +42,1380050419,8,12 Things Java Developers Should Know About Scala,alvinalexander.com +4,1380047849,7,The Java Fluent API Designer Crash Course,tech.pro +1,1380046062,23,If you re wondering why astroturfers spam r java lately click on Oracle s price list and search for Java SE Advanced PDF,oracle.com +17,1380044250,5,GPU Acceleration Coming to Java,blogs.nvidia.com +1,1380035012,8,How to Write Your Own Java Scala Debugger,takipiblog.com +6,1380033183,9,Project Avatar ServerSide JS on JVM is Open Source,blogs.oracle.com +0,1380031745,22,How can I Xlint most of my code in a Maven project while ignoring certain generated java code e g from Thrift,self.java +25,1379988507,14,I think I have a bad Data Structures teacher Should I drop the course,self.java +0,1379979584,10,Java Exploits Seen as Huge Menace So Far This Year,self.java +4,1379975388,3,Alternatives to GWT,self.java +0,1379967023,11,I got this message the other day what does it mean,self.java +6,1379954180,8,Low Overhead Method Profiling with Java Mission Control,hirt.se +2,1379953985,5,Native Memory Tracking in 7u40,hirt.se +13,1379930773,4,JavaOne 2013 NetBeans Day,blog.idrsolutions.com +6,1379920601,9,Diving into Cache Coherency and it s performance implications,psy-lob-saw.blogspot.com +0,1379895100,21,How can I convert from an integer to a long but treat the integer as if it s an unsigned value,self.java +0,1379894041,5,Begginner Bank Account program question,self.java +0,1379888744,2,overloading question,self.java +0,1379881115,5,Help me understand exception handling,self.java +7,1379826195,12,How often are little wrapper methods like this used for method overloading,self.java +0,1379823969,3,Problem Comparing Integers,self.java +6,1379810974,6,Simple Boolean Expression Manipulation in Java,bpodgursky.wordpress.com +4,1379803223,7,Injecting spring beans into non managed objects,kubrynski.com +3,1379789985,13,Processing on Disorient s Pyramid at Burning Man x post from r processing,davidshimel.com +6,1379788370,9,Session replication clustering failover with Tomcat Part 1 Overview,tandraschko.blogspot.se +6,1379723066,4,Redditors going to JavaOne,self.java +2,1379690385,5,Rebuilding a Linux Java App,self.java +0,1379676826,4,Design Patterns in Java,latest-tutorial.pakifreelancer.com +6,1379676180,6,NetBeans 7 4 RC1 Now Available,netbeans.org +38,1379653527,6,State of the Lambda final version,cr.openjdk.java.net +4,1379628468,8,First RoboVM app accepted on iOS App Store,badlogicgames.com +0,1379624303,18,How can I save and send a java file to someone who plans on running it on cmd,self.java +11,1379623261,8,OmniFaces goes CDI with its 1 6 release,balusc.blogspot.com +0,1379619871,8,Java 8 What s New Series Milestone 4,musingsofameaneringmind.wordpress.com +3,1379612277,12,How to implement feature toggles for web applications deployed on multiple servers,self.java +0,1379608866,12,Dependency Injection Is it possible to inject a private static final field,self.java +0,1379607817,18,Why am I getting a NullPointerException when I try to write an object to a Mockito mocked ObjectOutputStream,self.java +4,1379598766,8,TmaxSoft JEUS 8 Now Java EE 7 Compatible,blogs.oracle.com +50,1379578957,4,Introduction to Java multitenancy,ibm.com +0,1379578644,6,How do I make a class,self.java +22,1379556640,10,IO trace generation in java experimenting with sun misc IoTrace,axtaxt.wordpress.com +0,1379554006,6,Help with rock paper scissors game,self.java +0,1379542582,3,Change Calculator help,self.java +0,1379535670,11,Not familiar with the problem that just started happening please help,self.java +0,1379513625,11,How to determine active users sessions in a Java Web Application,hubberspot.com +0,1379507664,19,New to java programming I can t get this palindrome recognition program to work Can you offer some help,self.java +47,1379501022,11,Chart showing lines of code vs time spent reading and editing,fagblogg.mesan.no +0,1379484421,13,Looking for tutorials for basic Java and libGDX individually on Unix no IDE,self.java +0,1379466305,4,I really need help,self.java +10,1379464485,13,Arjan Tijms and Bauke Scholtz BalusC Talk About OmniFaces and Building zeef com,jsfcentral.com +0,1379460534,3,Java vs NodeJS,self.java +39,1379458075,9,Beginnings of raw4j the Reddit API Wrapper for Java,self.java +5,1379446285,5,Patch management of my application,self.java +0,1379445671,3,First time Java,self.java +0,1379439784,9,Java 8 whats new series milestone 2 and 3,musingsofameaneringmind.wordpress.com +0,1379423537,6,How to use Map in Java,latest-tutorial.pakifreelancer.com +25,1379372791,11,A modern JIRA instance finally up amp running for the JDK,mail.openjdk.java.net +0,1379354141,4,RDRAND library in Java,software.intel.com +0,1379352583,13,Do any free collections libraries offer a non blocking callback style semaphore implementation,self.java +21,1379348147,7,RESTX a fast lightweight Java REST framework,restx.io +0,1379342078,5,Good Tutorial for some beginners,self.java +0,1379326591,8,Java 8 What s new series Milestone 1,musingsofameaneringmind.wordpress.com +8,1379311409,7,Develop iOS Apps in Java with RoboVM,robovm.org +64,1379275568,5,Filmed talks from JavaZone 2013,vimeo.com +4,1379271948,8,Struktur A skeleton starter template for JavaFX applications,bitbucket.org +7,1379231859,5,JSF 2 2 Flow Calls,en.kodcu.com +0,1379227992,9,How can I portable spawn a new JVM instance,self.java +5,1379182573,4,Mavenizing the Flex SDK,anthonywhitford.blogspot.com +12,1379122377,15,TurnItIn originality checker catches academic plagiarists by indexing the web also has a Java SDK,turnitin.com +0,1379110418,8,Why isn t my program returning a result,self.java +0,1379107956,9,Windows ruins everything a tale of a simple bug,blog.existentialize.com +0,1379106758,40,Need help implementing my Pseudo Code So basically I have 3 arrays size n that s suppose to check if there is a triple which adds up to zero from different arrays Returns true if triple exists and false otherwise,self.java +5,1379098412,10,The Hidden Java EE 7 Gem Lambdas With JDK 7,adam-bien.com +53,1379080832,8,The Trie A Neglected Data Structure in Java,toptal.com +51,1379034404,11,How does java util Random work and how good is it,javamex.com +6,1379027332,7,Google error prone compile time static analysis,code.google.com +6,1379024422,7,Why floor round and ceil return double,self.java +5,1379022508,6,Short or Int for port numbers,self.java +5,1379010475,8,Layouts a small library for handling swing layouts,self.java +0,1379009407,15,Hey guys I making a program and need some help laying out my psuedo code,self.java +0,1379006092,12,Java Performance Tuning and Monitoring Tool Java Performance Analyzer Key Performance Findings,youtube.com +2,1378998493,12,How can I compile all thrift files thrift as a Maven phase,self.java +6,1378996402,7,Interview about OmniFaces and building zeef com,content.jsfcentral.com +1,1378958331,6,JRE 6 class in JRE 5,self.java +37,1378946391,7,Why doesn t Java have more convenience,self.java +0,1378944565,10,Where and why might my application be using reference queues,self.java +0,1378939127,13,Anyone recommend a good book to learn about webservices from a Java perspective,self.java +0,1378938118,3,Simple Name Chooser,self.java +6,1378923867,7,Remote or Local for Data Access Layer,self.java +0,1378912422,9,A question about constructors and how to use them,self.java +1,1378905143,21,I need help with this little game I am not sure why it doesn t run Anyone able to help me,self.java +12,1378883703,4,Java application memory use,self.java +6,1378858791,5,Web development with Java redux,self.java +0,1378857806,14,How do I add the ability for the user to type in the window,self.java +55,1378853713,4,Java to Scala cheatsheet,techblog.realestate.com.au +0,1378836195,9,I want to learn java where do i beggin,self.java +0,1378835484,3,Is Java dying,self.java +7,1378834954,4,Need a programming idea,self.java +3,1378823250,11,Why is mvn generate sources ignoring my custom generate sources executions,self.java +2,1378806043,12,Using an image as a JButton and displaying an image in GUI,self.java +0,1378791215,5,someone wanna help me out,self.java +37,1378782251,5,Java 8 Enters Developer Preview,mreinhold.org +0,1378779231,9,How do I convert XML to HTML using java,self.java +0,1378774594,4,Can someone help me,self.java +25,1378774079,3,Very beginner question,self.java +6,1378756113,7,How to do validation the right way,self.java +0,1378739366,18,I m helping run a Spring Framework conference in London Spring Exchange What would you like to see,self.java +0,1378694624,8,Best way to store data in plain text,self.java +0,1378679179,2,Formating StringBuffer,self.java +0,1378663326,10,I ve got a question for all you Java buffs,self.java +0,1378544338,3,Help with BigInteger,self.java +18,1378522020,12,Nashorn Aiming at Taking Over Config Files Build Scripts and the Bash,youtube.com +0,1378507114,7,A Reddit API Wrapper using Jersey Client,self.java +0,1378480753,3,Help with Recursion,self.java +9,1378480221,7,Scaling Play to Thousands of Concurrent Requests,toptal.com +0,1378429717,3,Multiple AlphaComposite sources,self.java +14,1378405800,13,Simple CRUD Web Application PrimeFaces 3 5 EJB 3 1 JPA Maven SQL,simtay.com +0,1378400543,7,Need help with creating a search function,self.java +5,1378386021,17,What are some good modern resources that explain how to manage organize deploy a large JavaEE project,self.java +6,1378384710,27,7 years of Ruby on Rails thinking of picking up Java What type of project can I work on to prove that I m a good candidate,self.java +5,1378383947,7,Java 8 working with Eclipse or Netbeans,self.java +0,1378365484,8,Having issue finding jdk no problem finding jre,self.java +5,1378360579,7,Jackrabbit Oak the next generation content repository,jackrabbit.apache.org +2,1378327929,29,Can someone please help me figure out what s going on I m one of the only people who can t access this applet required for my Government course,self.java +13,1378311017,9,How to Generate Printable Documents from Java Web Applications,blog.smartbear.com +5,1378306220,8,Installing JGRASP to use for a Java Class,self.java +7,1378304328,5,New Fragment component in PrimeFaces,blog.primefaces.org +0,1378303382,9,Implementing Hexagonal Architectures with the Life Preserver and Spring,skillsmatter.com +2,1378293986,7,FacesMessage severity differences between Mojarra and MyFaces,javaevangelist.blogspot.com +9,1378287696,4,Better I18n in Java,blog.efftinge.de +0,1378265511,4,Sortable HTML table help,self.java +1,1378265095,6,I have a question about threads,self.java +0,1378230101,2,Java Help,self.java +0,1378154771,15,Help with code that I am struggling with Pixel needs to create a square outline,self.java +2,1378147027,9,Unable to create connection pool with SSL on GlassFish,self.java +26,1378140121,3,Graph algorithm libraries,self.java +0,1378138667,4,Question Non Focused Hotkeys,self.java +0,1378059378,19,Swing Why do the JPanel s getWidth and getHeight functions not reflect any changes in the panel s dimensions,self.java +0,1378058718,6,Need help with Java Robot class,self.java +14,1378046176,12,Two nearly identical lines of code and only of them is working,self.java +0,1378004082,14,JAVAW EXE is taking up 8GB of Ram How do I find out why,self.java +0,1377996270,4,Whats wrong with this,self.java +0,1377987657,9,Upload Excel or CSV using RESTEasy and Data Pipeline,northconcepts.com +13,1377984079,14,Why would I be seeing the ClassLoader method loadClass show up in my profiling,self.java +0,1377913413,24,What is the best place to learn Java online I really need practice but I want something a little more hand holdy than JavaRanch,self.java +26,1377909689,15,Open or not source projects that an entry level dev should be able to understand,self.java +3,1377906571,6,How to Inject Shellcode from Java,blog.strategiccyber.com +6,1377904791,5,Inversion of Control IoC Overview,tapestry.apache.org +3,1377903007,7,Calling Defender Methods from within a Lambda,self.java +0,1377900779,9,What are some incredibly helpful sights to learn Java,self.java +0,1377899207,6,casting a subclass object as superclass,self.java +12,1377886996,18,Can Maven handle different dependency versions in components of an application or must they all be the same,self.java +5,1377884791,12,How do I add a maven dependency hosted on a git URL,self.java +4,1377860816,9,Java security will be in the spotlight at JavaOne,infoworld.com +1,1377832542,9,Has anyone used Filters with Java using Twitters Finagle,self.java +0,1377829483,2,What program,self.java +0,1377826426,11,How do I make a moving pixel create a square outline,self.java +0,1377810682,5,Invitation to Green Programmer Survey,self.java +7,1377807743,4,False Sharing in Java,mechanical-sympathy.blogspot.com +0,1377784001,13,Web sites from a didactic point of view to live sites on host,self.java +7,1377780423,10,Best features of eclipse that some might not know about,self.java +187,1377770976,12,Come on Eclipse You should be able to figure this one out,i.imgur.com +0,1377762381,10,Good Serialization Libraries With Small Overhead in terms of Size,self.java +11,1377756807,9,10 Common Mistakes Java Developers Make when Writing SQL,blog.jooq.org +2,1377747729,14,Best method for waiting on JavaFX2 WebEngine to load before executing my JavaScript commands,self.java +0,1377714946,10,What is Map lt Character Character gt for a Map,self.java +0,1377713487,12,Split String every nth char or the first occurrence of a period,self.java +6,1377713086,5,Multi threading Swing GUI Updates,self.java +0,1377697673,26,Why do you have to type Class class to get a class s class You don t type 5 int to get an int s int,self.java +6,1377679626,6,Getting Started with HotSpot and OpenJDK,infoq.com +3,1377677264,9,Client side validation framework for JSF in PrimeFaces 4,blog.primefaces.org +0,1377672314,10,Writing a Java Regular Expression Without Reading the ing Manual,java.dzone.com +0,1377655547,5,Data Pipeline 2 3 Released,self.java +0,1377653843,18,What are some good tutorials to learn Java and XML I would like to create an android OS,self.java +8,1377640487,4,Pointer to JSF resources,self.java +0,1377633019,12,Any Midwest Java developers out there My Indy based company is hiring,self.java +4,1377631427,9,Java SE 8 Early Draft Review Specification DRAFT 2,cr.openjdk.java.net +18,1377617238,7,Will lambdas in Java 8 reduce boilerplate,self.java +0,1377606327,7,Java 6 exploit found in the wild,theinquirer.net +0,1377600729,3,Experiences with CloudBees,self.java +1,1377598728,19,APIMiner 2 0 IDE version released JavaDoc pages for Android Studio and Eclipse ADT instrumented with source code examples,java.labsoft.dcc.ufmg.br +6,1377597091,7,Hackers Target Java 6 With Security Exploits,informationweek.com +5,1377583389,8,OpenMOLE a workflow engine to leverage parallel execution,openmole.org +0,1377546152,7,Exciting Workshops on the Skills421 Training Courses,skills421.wordpress.com +2,1377506081,10,HSA targets native parallel execution in Java VMs by 2015,techcentral.ie +39,1377499127,4,Java Algorithms and Clients,algs4.cs.princeton.edu +0,1377455451,7,Jave J2EE Tutorials with Example on guruzon,guruzon.com +0,1377453355,17,JAVA path setting help I already followed all of the online instructions and I still need help,self.java +0,1377440911,7,Needed help in making a java program,self.java +13,1377436078,5,Jasypt 1 9 1 Released,jasypt.org +0,1377436002,6,tynamo federatedaccounts 0 4 3 released,apache-tapestry-mailing-list-archives.1045711.n5.nabble.com +1,1377382462,11,New programmer with minimal Python programming experience where do I start,self.java +0,1377369535,6,Jetty 9 0 5 v20130815 Released,dev.eclipse.org +13,1377367985,6,java Money and Currency JSR 354,github.com +0,1377352491,12,Programming Eclipse in Real Time using an Groovy based Eclipse Plug in,blog.diniscruz.com +0,1377330255,8,What s a really good crash course review,self.java +0,1377289798,6,Help with public boolean equals method,self.java +33,1377286839,9,More Effective Java With Google s Joshua Bloch 2008,oracle.com +27,1377267760,14,Java 7 Sockets Direct Protocol Write Once Run Everywhere and Run Some Places Blazingly,infoq.com +0,1377267566,8,Lambdas Myths and Mistakes by Richard Warburton Podcast,skillsmatter.com +0,1377261297,8,Importing Data From Solr To Postgres With Scala,garysieling.com +13,1377237481,6,Commons Collections 4 0 alpha1 released,mail-archives.apache.org +0,1377237420,8,Apache Mavibot 1 0 0 M1 MVCC BTree,mail-archives.apache.org +0,1377237255,6,Maven Surefire Plugin 2 16 Released,maven.40175.n5.nabble.com +4,1377237174,8,Recordinality cardinality estimation sketch with distinct value sampling,github.com +15,1377236454,11,gitBlit pure Java stack for managing viewing and serving Git repositories,gitblit.com +0,1377211010,14,Can an object be created that is a member of a dynamicly chosen class,self.java +9,1377171519,10,String intern in Java 6 7 and 8 string pooling,java-performance.info +0,1377170822,7,Java devs among best paid in industry,jaxenter.com +26,1377169519,10,How do you deal with the logging mess with Maven,self.java +0,1377163613,8,Useful Eclipse Plugin to create J2EE Base Templates,3pintech.com +0,1377154125,5,java exe is a virus,i.imgur.com +8,1377136250,10,Decided to buckle down and learn Java What version question,self.java +0,1377099540,12,The Big Data Company Blog Hadoop vs Java Batch Processing JSR 352,blog.etapix.com +79,1377077576,7,10 Subtle Best Practices when Coding Java,java.dzone.com +31,1377068598,13,Stas s blog The most complete list of XX options for Java JVM,stas-blogspot.blogspot.co.il +1,1377060729,11,A set of high quality controls and add ons for JavaFX,jfxtras.org +0,1377047390,12,For anyone who needs help with renameTo the File API is terrible,self.java +2,1377043206,20,Am I reinventing the wheel here Are there any libraries for auto forwarding methods calls to other threads freely available,self.java +6,1377038549,6,Java EE Servlets Help Introduction Guide,self.java +0,1377032925,9,Can anyone help me out in regards to treads,self.java +20,1377029959,7,What exactly is the point of interfaces,self.java +11,1376981064,4,Help me understand JavaFX,self.java +6,1376978313,5,Best Android game development tutorial,self.java +0,1376958279,6,Help out on a homework question,self.java +0,1376929336,12,Java 101 The next generation Java concurrency without the pain Part 2,javaworld.com +3,1376891611,2,Utilizing SHA3,akoskm.github.io +0,1376860557,16,What code base should I assign permissions in my policy file to get JUnit to work,self.java +0,1376839402,7,Netbeans won t load on Peppermint Linux,self.java +10,1376800603,10,Getting Eclipse Kepler 4 3 to work on a Mac,trevmex.com +10,1376779371,7,JAVA JVM Restart requirements On code changes,self.java +0,1376766422,3,Trouble in eclipse,self.java +0,1376766357,13,Under what privileges does code inside a thread s uncaught exception handler run,self.java +4,1376737511,9,Using Selenium WebDriver to select JSF PrimeFaces selectOneMenu options,javathinking.com +60,1376729685,6,New Tweets per second record 140k,blog.twitter.com +9,1376720351,32,I am interested in using Java for graphing what is the best way to go about this I have some knowledge already but could really use a nudge in the right direction,self.java +0,1376706194,4,ScrollBar not working Help,self.java +0,1376697063,19,Giving an url that redirected is a url with spaces to Jsoup leads to an error How resolve this,self.java +3,1376691655,9,Any alternatives to ROME for parsing RSS Atom feeds,self.java +3,1376687945,6,Learning Java Book or online tutorial,self.java +17,1376661912,6,Type safe Hibernate query builder JPA,torpedoquery.org +0,1376653919,3,Mocking a value,self.java +25,1376644171,5,Spring Data REST in Action,javacodegeeks.com +0,1376633046,9,Is double checked locking by checking HashMap get safe,self.java +0,1376624466,17,Lowes com craps out at checkout every goddamn time guess I ll spend 700 at home depot,self.java +18,1376602217,11,Google confirms Java and OpenSSL crypto PRNG on Android are broken,android-developers.blogspot.com.au +11,1376588524,4,Understanding complex system code,self.java +19,1376588329,3,Quintessential Java Book,self.java +1,1376585208,20,How can I portable use a whitelist based approach for my custom SecurityManager if different JVMs rely upon different resources,self.java +3,1376582086,12,Can mvn install packages globally e g command line tools like nutch,self.java +39,1376574093,12,5 Things You Didn t Know About Synchronization in Java and Scala,takipiblog.com +0,1376524622,12,Need help debugging this code Can t figure out what s wrong,self.java +22,1376518565,6,Spring Boot Simplifying Spring for Everyone,blog.springsource.org +4,1376498705,13,I am writing an API for search and rating links on popular trackersites,self.java +8,1376474926,4,15 Java Enum Questions,java67.blogspot.com +0,1376451015,19,I m having trouble installing the Java Plugin on my browser and I can t use any Java applets,self.java +0,1376428773,10,LMAX Disruptor backed Thrift Server implementation half sync half async,github.com +0,1376419859,3,anjlab tapestry liquibase,github.com +0,1376419210,9,DictoMaton dictionaries that are stored in finite state automata,github.com +37,1376417534,15,So I visited Oracle a couple of days ago and wanted to share my experience,self.java +0,1376398133,9,Cloud development with Google App Engine and RedHat OpenShift,self.java +11,1376394716,6,Eclipse Preferences You Need to Know,eclipsesource.com +90,1376389234,10,Java tops C as most popular language in developer index,infoworld.com +6,1376356914,5,A RESTesque Java Web Server,dkuntz2.com +3,1376340048,14,Duke s Choice Community Awards voting ends today Vote for the most innovative product,java.net +0,1376335667,7,So You Think You Can Do Messaging,java.dzone.com +0,1376324491,16,Oracle and ARM to tweak Java Customizing Java SE and Java EE for ARM multicore systems,javaworld.com +0,1376318876,10,Looking for weekly Tutor for a programming II class java,self.java +38,1376304835,9,Microsoft adds Java to its Windows Azure cloud service,computerworld.com +20,1376259825,7,JSR 356 Java API for Websocket JEE7,programmingforliving.com +0,1376259513,6,What is Headless mode in Java,blog.idrsolutions.com +9,1376258533,8,Testing JASPIC implementations using Arquillian and full wars,arjan-tijms.blogspot.com +0,1376252396,7,Book to properly understand learn basic principles,self.java +0,1376233118,5,Beginner Need help in Alice,self.java +6,1376227446,11,Oracle Java Technology Evangelist Simon Ritter discusses Lambdas and Raspberry Pi,jaxlondonblog.tumblr.com +0,1376192919,12,How do I clear a JTextField in a JFrame with a JButton,self.java +10,1376131337,5,JSF 2 2 View Action,hantsy.blogspot.com +2,1376112439,3,Riojug Project Kenai,java.net +2,1376088322,7,Particles not moving along the right vector,self.java +9,1376085881,8,Task engine Engine for asynchronous multistage suspendable tasks,github.com +3,1376085416,3,anjlab tapestry quartz,github.com +0,1376085342,2,Planet Classpath,planet.classpath.org +2,1376085220,12,OpenICOM A JPA Framework for Integrated Collaboration Environments Part 2 Extension Modules,today.java.net +5,1376084962,3,spritepacker maven plugin,github.com +3,1376084550,6,HttpComponents HttpCore 4 3 GA Released,mail-archives.apache.org +0,1376074090,6,Apologies if repost Request for aid,self.java +1,1376069223,8,The embedded EJB container in WebLogic Server 12c,vineetreynolds.blogspot.com +0,1376067840,3,Unmarshalling in Java,self.java +20,1376037016,9,A help for you to create awesome overengineered classes,projects.haykranen.nl +0,1376003315,5,Which IDE do you use,self.java +4,1375997936,6,JSF 2 2 HTML5 friendly markup,jsflive.wordpress.com +25,1375980859,8,Date and Time Manipulation in Java Using JodaTime,blog.smartbear.com +0,1375979173,3,Eclipse vs Netbeans,self.java +1,1375974555,6,JMS listener with WebSphere 7 0,self.java +1,1375972228,10,Can a generic Interface be extended by another generic Interface,self.java +0,1375968413,7,Java 1 6 0 SDK Major Bug,self.java +31,1375967702,8,I m hooked on test driven development TDD,endyourif.com +0,1375963681,11,Awesome location for a Software conference MEDIT Symposium Software Conference 2013,blog.mylaensys.com +0,1375957525,9,Java faces tough climb to catch up to Net,infoworld.com +3,1375947970,11,I think I found a bug in the standard library TreeSet,self.java +21,1375936147,4,Does anyone use NetBeans,self.java +0,1375916892,4,Eclipse ECF for Indigo,self.java +0,1375915996,2,NEED HELP,self.java +0,1375910217,9,Recommend a book to learn java from command line,self.java +0,1375885308,3,A little trick,self.java +0,1375854063,5,Help needed Simple I O,self.java +12,1375836584,8,Apache Tomcat 8 0 0 RC1 alpha Available,tomcatexpert.com +0,1375803136,5,Any good Google Guava resources,self.java +0,1375790812,14,krasa jaxb tools maven plugin for generating JSR 303 Bean Validation Annotations from XSD,github.com +19,1375777387,8,The fallacy of the NO OP memory barrier,psy-lob-saw.blogspot.com +0,1375767127,5,Spring Data Babbage RC1 released,springsource.org +21,1375755296,4,Method calls in constructors,self.java +11,1375747129,17,Coding Standards Question For enumerations is it bad to make fields public instead of creating getter methods,self.java +0,1375726902,4,Increase Java Serialization Performance,drdobbs.com +4,1375690765,8,Java program to convert location in Lat Long,javaroots.com +0,1375675671,4,Business Delegate Design Pattern,youtube.com +0,1375622456,9,JSF CDI Tip of the Day PostConstruct Lifecycle Interceptor,javaevangelist.blogspot.com +14,1375604861,6,ORMs vs SQL The JPA Story,cforcoding.com +12,1375542081,8,Spring Framework 4 0 M2 WebSocket Messaging Architectures,java.dzone.com +19,1375524388,15,swagger maven plugin maven build plugin which helps you generate API document during build phase,github.com +1,1375524241,11,Jetty NPN Next Protocol Negotiation Specification for OpenJDK 7 and greater,github.com +23,1375522660,5,Apache Solr 4 4 released,mail-archives.apache.org +2,1375522606,11,Apache Jackrabbit 2 6 3 released Content Repository JCR 2 0,mail-archives.apache.org +0,1375522297,7,Creating JSF pages with pure Java code,java.dzone.com +0,1375479718,12,Fairly new to Java looking for some help on object arrays GUIs,self.java +0,1375475585,13,JSF Tip Do not put code with side effects in a getter method,weblogs.java.net +63,1375464109,18,Yet another guide on when how to catch exceptions in Java first one to make sense to me,doc.nuxeo.com +0,1375458792,18,Chrome automatically load up site call javaupdateappspot and downloaded something suspicious onto my computer anyone else getting this,self.java +0,1375450291,6,Tess4J Does not read multiple times,self.java +2,1375449186,13,How do I select a string literal from a set of string literals,self.java +0,1375425247,2,Base Patterns,youtube.com +26,1375417199,3,Java Concurrency Animated,sourceforge.net +0,1375414229,6,Covariance with self referential bounded generics,self.java +10,1375394595,4,Getting started with OSGi,self.java +7,1375383692,5,JAX WS SOAP over JMS,biemond.blogspot.de +0,1375370457,6,I need help with my Calculator,self.java +0,1375364788,7,Java Magazine July August 2013 Edition Released,oraclejavamagazine-digital.com +2,1375339709,7,How to highlight invalid components in JSF,blog.oio.de +0,1375339685,2,Design patterns,youtube.com +305,1375313769,11,Caught a funny line in a Java book I was reading,i.imgur.com +4,1375296851,9,Serving multiple images from database as a CSS sprite,balusc.blogspot.com +0,1375295850,19,Can someone explain these practice problems Not Homework just examples I m supposed to already understand for a course,self.java +6,1375232943,10,Naming What s a good general name for this technique,self.java +2,1375220789,10,I m completely new to Java and programming in general,self.java +2,1375219038,7,Fun and easy way to learn Java,self.java +4,1375210668,7,Oracle Java Day at Guadalajara in Mexico,flickr.com +0,1375205222,7,Why Functional Programming in Java is Dangerous,cafe.elharo.com +0,1375195718,5,sviperll task Java multitask library,github.com +60,1375194638,9,10 Common Mistakes Java Developers Make when Writing SQL,blog.jooq.org +0,1375180092,15,I have a habit of clicking random then top all time I found this Heh,imgur.com +12,1375170548,9,Offheapsters Beware Atomicity of Unaligned Memory Access in Java,psy-lob-saw.blogspot.com +0,1375133461,5,Hi guys i need help,self.java +29,1375131887,5,TrieHard a Java Trie Implementation,self.java +0,1375121679,10,Oracle JDBC Driver for DB 12C and Java 7 Out,oracle.com +11,1375117136,12,java Replacing a full ORM JPA Hibernate by a lighter solutionload save,stackoverflow.com +0,1375113855,9,The state of web accessibility in the JavaEE world,blog.akquinet.de +21,1375075752,14,Compute Java Object Memory Footprint at runtime with JAMM Java Agent for Memory Measurements,blog.javabenchmark.org +0,1375064023,5,Java in a few years,self.java +44,1375012133,8,Java 8 Lambdas Default Methods amp Bulk Data,zeroturnaround.com +6,1374998841,6,Two s complement and absolute values,tslamic.wordpress.com +0,1374996030,13,Jaybird 2 2 4 snapshot with basic Java 8 JDBC 4 2 support,firebirdnews.org +4,1374982510,8,Is possible to make fast java desktop applications,self.java +13,1374958419,9,Average rates you ve encountered as an independent consultant,self.java +14,1374931760,8,Was Struts Responsible for Apple s Security Breach,java.dzone.com +0,1374864280,13,Java EE 8 Why all of you are being asked translation from German,translate.google.com +0,1374858595,2,Education point,educationtpoint.blogspot.in +5,1374833666,7,Jato VM What is it s purpose,self.java +4,1374819527,4,Open Map by BBN,self.java +2,1374800896,8,Should be easier comparing against a text file,self.java +0,1374765308,7,Embedding images into e mail with JavaMail,codejava.net +0,1374761151,5,NetBeans 7 4 Beta Released,i-programmer.info +16,1374728688,7,Yet Another Process Library for Java YAPLJ,zeroturnaround.com +5,1374727000,5,Question Regarding Dynamic Class Loading,self.java +6,1374700537,14,Simple and scalable event subscription with STOMP WebSockets SockJS and Spring Framework 4 0,blog.springsource.org +0,1374696260,6,RichFaces 4 3 x Resource Mapping,javaevangelist.blogspot.com +8,1374682330,9,How and When to Use Java s ThreadLocal Object,blog.smartbear.com +11,1374678002,8,What s new in Weblogic 12 1 2,blog.c2b2.co.uk +15,1374645405,13,Lock free queues hitting over 170M ops sec Comparing Inlined and Floating Counters,psy-lob-saw.blogspot.com +3,1374619132,15,What is the simplest program I could write that would tax my cpu the most,self.java +5,1374617790,9,oraconf parse and manipulate Oracle tnsnames files bsd license,self.java +2,1374608457,5,Building Mojarra JSF from source,aplossystems.co.uk +32,1374588010,9,Lambda Expressions Backported to Java 7 6 and 5,blog.orfjackal.net +2,1374583320,5,Glassfish 4 Migrating to Glassfish,blog.c2b2.co.uk +10,1374568487,4,Dependency Badges for Java,versioneye.wordpress.com +8,1374568411,12,London GlassFish User Group September New JMS features in GlassFish 4 0,c2b2.co.uk +5,1374565387,7,Tool for creating UML diagrams from code,self.java +18,1374562800,10,JBoss Tools 4 1 and Developer Studio 7 go GA,community.jboss.org +0,1374512700,9,How do you guys go about looking for libraries,self.java +0,1374501551,4,Why I hate Java,gyazo.com +36,1374499837,7,5 Coding Hacks to Reduce GC Overhead,takipiblog.com +0,1374497928,5,Clojure All The Way Knockout,dimagog.github.io +4,1374487249,13,Oracle SOA Suite 11g Performance Tuning Cookbook a Few Words From the Author,blog.c2b2.co.uk +9,1374481986,6,PrimeFaces Elite 3 5 9 Released,blog.primefaces.org +2,1374481066,6,What s new in Coherence 12c,blog.c2b2.co.uk +2,1374463428,5,dependency management using maven repo,self.java +64,1374412718,6,Log4j 2 Performance close to insane,grobmeier.de +35,1374382473,9,why you should use the final modifier more often,omsn.de +18,1374351025,6,any gaming companies that use java,self.java +0,1374340798,5,Change Attribute in XML file,stackoverflow.com +0,1374318046,10,What are the must read books for Java web developer,self.java +13,1374282070,5,A new subreddit r javasoftware,self.java +5,1374251532,6,Apache XMLBeans headed for the Attic,mail-archives.apache.org +27,1374243418,16,Don t Throw Away Your Old Java Web Framework the Short Single Page History of Twitter,java.dzone.com +6,1374237268,2,Lync API,self.java +0,1374234407,3,Problem at compilation,self.java +1,1374223380,8,Why do Java Preferences work with multiple ClassLoaders,stackoverflow.com +10,1374191163,10,Using and avoiding null from docs of Google Guava library,code.google.com +1,1374157399,17,Any free open source Java library recommendation for communicating with RS232 on a n embedded Windows platform,self.java +0,1374154031,8,When to make a method static in Java,javarevisited.blogspot.com +19,1374133611,4,The Java Modularity Story,branchandbound.net +0,1374086363,2,JAVA Question,self.java +2,1374074665,16,Dev team behind WebSphere Application Server Liberty Profile doing a live Q amp A session tomorrow,self.java +5,1374071450,10,JPA 2 Fetch Joins and whether we should use them,kumaranuj.com +15,1374068225,10,Stateful vs Stateless and Component vs Action web framework benchmark,content.jsfcentral.com +0,1374056440,15,Looking for a way to download presentations from java software Blackboard Collaborate for offline viewing,self.java +10,1374050807,7,Glassfish 4 Performance Tuning Monitoring and Troubleshooting,blog.c2b2.co.uk +2,1374011294,7,Jumi Common test runner for the JVM,jumi.fi +0,1374007063,4,Read Write in Excel,self.java +30,1374002949,5,Maven 3 1 0 Release,maven.40175.n5.nabble.com +6,1373985793,9,Apache Maven Survey Which Java version are you using,docs.google.com +0,1373982888,8,Maven 3 1 0 Released What a Disappointment,insaneprogramming.be +0,1373971686,3,Java amp Javascript,twitter.com +0,1373965732,6,First Java class having loop issues,self.java +0,1373964391,8,Question Java does not throw overflow Exception Why,self.java +0,1373941236,12,How do I maintain an artifact separate from pojects that use it,self.java +63,1373930560,28,Computer Science Professor uses java software to analyze The Cuckoo s Calling and unmasked the authour as J K Rowling who wanted to write under a fake name,entertainment.time.com +1,1373919243,6,Apache Ant 1 9 2 Released,mail-archives.apache.org +0,1373915583,2,Mistletoe Project,mistletoe.qos.ch +1,1373915440,6,Oracle Discontinuing sun reflect Reflection getCallerClass,infoq.com +0,1373908873,8,New problem with nested for loops and java2d,self.java +0,1373902018,3,Java Application HELP,self.java +5,1373895192,4,Flyway 2 2 Released,flywaydb.org +15,1373893553,13,Fast 130M ops second lock free queue eliminating run to run performance variance,psy-lob-saw.blogspot.com +9,1373893016,10,How to control memory usage and avoid the dreaded OutOfMemoryError,self.java +1,1373887602,7,Upcoming Spring Framework conference The Spring Exchange,skillsmatter.com +56,1373878639,5,Understanding Weak References in Java,weblogs.java.net +7,1373873016,6,Lazy sequences implementation for Java 8,javacodegeeks.com +21,1373837536,8,Java 7 vs Groovy 2 1 performance comparison,kubrynski.com +0,1373834251,11,Safe Saver from AVG will disable your Javascript in ALL browsers,self.java +4,1373830729,10,SQLJ an ISO standardized DSL for embedding SQL in Java,en.wikipedia.org +4,1373808164,7,Configuring Spring and Hibernate for Standalone Applications,girlcoderuk.wordpress.com +14,1373797383,17,How quickly will Java software vendors migrate to Java 8 given the presence of Lambda Expressions poll,java.net +38,1373777767,20,How do I expand my Java skills when my professional experience only uses core Java and a subset of J2EE,self.java +8,1373760129,5,Java EE 8 wish list,arjan-tijms.blogspot.com +0,1373753019,11,Oracle WebLogic 12 1 2 Now With EclipseLink MOXy JSON Binding,blog.bdoughan.com +0,1373743666,8,Oracle WebLogic Server 12 1 2 is available,blogs.oracle.com +31,1373719337,4,Java s Reflection API,rodrigosasaki.com +0,1373711104,6,Import CA root certificate into JDK,hussainanjar.com +1,1373710559,10,Oracle JDeveloper and ADF 12c 12 1 2 new features,oracle.com +0,1373699720,6,5 reasons to avoid code comments,pauloortins.com +6,1373666457,7,Java Methods selection with Overloading and Overriding,stackoverflow.com +0,1373622711,5,EARs WARs And Size Matters,adam-bien.com +20,1373622346,4,Hibernate adds OSGi Support,infoq.com +3,1373600124,6,Question about Grails and the enterprise,self.java +3,1373599525,5,Help with a home project,self.java +2,1373587444,24,timed wait for input from console e g if no input typed and return hit within 5 seconds doesn t wait for next line,self.java +0,1373556577,11,Need to do image processing in Java having trouble finding libraries,self.java +0,1373531786,8,Highly Available PHP sessions using memcached 4 Coherence,blog.c2b2.co.uk +41,1373527826,18,Throwing null in Java means you re throwing NPE but don t do that to your co workers,stackoverflow.com +1,1373524841,3,Interoperability Java Frege,mmhelloworld.github.io +0,1373504852,4,XPath for Streaming JSON,self.java +1,1373494173,9,Just In Time compilation more than just a buzzword,javaeesupportpatterns.blogspot.com +3,1373493994,10,Parallel ready SplittableRandom proposed by Guy Steele for JDK 8,cs.oswego.edu +2,1373492549,7,JSF in the trenches About developing ZEEF,balusc.blogspot.com +5,1373491312,1,hawtio,hawt.io +8,1373490935,7,Apache Maven War Plugin 2 4 Released,mail-archives.apache.org +0,1373488743,5,Linting in pre commit hooks,self.java +5,1373443107,4,Lightweight Asynchronous Sampling Profiler,jeremymanson.blogspot.com +9,1373442830,4,Streaming audio in Java,self.java +0,1373417203,3,Request Netbeans intro,self.java +3,1373402181,8,Apache Camel 2 10 6 CVE 2013 2160,mail-archives.apache.org +1,1373402000,12,Tips or ideas for a long term beginner to intermediate level project,self.java +1,1373397779,12,How do you Pass the Gap Between Hello World and Viable Programs,self.java +0,1373395692,15,Can you help with a plugin dependency issue in a recent Netbeans 7 3 installation,self.java +4,1373384736,5,Mojarra 2 1 24 released,java.net +4,1373382226,7,Testing Java 8 in 3 Easy Steps,insightfullogic.com +0,1373376830,8,Reliable Java to COM bridges for commercial use,self.java +46,1373375534,8,Why so few Java posts in r programming,self.java +0,1373373261,8,Searching book about best practices for saving settings,self.java +13,1373370222,10,jOOQ s reason for being compared to JPA LINQ JDBC,jooq.org +0,1373366964,8,CapeDwarf Google App Engine apps on JBoss AS,jaxenter.com +0,1373366834,5,Using CDI with JSF Portlets,community.jboss.org +0,1373366774,7,Java EE or Spring Framework Rule 3,howtojboss.com +16,1373352664,26,LINQ has been quite a successful but also controversial addition to the NET ecosystem Many people are looking for a comparable solution in the Java world,java.dzone.com +10,1373342517,5,Using HDFS from Java Coding,voidtricks.com +4,1373317371,13,What are my primary choices for a GUI in a desktop java program,self.java +2,1373312854,6,Commons Collections 4 0 alpha1 released,mail-archives.apache.org +24,1373312805,6,Apache Tomcat 7 0 42 released,mail-archives.apache.org +5,1373306019,9,First release of AArch64 ARMv8 64 bit OpenJDK port,mail.openjdk.java.net +7,1373283839,7,JBoss community and EAP are things changing,blog.c2b2.co.uk +3,1373280554,6,GlassFish 4 Features for High Availability,blog.c2b2.co.uk +39,1373225597,12,Winner of Darpa s Virtual Robotics Challenge coded almost entirely in Java,robots.ihmc.us +2,1373216889,5,Java RXTX serial port unplugged,self.java +19,1373202061,8,Code rant When Should I Use An ORM,mikehadlow.blogspot.ca +6,1373190768,9,MetaModel Providing Uniform Data Access Across Various Data Stores,infoq.com +21,1373170374,7,Why should I teach my students Java,self.java +1,1373158539,12,Java Use of class with no modifier versus class with public modifier,self.java +1,1373156574,9,Why can I not monitor local processes using JConsole,self.java +7,1373119552,5,JGoodies Tutorial up to date,self.java +1,1373083919,2,Javaee7 Resources,javaee7.zeef.com +16,1373057178,8,OpenIMAJ Open Intelligent Multimedia Analysis toolkit for Java,openimaj.org +0,1373032316,6,Unable to create a TLS connection,self.java +6,1373026759,3,GWT 2 Tutorial,self.java +6,1373022021,6,The Heroes of Java Kevlin Henney,blog.eisele.net +21,1373009573,8,Thinking of switching from Eclipse to IntilliJ IDEA,self.java +0,1372994651,6,Spring Web MVC vs JAX RS,infoq.com +0,1372963654,11,Using the File Upload Component in JSF 2 2 Oracle tutorial,apex.oracle.com +4,1372925492,8,Late Night Game Development at its Best WillNeedJava,imgur.com +0,1372907840,33,How do you create a java program on Google App Engine that is able to write HTML or return information so that something else can write HTML as a result of receiving parameters,self.java +3,1372890102,8,Concurrency in Java and odd behaviour from RWLock,self.java +11,1372883350,8,Strategy Pattern using Lambda Expressions in Java 8,java.dzone.com +21,1372877776,23,The classpath article on Wikipedia currently tells you how to avoid smashing 20 diff JARs in the command line to run a program,en.wikipedia.org +26,1372868587,6,Monster Component in Java EE 7,antoniogoncalves.org +12,1372857628,10,Webinar Functional Programming without Lambdas by Spring Source July 18th,springsource.org +6,1372851632,12,Developers expect Java EE 7 to become predominant within 2 3 Years,weblogs.java.net +0,1372846141,4,IllegalStateException in Response SendRedirect,javaroots.com +0,1372845583,5,Need help on beginner program,self.java +0,1372829840,5,Java Trivia 10 bullet points,javaroots.com +0,1372804644,5,Bean Validation 1 1 examples,rmannibucau.wordpress.com +0,1372804041,11,An illustration of Expression Language 3 0 in a Servlet environment,weblogs.java.net +17,1372794034,5,Guacamole HTML5 Clientless Remote Desktop,guac-dev.org +1,1372793968,11,Maven Javadoc Plugin 2 9 1 Javadoc vulnerability CVE 2013 1571,maven.40175.n5.nabble.com +3,1372783349,14,X Post r Androiddev Firebase Announces New Java Client Library for Realtime Data Synchronization,firebase.com +0,1372779043,9,Unable to locate Compiler Error in Eclipse and Maven,javaroots.com +6,1372776245,4,Capabilities of Java EE,self.java +8,1372762379,9,Basic clustering with Weblogic 12c and Apache Web Server,self.java +7,1372742167,4,Exception Dashboard for Java,self.java +26,1372713635,6,My First Java Library Java Stocks,github.com +12,1372690443,8,Any sample project architecture using EJB 3 0,self.java +3,1372685993,15,Looking for an XML less sample Spring Spring MVC project to clone for trouble shooting,self.java +0,1372680266,6,Slick2D help post anyone help please,self.java +5,1372666643,15,A mini util for measuring connectivity IPC UDP TCP latency How low can it go,psy-lob-saw.blogspot.com +0,1372662705,21,Just wondering if anyone can help me out starting a story for a game I m currently making in Java p,self.java +0,1372656313,12,Difference between Math Random and the nextInt method of the Random class,self.java +7,1372650295,3,JavaFX GUI Design,self.java +4,1372639596,4,Shenandoah GC An overview,rkennke.wordpress.com +16,1372637079,4,Spring Framework Starting out,self.java +0,1372624487,2,Help please,self.java +7,1372622371,6,A question about game design concepts,self.java +0,1372603097,10,How would you add labels to this sweet hurricane map,self.java +17,1372602513,12,SugarJ library based language extensibility for example inline XML with syntax validation,sugarj.org +17,1372601748,5,Machine Learning Library for Java,self.java +1,1372589473,8,What s new in CDI 1 1 presentation,youtube.com +11,1372571508,7,java OO design of a Battleships game,self.java +0,1372502705,7,Injecting An ExecutorService With Java EE 7,adam-bien.com +36,1372481174,7,Differences between Math sin and StrictMath sin,self.java +0,1372471480,4,Dj cristian Electro house,youtube.com +2,1372455760,8,Sirix a versioned XML storage system Berkeley DB,github.com +1,1372455337,7,Hama 0 6 2 has been released,mail-archives.apache.org +3,1372455273,6,Apache Camel 2 10 5 released,mail-archives.apache.org +6,1372455170,5,Jetty 9 0 4 v20130625,dev.eclipse.org +1,1372455029,13,Perfidix tool for developers to conveniently and consistently benchmark Java code ala junit,disy.github.io +67,1372449675,8,Yo dawg I herd you like internal errors,imgur.com +0,1372448164,5,JSF 2 2 and HTML5,infoq.com +0,1372447163,3,Help with GUI,self.java +2,1372446989,10,JSF 2 2 Pass Through Attributes in PrimeFaces 4 0,blog.primefaces.org +0,1372441540,15,HELP I need to write these methods for an assignment and cannot figure them out,self.java +0,1372433091,10,Learn Play Framework 2 for Java with this Video Book,packtpub.com +15,1372430940,3,Git Cheat Sheet,git-tower.com +28,1372421310,5,Tricks to speed up Eclipse,stackoverflow.com +0,1372420445,6,Recommended Coding Rules for Java Developers,dzone.com +3,1372419969,6,How to disable a console output,self.java +2,1372414777,13,Looking for a library to export a resultset to a spreadsheet as csv,self.java +0,1372412816,5,How do I fix this,i.imgur.com +1,1372380345,12,We ve Got Your Back New Relic Supports Windows Azure Web Sites,blog.newrelic.com +10,1372374578,9,Code coverage for GitHub hosted Java projects with Coveralls,blog.eluder.org +20,1372373183,10,Build Your First Counter Android App Using This Quick Tutorial,simpledeveloper.com +0,1372368190,8,Java EE 7 support in Eclipse 4 3,blogs.oracle.com +14,1372365758,54,I have a db with data in it accounts invoices articles comments images and so on I need to build a web app to search create update delete these things and perform some business processes on them QUESTION What the quickest easiest way to build a web UI to do these things in Java,self.java +4,1372342805,8,Remove certain item or clear whole OmniFaces cache,whitebyte.info +0,1372342014,5,Eclipse Kepler By the Numbers,java.dzone.com +25,1372333866,8,The Rise and Fall and Rise of Java,marakana.com +10,1372316032,10,Handling feature flags in a Java EE application using Togglz,hascode.com +0,1372310227,9,Help Needed Window on top of Desktop Not Hidden,self.java +2,1372276040,6,Need some info on Java certificates,self.java +0,1372262858,4,Recommend a good book,self.java +57,1372255305,5,Eclipse 4 3 Kepler released,eclipse.org +3,1372210910,10,Server side events EventSource with Servlet 3 0 async support,stackoverflow.com +0,1372201030,12,What should I do when I see a security prompt from Java,java.com +2,1372186215,9,JLayer s MP3 data values and general DSP questions,self.java +5,1372184708,9,Build Your First Android App From Scratch Using Java,simpledeveloper.com +0,1372184334,12,Way too many ways to do the same thing Too many choices,livememe.com +0,1372180926,7,Javaland Execution in the Kingdom of Nouns,steve-yegge.blogspot.com.ar +1,1372158371,16,GlassFish 4 Webinar Series A new series of short and snappy educational webinars about GlassFish 4,c2b2.co.uk +87,1372149855,10,6 tips to make eclipse lighter prettier and more efficient,blog.scramcode.com +21,1372142952,7,Garbage Collection in Java G1 Garbage First,insightfullogic.com +21,1372099509,9,G1 vs Concurrent Mark and Sweep Java Garbage Collector,blog.sematext.com +35,1372096643,12,Is there a site like codeacademy com where I can learn Java,self.java +3,1372088471,15,Anyone know of a good tool library for code analysis in regards to symbol linking,self.java +0,1372085534,4,Runtime Error in JavaHelp,self.java +0,1372077180,11,How to add two Integers in Java without using or operator,javarevisited.blogspot.com.br +12,1372014136,5,Trying Liberty 8 5 5,arjan-tijms.blogspot.com +0,1371975343,7,What is Important in Secure Software Design,swreflections.blogspot.ca +19,1371952284,7,Java visualizer based on Online Python Tutor,cscircles.cemc.uwaterloo.ca +21,1371926709,5,Java Job Market Advice Please,self.java +3,1371888268,7,Purpose of Abstract class without Abstract methods,self.java +0,1371885616,7,Define different main method format in Java,dotnethearts.blogspot.in +1,1371849751,45,If a java program requests data from a server and is waiting for a response does can the program progress to the next request from a different server while it waits or does it simply wait for the first request before proceeding to the next,self.java +45,1371848718,21,I just added a slew of cool projects to GitHub that I ve had sitting around for sometime looking for input,self.java +0,1371816220,7,Remediation Support Top Eclipse Kepler Feature 2,eclipsesource.com +0,1371816184,8,Eclipse Platform Improvements Top Eclipse Kepler Feature 3,eclipsesource.com +0,1371816127,8,RAP 2 x Top Eclipse Kepler Feature 4,eclipsesource.com +17,1371803024,8,Scalable performance counters for multi threaded Java apps,psy-lob-saw.blogspot.com +1,1371785568,4,Need a learning project,self.java +0,1371773156,17,Java and online banking Does Java help Linux users security as well x post from r linux,self.java +0,1371751382,14,TIL Basic Grails functionality depends on some pretty hilarious hacks using undefined JDK behaviour,twitter.com +0,1371751011,4,Help Null Pointer Exception,self.java +3,1371704535,3,Session Bean interfaces,self.java +0,1371694650,13,Can anyone explain to me the difference between static methods and instance methods,self.java +0,1371681718,7,I need help with a java problem,self.java +5,1371672136,5,Examples of Swing Best Practices,self.java +79,1371668065,5,JDK 8 is feature complete,mail.openjdk.java.net +4,1371661808,9,Anyone know a good SQL parsing class or library,self.java +3,1371658417,9,Java SE Development Kit 7 Update 25 Release Notes,oracle.com +3,1371645831,6,Embedded war using Jetty and Gradle,fernandorubbo.blogspot.com.br +2,1371644051,24,Walter Bright asks about the implementations of the Initialization on demand holder idiom s generated code guarantees allowed by JSR 133 Java Memory Model,reddit.com +0,1371638513,11,Getting java security InvalidAlgorithmParameterException the trustAnchors parameter must be non empty,self.java +1,1371638447,13,Question Ideas on streaming Audio mp3 from Java web app to html frontend,self.java +1,1371628525,11,Thoughts about subject observer publisher subscriber and emulation of self types,gallium.inria.fr +0,1371625359,7,Every time i install a java update,i.imgur.com +0,1371616200,4,What is a NullPointerException,self.java +4,1371598911,6,Java 2D Game Programming Platformer Tutorial,youtube.com +39,1371596377,9,Java 7u25 has been released includes 40 security fixes,oracle.com +0,1371593081,10,Reconsidering using Java for web projects please give some feedback,self.java +34,1371591787,13,JDK now comes with an expiration date Unknown what happens when it expires,oracle.com +0,1371572851,3,UnsupportedClassVersionError In Java,javaroots.com +2,1371570816,5,Fledgling Coder Needs Advice Badly,self.java +1,1371559859,5,Java SMPP Application Working on,github.com +2,1371521537,11,I m not looking for the best IDE but the quickest,self.java +0,1371514754,11,Will the equals operator ever be fixed with respect to Strings,self.java +11,1371508285,7,Oracle Java Critical Patch Update June 18,oracle.com +12,1371503904,1,Javapocalypse,youtube.com +1,1371496604,6,Dev environment question Windows OSX Linux,self.java +4,1371486879,15,Bringing Closures to Java 5 6 and 7 No Need To Wait for Java 8,mseifed.blogspot.se +12,1371477824,5,The Future of Java Standards,docs.google.com +13,1371441886,3,Data Structures Book,self.java +7,1371411095,5,Good books for learning Java,self.java +1,1371403839,6,Java serialization for a specific protocol,self.java +5,1371363004,14,As a C MVC developer what should I be familiarizing myself with in Java,self.java +8,1371357688,9,I just started java and need help on something,self.java +2,1371308635,7,Most intensely fun way to learn Java,self.java +40,1371306400,8,Shenandoah A pauseless GC for OpenJDK from RedHat,rkennke.wordpress.com +0,1371302570,7,JPA 2 Dynamic Queries Vs Named Queries,kumaranuj.com +18,1371294000,10,Apache Commons Net 3 3 released ftp client mail client,mail-archives.apache.org +7,1371293921,5,Apache Qpid 0 22 released,mail-archives.apache.org +0,1371267454,5,Help Reqest Teamspeak API Work,self.java +0,1371260543,2,Strange error,self.java +0,1371253006,2,Beginner help,self.java +6,1371244146,7,RichFaces 5 0 0 Alpha1 Release Announcement,bleathem.ca +40,1371243771,3,JavaZone 2013 Javapocalypse,youtube.com +1,1371239325,4,infoShare 2013 nagrania video,javaczyherbata.pl +3,1371237423,11,WebSphere Application Server and Developer Tools V8 5 5 available now,ibmdw.net +4,1371218317,11,Echo3 Web Application Framework announces the release of version 3 0,self.java +4,1371211387,3,License to Code,youtube.com +85,1371209897,4,JavaZone 2013 the javapocalypse,jz13.java.no +4,1371199604,5,Newbie question about custom menu,self.java +24,1371154898,15,Adam Bien s presentation on infoShare 2013 conference in Gdansk Poland on good JavaEE practices,youtube.com +0,1371141864,4,What Should I Use,self.java +16,1371128089,6,Deploy Java Apps With Docker Awesome,blogs.atlassian.com +0,1371126721,9,Mylyn Reviews with Gerrit Top Eclipse Kepler Feature 8,eclipsesource.com +1,1371126648,8,avc binding dom Java DOM binding with annotations,code.google.com +0,1371093327,7,having trouble with java homework on methods,self.java +0,1371075924,15,Zarz dzenie z o ono ci przez tr jpodzia logiki Open closed principle w praktyce,javaczyherbata.pl +41,1371063543,10,Java EE 7 officially launches bringing HTML5 and WebSocket support,jaxenter.com +6,1371061266,9,What would you recommend for cheap reliable tomcat hosting,self.java +10,1371043173,6,Java Magazine May June 2013 Released,oraclejavamagazine-digital.com +32,1371041215,36,The only thing I will remember in 40 years time from my development career is an instant muscle memory recall of typing mvn eclipse eclipse I ll probably be mumbling it at my nursing home too,self.java +2,1370992652,6,Ultra fast reliable messaging in Java,kubrynski.com +10,1370990922,15,A cross platform exe wrapper for a jar file that I just stumbled across today,launch4j.sourceforge.net +50,1370985520,9,Guava simple recipes to make your Java code cleaner,onthejvm.blogspot.com +19,1370976070,7,Oracle restores Java time zone updating tool,h-online.com +1,1370971311,20,Is there a way for a Java application not Android to get a computer to connect to a specific SSID,self.java +7,1370971077,7,Oracle restores Java time zone update tool,infoworld.com +19,1370961176,6,GlassFish 4 brings Java EE 7,blog.eisele.net +7,1370951393,7,Spring Data JPA vs EclipseLink vs Hibernate,self.java +8,1370949984,8,EGit 3 0 Top Eclipse Kepler Feature 9,eclipsesource.com +10,1370933837,5,OmniFaces 1 5 is released,balusc.blogspot.com +2,1370918147,7,What is the point of abstract methods,self.java +3,1370892282,10,Java wrapper for svdlib a fast sparse SVD in C,bitbucket.org +0,1370885915,11,Brand new JRE 7 update 21 install doesn t even verify,self.java +44,1370863126,42,MapDB provides concurrent Maps Sets and Queues backed by disk storage or off heap memory It is a fast and easy to use embedded Java database engine This project is more than 12 years old you may know it under name JDBM,mapdb.org +5,1370853748,12,Marketing done right JRebel trials can win you an awesome geek trip,zeroturnaround.com +20,1370845605,12,What s New in JMS 2 0 Part Two New Messaging Features,oracle.com +0,1370826927,20,JAVA Is there any good tutorials for making a picture slideshow ie java app that displays photos in slideshow fashion,self.java +0,1370820531,2,Getting started,self.java +23,1370809153,22,If anyone is interested here a bunch of other Redditors and I are making a tournament for the awesome programming game RoboCode,self.java +11,1370808047,4,A bizzarre JavaFx bug,raintomorrow.cc +1,1370798589,4,Functional Interfaces in JDK8,passionandtech.blogspot.com +9,1370797134,6,Recommend some interesting technologies to explore,self.java +19,1370769912,9,Quick note on Oracle Java SE Time Zone Updates,openj.dk +13,1370743028,7,Best way to deploy Java Desktop Applications,self.java +5,1370739893,7,Array Buffer Object is disabled Please help,self.java +0,1370731904,12,Can t make my code work What am I doing wrong here,self.java +12,1370731113,24,We made a Pacman clone in Java for our AP Computer Science final project here it is How can we make it less crappy,self.java +1,1370714976,4,Active rendering tearing lagging,self.java +1,1370696879,11,Deployment Overlays A new feature of the JBoss EAP 6 1,blog.akquinet.de +65,1370695982,7,Oracle Discontinues Free Java Time Zone Updates,developers.slashdot.org +2,1370680799,2,Project dependencies,self.java +0,1370664828,7,How to make a list of objects,self.java +0,1370663367,6,Look Mate No Setters No XML,eclipsesource.com +9,1370640268,12,Facebook unveils Java based Presto engine for querying 250 PB data warehouse,gigaom.com +167,1370633638,44,I had an old man ask me to help him update his Java He had parkinsons and couldn t keep his hand steady enough to click the checkbox Scumbag java updater still no focus on the string It s only been 9 years now,i.imgur.com +11,1370614159,7,Code driven no annotations ORM for Java,github.com +6,1370610129,9,Style Guide for staying below 80 chars per line,self.java +4,1370588511,11,Annotation based Dependency Injection in Spring 3 and Hibernate 3 Framework,java-tv.com +12,1370587699,7,Asynchronous Servlet and Java EE Concurrency Utilities,weblogs.java.net +0,1370579024,4,Help with NetBeans please,self.java +15,1370537945,6,Oracle Java Virtual Developer Day 2013,oracle.6connex.com +0,1370523749,7,RAP Client Scripting Phase II 2 3,eclipsesource.com +4,1370516589,22,Does anyone know of simple framework in java for playing wav files that supports turning volume up and down as they play,self.java +11,1370508450,6,Joint union in type parameter variance,stackoverflow.com +1,1370486745,3,Help with Jython,self.java +0,1370478878,4,Help with Birthday Paradox,self.java +2,1370470986,13,What is the best resource for an absolute beginner to coding learn Java,self.java +0,1370452866,17,Friend and I got into an argument on this one I say its B Am I right,imgur.com +1,1370442500,8,Intermediate level Java programmer interested in game development,self.java +7,1370424928,4,Spring Security Authentication Provider,baeldung.com +0,1370420580,5,Spring Framework 4 0 Announced,infoq.com +20,1370417623,10,Announcing MapStruct a new code generator for Java bean mappings,mapstruct.org +2,1370397697,4,Complex Event Processing Comparison,self.java +1,1370391953,4,need if else help,self.java +0,1370390912,4,Peter Seibel on Maven,twitter.com +30,1370386910,12,Oracle to lop off Java s least secure bits to save servers,theregister.co.uk +3,1370383340,5,How do programs save settings,self.java +1,1370382759,4,Enum lt E gt,self.java +13,1370372181,10,Java EE 7 is final Thoughts Insights and further Pointers,blog.eisele.net +6,1370371799,10,All Java EE 7 JSRs have published their Final Releases,blogs.oracle.com +2,1370371654,5,Java EE 7 Deployment Descriptors,antoniogoncalves.org +2,1370368250,23,Beginner Java game Developer here Want to add some others like me on skype so we can help each other build programs together,self.java +13,1370364481,4,Java java code formatter,self.java +9,1370360907,11,WildFly 8 0 0 Alpha1 Release and a Bit of History,java.dzone.com +10,1370352512,9,What is Lambda Calculus and why should you care,zeroturnaround.com +1,1370344960,10,Java EE 6 Web Component Developer Certification Implementing MVC Design,epractizelabs.com +7,1370299300,10,Mapping enums done right with Convert in JPA 2 1,nurkiewicz.blogspot.com +97,1370263944,12,This is my last assignment for my Java unit ready for submission,imgur.com +3,1370262538,7,Short jhat tutorial diagnosing OutOfMemoryError by example,petermodzelewski.blogspot.sg +2,1370261962,7,Multicast file transfer protocol library for java,self.java +12,1370227004,13,Why is the toString method of arrays behavior different than the List class,self.java +11,1370192146,7,Code academy LCtHW like resources for Java,self.java +0,1370185730,4,TOMCAT service is failing,self.java +50,1370176214,4,JVM Performance Magic Tricks,takipiblog.com +12,1370110673,14,Ruby dev looking to lean on Java for performant web services Where to start,self.java +8,1370090454,11,New version of la4j 0 4 0 fast matrix Java library,la4j.blogspot.ru +9,1370087897,6,Where to find more JavaFx styles,self.java +0,1370067827,7,A simple Chaatroom in Java Programing Language,taskstudy.blogspot.com +4,1370063757,8,How to properly handle InnoDB deadlocks in Java,self.java +69,1370038021,13,MongoDB Java Driver uses Math random to decide whether to log Command Resultuses,github.com +4,1370036994,6,Apache ACE distribution framework with OSGi,ace.apache.org +5,1370029735,7,Understanding JSF 2 0 Performance Part 1,content.jsfcentral.com +0,1370028537,4,Head First Design Patterns,codeescapism.com +1,1370015080,5,Images won t get drawn,self.java +0,1370013330,3,Spring Custom Events,hmkcode.com +12,1370009680,13,What s new in JEE 7 blogging from reza rahman s oracle talk,selikoff.net +2,1370003504,8,Java on SPARC T5 8 Servers is FAST,blogs.oracle.com +4,1369998379,16,Maintaining the security worthiness of Java is Oracle s priority The Oracle Software Security Assurance Blog,blogs.oracle.com +30,1369995987,10,r java logo proposal to be featured on the poster,self.java +0,1369977783,11,Java noob here What is the fuss about the API documentation,self.java +0,1369944177,5,What happens in my programs,cdn.uproxx.com +3,1369941772,9,OmniFaces 1 5 Release Candidate now available for testing,arjan-tijms.blogspot.com +18,1369936010,4,SemanticMerge now speaks Java,codicesoftware.blogspot.com +6,1369931325,7,How to create bookmarkable pages using JSF,openlogic.com +0,1369925127,7,Looking For Memebers For A Development Team,self.java +13,1369920905,9,Stackifier for Java Make sense of your stack trace,stackifier.com +0,1369918949,9,Liferay Portal Practical Introduction Updated for Liferay 6 1,phloxblog.in +2,1369914027,7,What s with the hate on gridbag,self.java +0,1369886479,6,Finding a point on an oval,self.java +11,1369880451,39,Coming from c where do I start I m used to Net and Visual Studio What is the best way to dive right in What tools do I need Am I going to weep over not having Resharper P,self.java +5,1369864931,7,Web Developer trying to increase knowledge base,self.java +5,1369860640,13,Looking for some feedback for my little project djinn a graphical dependency explorer,self.java +0,1369859927,12,Hi I am working on a project and I need some insight,self.java +0,1369832532,7,Java Game Help Null In Integer Comparison,self.java +0,1369816825,6,Takipi God Mode in Production Code,takipi.com +11,1369781188,6,Porting Perl 6 to the JVM,jnthn.net +0,1369768212,14,Text adventure game Need help with picking up items and moving to players inventory,self.java +39,1369763589,9,What code do you find yourself retyping a lot,self.java +3,1369759404,5,Gradle eXchange London October 28th,skillsmatter.com +4,1369754313,4,JEEConf 2013 trip report,branchandbound.net +6,1369743363,15,Some strange behavior with Eclipse RCP EMF GMF and linked diagrams inside a custom project,self.java +0,1369742330,12,Is it possible to find out if this program is already running,self.java +0,1369726936,3,Problem with openjdk7,self.java +6,1369689033,9,JSF choice between legacy components and fashionable performance killers,ovaraksin.blogspot.com +0,1369687445,16,If you have like 15 minutes to spare to write some code in java please help,self.java +0,1369686727,9,Help Cant add subtract multipy or devide in java,self.java +44,1369679921,11,r IntelliJIDEA A subreddit for discussion and assistance for IntelliJ IDEA,reddit.com +15,1369670424,12,Java8 plugin that adds supports for persistent local variables l C99 static,github.com +19,1369668506,10,Proof of Concept LambdaSpec how testing will look with Java8,blog.project13.pl +1,1369664847,12,I have created a scripting language and I am looking for feedback,bitbucket.org +6,1369657741,6,Abstract Class vs Interface in Java,javarevisited.blogspot.com.br +0,1369639404,6,Understanding Dynamic Proxy Spring AOP Basics,javaroots.com +2,1369617551,11,r ProgrammingJokes is new Feel free to post your best Joke,reddit.com +0,1369612846,17,I hate java just leaving this here because I can t find enough people to vent to,i.imgur.com +58,1369594211,9,gag some annotations that will help you express yourself,code.google.com +14,1369586088,7,Joeffice The Open Source Java Office Suite,joeffice.com +12,1369584926,7,New Maven plugins for simpler architecture management,h-online.com +9,1369570532,8,Apache OpenWebBeans 1 2 0 has been released,mail-archives.apache.org +7,1369569496,16,Announce XChart 2 2 0 Released MATLAB theme CSV import export and high res Chart export,blog.xeiam.com +15,1369522806,7,Tuning the Size of Your Thread Pool,infoq.com +11,1369520719,7,A question regarding the programming language Java,self.java +16,1369504487,12,Creating a simple batch job in Java EE 7 using JSR 352,planetjones.co.uk +12,1369497722,10,Implementing LWJGL OpenGL draw method into the Slick2D render method,self.java +24,1369435320,11,I m starting a Java Programming Internship what should I know,self.java +8,1369433131,8,Java EE 7 and JAX RS 2 0,jaxenter.com +1,1369431661,7,Is there an alternate link to Slick2d,self.java +0,1369386373,6,Item 5 Avoid Creating Unnecessary Objects,kodelog.com +2,1369368765,8,Java GC tuning for High Frequency Trading apps,onthejvm.blogspot.sg +46,1369361168,10,Matured Java open source project looking for some extra hands,self.java +5,1369341633,7,Writing acceptance tests with Selenium and Jnario,sebastianbenz.de +7,1369258710,6,JSR 356 Java API for WebSocket,java.dzone.com +0,1369252316,9,setSelected with JRadioButton r new JRadioButton 3 not working,self.java +1,1369230724,10,Avoiding Java memory layout pitfalls with examples and funky tools,psy-lob-saw.blogspot.sg +42,1369229553,13,Useful Eclipse Plugins that didn t made it to the Top 10 list,jyops.blogspot.in +0,1369222140,8,Anyone know of a WYSIWYG editor in Java,flikode.com +1,1369221418,4,MDB messing REST service,self.java +1,1369218196,4,R I P JavaBlogs,osintegrators.com +8,1369192460,2,Network Programming,self.java +0,1369184556,20,Trying to test loading in a sprite from a sprite sheet and getting a null pointer exception Anyone know why,self.java +33,1369175329,14,The Great Java Application Server Debate with Tomcat JBoss GlassFish Jetty and Liberty Profile,zeroturnaround.com +9,1369166518,3,Java vs Scala,self.java +0,1369160407,7,Can t Play Sound More Than Once,self.java +5,1369152083,16,Trying not to re invent the wheel Something like Tasker but in Java xpost r javahelp,reddit.com +3,1369146787,1,Interfaces,self.java +16,1369142344,5,Functional Programming in 5 Minutes,slid.es +2,1369133912,9,Acquiring and releasing cloud servers in Java using JClouds,syntx.co +17,1369121924,10,How to Examine and Verify your Java Object Memory Layout,psy-lob-saw.blogspot.com +7,1369117519,6,Getting Started with RabbitMQ in Java,syntx.co +4,1369091374,7,Switching between data sources when using DataSourceDefinition,jdevelopment.nl +0,1369079836,6,jdk 1 4 thread httpurlconnection example,self.java +9,1369076600,13,Monitoring Memory Usage inside a Java Web Application with JSF PrimeFaces and MemoryMXBean,blog.javabenchmark.org +1,1369073063,11,Is it normal good practice to embed versioning in package name,self.java +0,1369069422,9,New Object Oriented feature I would like to see,self.java +0,1369059579,8,Thumbs db getting returned when searching for PDFs,self.java +5,1369057894,7,Asynchronous logging using Log4j ActiveMQ and Spring,syntx.co +4,1369049504,10,Using Rhinoslider with image and youtube content in JSF pages,kahimyang.info +3,1369048926,5,JSF 2 2 New namespaces,jsflive.wordpress.com +1,1369048545,9,Storing arrays in Infinispan 5 3 without wrapper objects,infinispan.blogspot.com +50,1369047877,7,Five Java Synchronizers you might not know,blog.josedacruz.com +0,1369041671,6,Toggle Key in Java Stack Overflow,stackoverflow.com +3,1369026358,6,Sending MIDI file to a DAW,self.java +0,1369019833,9,Can anyone help me with a Java Programming Question,self.java +6,1368992688,2,DEMUX Framework,demux.vektorsoft.com +0,1368991746,11,Anyone know how to make a Galaga style game using gridworld,self.java +31,1368991041,5,Is intellij better than netbeans,self.java +0,1368979394,5,Please help with netbeans issue,self.java +10,1368976533,8,Apache Wicket 6 5 vs JSF 2 0,codebias.blogspot.com +8,1368965899,8,Understanding Serialization and Constructor Invocations gt Hacking Singletons,kodelog.com +8,1368960484,10,Starting Maven based development of App Engine Endpoints REST services,planetjones.co.uk +0,1368938080,7,How could Scala do a merge Sort,dublintech.blogspot.sg +1,1368928583,9,Landed a Job How can I get even better,self.java +8,1368910891,6,Maven Dependency Plugin 2 8 Released,maven.40175.n5.nabble.com +10,1368870224,8,JSF Performance Mojarra improves dramatically with latest release,blog.oio.de +0,1368855067,6,Question Needing help on a project,self.java +0,1368847818,9,I want to learn Java Where do I start,self.java +3,1368825156,6,Maven Site Plugin 3 3 Released,maven.40175.n5.nabble.com +1,1368807836,13,Java 1 7 Deployment with SCCM MDT Your Java version is insecure workarounds,labareweb.com +13,1368802632,10,Getting Started with JMH a new Java Micro Benchmarking framework,psy-lob-saw.blogspot.com +0,1368799213,5,Spring Config File Best Practices,deepakgaikwad.net +40,1368782539,5,Lambda Expressions The Java Tutorials,docs.oracle.com +0,1368778075,5,Who doesn t uses pojo,qkme.me +1,1368771980,7,JSTL with IntelliJ and Tomcat 7 problem,self.java +4,1368765346,7,Looking for a good Android development tutorial,self.java +0,1368760197,8,QUESTION Reducing number of bytes in an image,self.java +4,1368754222,5,How to distribute my game,self.java +4,1368749819,14,Looking for practice exams for 1z0 804 OCJP7 not braindumps What do you recommend,self.java +0,1368734512,6,Handling string input for a calculator,self.java +0,1368724801,8,QUESTION Simple 3D rendering in a JAVA game,self.java +93,1368699215,14,IntelliJ IDEA is the base for Android Studio the new IDE for Android developers,blog.jetbrains.com +0,1368690592,8,Why Integer MAX_VALUE Integer MAX_VALUE result in 2,self.java +1,1368687219,17,Newbie How do I change the icon of a JTree parent node according to its child nodes,self.java +2,1368666834,22,Game develpoers of reddit I want to create a 3D JAVA game like Minecraft where did you learn to program 3D java,self.java +6,1368652206,7,Using JMH to Benchmark Multi Threaded Code,psy-lob-saw.blogspot.com +0,1368648636,15,Java coffee naming have a lot to do with being afraid to do proper drugs,self.java +2,1368627987,6,Invoking EJB3 in WebSphere using Spring,ykchee.blogspot.com +0,1368615191,5,Help with basic Java calculator,self.java +15,1368593604,13,NQP compiler toolkit and Rakudo Perl 6 in NQP being ported to JVM,6guts.wordpress.com +1,1368576000,10,Is Java For Dummies a good resource for learning Java,self.java +11,1368552575,10,Remove all null references from a list in one line,stackoverflow.com +3,1368550513,7,Transactions and exception handling in EJB EJBTransactionRolledbackException,palkonyves.blogspot.hu +0,1368536514,5,Java GUI interface with scroll,self.java +0,1368518455,11,Why the amp does not Java s Deprecated attribute have this,imgur.com +0,1368497360,8,Started the Java Tutorial Built My First App,i.imgur.com +7,1368477520,6,JSF 2 2 Stateless views explained,jsfcorner.blogspot.com +23,1368476760,9,Reactor a foundation for asynchronous applications on the JVM,blog.springsource.org +11,1368468889,6,Jetty 9 0 3 v20130506 Released,jetty.4.x6.nabble.com +4,1368468798,6,Apache Tomcat 7 0 40 released,markmail.org +7,1368462445,7,DIY Java App Server on Redhat OpenShift,dmly.github.io +12,1368456529,6,Garbage Collection in Java part 3,insightfullogic.com +0,1368436806,7,need help passing a string and fast,self.java +20,1368436232,7,What s your all time favorite lib,self.java +25,1368363980,6,Java EE CDI in one page,kodelog.com +11,1368350921,8,Does the new keyword necessarily denote heap allocation,self.java +0,1368319210,19,New to Java And I need some critical help here I don t know whats wrong about my code,i.imgur.com +9,1368313464,3,Web app framework,self.java +7,1368312586,8,Simple Java based JSF 2 2 custom component,jdevelopment.nl +23,1368289827,7,Should package name be plural or singular,self.java +0,1368274533,10,Why isn t Java used for modern web application development,programmers.stackexchange.com +8,1368242308,17,Is it feasible to represent integers or BigIntegers as an ArrayList of the number s prime factors,self.java +13,1368241548,21,Looking for top tier Java books on the same level or higher quality as Head First Java Desperate for good material,self.java +5,1368240222,7,Getting mouse keyboard events without a GUI,self.java +2,1368224138,7,Anyone have experience with the Restlet Framework,self.java +12,1368222080,11,To Scala or Groovy Which is better for a mathematical approach,self.java +8,1368212558,4,JSF Configuration Context Parameters,blog.oio.de +5,1368192617,6,Spring MVC and the HATEOAS constraint,city81.blogspot.co.uk +3,1368188411,34,I have a table inside a scrollPane I m trying to auto scroll to the last row in the scroll pane but it only goes to second to last and hides the last one,self.java +2,1368167581,7,Using Spring PropertySource and Environment in Configuration,blog.jamesdbloom.com +11,1368135289,10,Gil Tene Azul CTO InfoQ talk on JVM inner workings,infoq.com +13,1368122017,6,Apache Tomcat 6 0 37 released,mail-archives.apache.org +3,1368118479,15,Free Java Tutorials For Absolute Beginners Episode 4 JDK Secret Explore CodeMink Life Gadgets Technology,codemink.com +12,1368085461,6,Charlie Hunt Fundamentals of JVM Tuning,emergingtech.chariotsolutions.com +16,1368085393,6,Doug Lea Engineering Concurrent Library Components,emergingtech.chariotsolutions.com +0,1368070931,9,I need a loop that will crash my program,self.java +17,1368058655,6,Memoized Fibonacci Numbers with Java 8,blog.informatech.cr +4,1368057005,5,What is a Java Module,self.java +11,1368052793,9,Java EE 7 JMS 2 0 With Glassfish v4,piotrnowicki.com +5,1368043547,6,Java EE CDI Disposer methods example,byteslounge.com +27,1368038461,9,Should I throw an exception or return a boolean,self.java +0,1368036151,10,I m in highschool doing a Java project help please,self.java +0,1368033880,9,Score big with JSR 77 the J2EE Management Specification,javaworld.com +1,1368029442,11,Video Considerations for using NoSQL technology on your next IT project,skillsmatter.com +0,1368027112,19,Java Runtime Environment Version Selection in the New Java Plug In Technology introduced in Java SE 6 update 10,oracle.com +23,1368023841,7,The Great Java Application Server Debate GlassFish,zeroturnaround.com +1,1368023424,4,Copying Objects Cost Efficiently,self.java +8,1368000768,7,How would I do this in Java,self.java +0,1367975230,7,Can JNA load libraries from a jar,self.java +8,1367974712,9,Has anyone here taken the AP Computer Science course,self.java +9,1367945706,5,Liferay 6 1 custom portlets,self.java +8,1367934579,13,Tomb Raider now runs in jDosBox 3dfx Voodoo 1 emulation ported from MAME,jdosbox.sourceforge.net +4,1367932661,13,Am I right in thinking this is a Java Web App I want,self.java +6,1367929981,6,JPA JPQL Intermediate Queries with NamedQuery,tothought.cloudfoundry.com +0,1367905715,6,Best ways in layman s terms,self.java +1,1367904929,11,help advice for multilingual virtual keyboard X post from r javahelp,self.java +0,1367897940,7,In Need of some Java Programming Help,self.java +0,1367882397,3,g12 homework ArrayLists,self.java +0,1367875393,7,I need help getting shapes to move,self.java +0,1367868113,22,Simple question but I could really use the answer How do I make program run on its own outside of the compiler,self.java +5,1367853987,16,Best Source to learn Java with goal of Android development for a complete beginner to programming,self.java +15,1367834421,2,JVM Internals,blog.jamesdbloom.com +4,1367825720,3,JSF Performance Tuning,blog.oio.de +5,1367808609,8,Your Thoughts Graph DataStructures Boolean boolean bit Arrays,self.java +60,1367794645,7,Java Code To Byte Code Part One,blog.jamesdbloom.com +0,1367794058,4,Java homework help please,self.java +0,1367786678,3,Java instrumentation tutorial,blog.javabenchmark.org +0,1367780890,4,A different clock program,self.java +24,1367766572,8,What Properties in Java Should Have Looked Like,cafe.elharo.com +28,1367705521,7,What is the best Java networking library,self.java +0,1367697027,3,Java for Babies,howtogetrich.com +0,1367639332,7,Optimal way to do a for loop,self.java +9,1367594531,9,Java Enterprise Edition 7 WebSockets but no cloud support,h-online.com +0,1367594421,5,Java EE 7 moves forward,infoworld.com +20,1367573294,11,Integrating WebSockets and JMS with CDI events in Java EE 7,blogs.oracle.com +0,1367536825,9,How can I better understand drawings Graphics in Java,self.java +2,1367531057,8,The Great Java Application Server Debate JBoss AS7,zeroturnaround.com +0,1367529477,16,SpringMVC router Play Rails style routing configuration file for Spring MVC x post from r javapro,resthub.github.io +29,1367524228,10,Play Framework 2 1 The Bloom is Off The Rose,stupidjavatricks.com +5,1367522179,15,Hibernate Validator 5 0 1 and the story behind the missing 5 0 0 Final,in.relation.to +13,1367521857,9,Mark Little s Blog Java EE 7 is approved,community.jboss.org +2,1367521539,7,Proxy Chaining Aspects on Java Dynamic Proxy,dmly.github.io +1,1367520588,9,Creating Rest Services With Rest Easy In Web application,javaroots.com +14,1367514900,32,The Checker Framework enhances Java s type system to make it more powerful and useful This lets software developers detect and prevent errors in their Java programs x post from r javapro,types.cs.washington.edu +2,1367510963,4,Integrating Java with C,m.javaworld.com +13,1367507642,2,Javafx concerns,self.java +0,1367507118,6,Suggestions for existing Java project anyone,self.java +0,1367505932,10,I am new to java and need help and advice,self.java +0,1367445752,2,Eliminating types,self.java +0,1367435178,13,Run test case and test suite generated by Selenium IDE from command line,github.com +0,1367433950,4,Tapestry 5 3 7,tapestry.apache.org +2,1367433880,5,Qi4j SDK Release 2 0,qi4j.org +27,1367428033,5,Standard Java API for JSON,infoq.com +8,1367427718,4,JDK 8 M7 update,mail.openjdk.java.net +17,1367416906,9,How to write less code with JMS 2 0,java.net +75,1367373384,4,New Java Decompiler WIP,self.java +0,1367372009,4,Announcing FX Experience Tools,fxexperience.com +2,1367360063,8,Need help keeping the mouse inside a JFrame,self.java +0,1367359332,5,Migrate to 21st century UI,self.java +1,1367358068,5,Requesting advice on Classpath issues,self.java +0,1367357774,15,Confused about updating a JLabel when a user selects a new image via a filechooser,self.java +2,1367348620,3,JEE Archetypes Guidance,self.java +5,1367342496,7,Please explain assets to me in java,self.java +0,1367339070,12,Anything I need to know for the AP Computer Science A test,self.java +4,1367335983,8,Async I O NIO2 question about AsynchronousServerSocketChannel accept,self.java +1,1367335299,8,Staff Availability Project no idea where to start,self.java +0,1367310733,3,Beginner java help,self.java +18,1367305773,7,Java EE 7 JSR 342 is final,blog.oio.de +0,1367281327,15,Can anyone write a script to take images from IG and post on a subreddit,self.java +19,1367270831,6,Apache Commons Codec 1 8 Released,mail-archive.com +0,1367262999,19,jLabel setText problem lt Java gt It s a question I asked somewhere in AskReddit and redirected me here,reddit.com +5,1367262591,11,JSF 2 2 Final Draft Approved Java EE 7 Coming Soon,blogs.jsfcentral.com +6,1367249279,5,Java application accessibility and networking,self.java +15,1367244547,9,Why Java is One of the Best Programming Language,javarevisited.blogspot.com.br +0,1367232761,6,jsp hook in liferay 6 1,javadispute.com +1,1367231805,5,Building a jar in netbeans,self.java +26,1367210396,6,Java nested classes in a nutshell,to-string.com +6,1367182885,15,Im having trouble with hashmaps could someone please explain to me where im going wrong,self.java +0,1367166305,5,Back from JavaOne Russia 2013,technicaladvices.com +0,1367159310,4,Seeking help with project,stackoverflow.com +17,1367152322,6,Apache Camel 2 11 0 Released,mail-archive.com +0,1367152172,7,HttpComponents HttpClient 4 2 5 GA release,mail-archive.com +0,1367149352,8,Help Update text in html from txt file,self.java +12,1367074545,8,JavaEE Next Java EE 7 8 and Beyond,infoq.com +11,1367068739,9,Java RAII and Long Lived objects is it possible,self.java +7,1367013569,8,Asynchronous Loggers for Low Latency Logging apache org,news.ycombinator.com +8,1367011819,5,Java 8 Hold the train,mreinhold.org +23,1367011487,22,Used DrJava to win a simulation AI competition for class in comments link to watch this competition go every hour all night,i.imgur.com +12,1367006629,6,JSR 356 Java API for WebSocket,oracle.com +8,1367005904,9,Is it possible to have a variable for classes,self.java +0,1366992251,7,PingTimeout fr WANTED Stacktraces on Hotspot JVM,pingtimeout.fr +12,1366949887,7,The eclipse plugin CodeRuler Where to download,self.java +26,1366915283,7,The Great Java Application Server Debate Tomcat,zeroturnaround.com +17,1366883903,7,Swing AWT sufficient to make a game,self.java +2,1366863857,13,Issues with using Java in Runescape Java Platform SE 7 U21 has crashed,self.java +0,1366860477,3,Trivia Game Testers,self.java +1,1366844940,1,Sound,self.java +8,1366843041,14,ModCFML allows for Tomcat hosts to be created based on IIS or Apache configuration,modcfml.org +0,1366827999,22,Lets talk about the main method Is there any real difference between String args String args String args or even String lolz,self.java +0,1366820934,18,Having issues coding an insertion method for a 2 3 4 5 Tree Will pay money for help,self.java +8,1366813874,13,Give Java Caching Standard API a go using Infinispan 5 3 0 Alpha1,infinispan.blogspot.de +10,1366804493,4,Practical introduction to JRebel,code-thrill.com +9,1366783903,15,tbuktu bigint An asymptotically fast version of java math BigInteger x post from r javapro,github.com +8,1366777698,4,Java Networking book recommendations,self.java +1,1366754637,12,Is it possible to compile on the GPU with CUDA or OpenCL,self.java +3,1366752436,4,ADF examining memory leaks,ramannanda.blogspot.com +19,1366749043,6,Apache TomEE 1 5 2 released,blogs.apache.org +27,1366727346,11,Understanding Java Garbage Collection and what you can do about it,youtu.be +12,1366725127,14,Meet my first Github project SqlToJson for mapping SQL query ResultSet into JSON file,self.java +5,1366719700,7,Much ado about null Stop fighting Null,adamldavis.com +4,1366712442,7,NextFlow An Object Business Process Mapping Framework,nextflow.org +11,1366711245,15,Here s a scalable XML document database engine powered by JVM technology take a look,self.java +0,1366692775,4,final exam practice problems,self.java +14,1366682962,6,Tips on becoming a better programmer,self.java +2,1366667323,4,Is there Java 0day,istherejava0day.com +9,1366642190,15,Full Disclosure SE 2012 01 Yet another Reflection API flaw affecting Oracle s Java SE,seclists.org +5,1366641947,3,Java Download down,self.java +3,1366583354,4,Looking to learn Java,self.java +0,1366582744,6,Fractal Generator on Github is FREE,self.java +1,1366566655,5,Simple publish subscribe suing J2SE,self.java +3,1366556630,23,ModeShape distributed hierarchical transactional and consistent data store with support for queries full text search events versioning references and flexible and dynamic schemas,jboss.org +4,1366553065,11,PingTimeout fr Extracting iCMS data from garbage collector logs Hotspot JVM,pingtimeout.fr +73,1366551715,6,Should IBM buy Java from Oracle,self.java +7,1366549291,8,JSF Expression Language EL Keywords and Implicit Objects,javaevangelist.blogspot.gr +8,1366536458,7,Fault injection in your JUnit with ByteMan,blog.javabenchmark.org +45,1366494999,10,Can t think of a good class name Try this,classnamer.com +6,1366454504,8,What is the function of the Toolkit class,self.java +0,1366439557,12,Whats the problem with JSF A rant on wrong marketing arguments JavaServerFaces,reddit.com +11,1366417589,7,Java 8 release delayed until next year,infoworld.com +3,1366412328,7,Role in Servlet 3 1 security constraint,weblogs.java.net +13,1366411858,7,Drools decision tables with Camel and Spring,javacodegeeks.com +4,1366410710,9,Newbie How do you make a run able file,self.java +0,1366410522,12,How you know you have spent too much time looking at code,self.java +20,1366406834,6,Project Lancet Surgical Precision JIT Compilers,github.com +0,1366403661,3,Octagon class optimization,self.java +0,1366400362,4,Minuteproject as a workspace,minuteproject.blogspot.fr +3,1366398682,8,Java makes mobile comeback with Tabris 1 0,h-online.com +0,1366398033,3,Slow Java compiler,self.java +31,1366353913,5,Java 8 will be late,blog.oio.de +0,1366336964,16,Can I get a code review to go over some concepts i m trying to implement,self.java +35,1366302817,6,Java 8 Schedule Secure the train,mreinhold.org +14,1366287748,8,Using Jasper Reports to create reports in Java,jyops.blogspot.in +8,1366281877,3,OOP Newbie Project,self.java +0,1366281829,17,We have a new build screen looking for ideas suggestions on how to maximise it s use,self.java +0,1366261399,3,JAVA Training Noida,self.java +3,1366234327,7,Where to find help for intermediate Java,self.java +5,1366227370,11,Getting Started with Java ME Embedded 3 3 on Keil Board,blogs.oracle.com +14,1366227210,11,Enjoy the magic of asciidoctor in java with asciidoctor java integration,lordofthejars.com +0,1366223744,5,Need help with a project,self.java +15,1366212841,9,The Great Java Application Server Debate Part 2 Jetty,zeroturnaround.com +15,1366210641,7,JSF 2 2 JSR 344 is final,blog.oio.de +27,1366207300,8,Java 7 Update 21 Security Improvements in Detail,blog.eisele.net +16,1366206769,9,Non blocking IO in Servlet 3 1 By Example,weblogs.java.net +3,1366204660,7,Difference between else if and switch case,self.java +0,1366171722,6,Opening the design interface in Eclipse,self.java +4,1366168399,10,Beginner Help with text based RPG saving game and such,self.java +0,1366161412,10,Help with a Guess the Number program using GUI components,self.java +8,1366159283,14,Beginner Finished the MyBringBack Java series on learning Java where do I go now,self.java +2,1366154885,13,Is there a reference similar to Java Precisely for Java SE 6 7,self.java +7,1366144913,25,Beginner question is there a way to communicate like a chat with another PC behind nat without the use of a central or proxy server,self.java +14,1366131623,15,Why does changing the returned variable in a finally block not change the return value,stackoverflow.com +2,1366124724,6,Oracle Java SE Critical Patch Update,oracle.com +3,1366123893,4,Template Pattern Applied KeyStoreTemplate,ykchee.blogspot.com +15,1366121459,6,best practices no op in java,self.java +10,1366115919,7,Video Martin Thompson Performance Testing Java Applications,skillsmatter.com +5,1366100922,6,WordPress A Java Fanboys Red Pill,contentreich.de +1,1366098664,2,Puush Roullete,dl.dropboxusercontent.com +4,1366058961,2,Gridworld Menu,self.java +44,1366037994,7,meta Posting to r java for help,self.java +0,1366035779,2,String Intern,kodelog.wordpress.com +0,1366034581,3,Colorblind assist program,self.java +0,1366032601,2,Research Question,self.java +2,1366030519,4,JBoss EAR Deployment Question,self.java +0,1366026896,7,Document literal style web service with Java,dinukaroshan.blogspot.com +62,1366019783,23,Hey guys I made a Google Reader clone with JavaEE6 and AngularJS Give it a try Also it s open source see comments,commafeed.com +2,1366015203,8,Need to take picture when light is sensed,self.java +0,1365995723,12,How to make an image appear for an elapsed period of time,self.java +2,1365995274,13,Do you put braces in a new line or on the same line,self.java +15,1365993728,2,Java sound,self.java +0,1365989998,8,Cannot figure out how to prune a tree,self.java +1,1365934145,8,need help with action buttons on my work,self.java +0,1365923264,6,Problems with Java RE 7 U17,self.java +2,1365879680,6,Uploading Your Jar to Maven Central,kirang89.github.io +0,1365877575,28,In the following statement what does the int in parentheses mean Also why is it necceasry to have that AND the first int rand1 int Math random oneLength,self.java +0,1365871665,28,Can someone give me a graphics 101 please All of the things on the internet are too far ahead of me because I literally know nothing of graphics,self.java +24,1365866517,7,JUnit the Difference between Practice and Theory,eclipsesource.com +0,1365846483,7,JavaEE 7 with GlassFish on Eclipse Juno,blog.eisele.net +0,1365810771,8,r java Having issues generating random equations se,self.java +0,1365783200,10,Do you have any advice of how to start programming,self.java +0,1365778772,12,Need to create a new Forum page for my website in Java,self.java +0,1365771925,5,What Spring Integration is about,ruchirabandara.blogspot.sg +7,1365769363,4,Gradle Ain t Imperative,gradleware.com +0,1365750175,9,Grails user get current date amp time from controller,grails.1312388.n4.nabble.com +21,1365712506,11,Check that your code is thread safe with JUnit and ContiPerf,blog.javabenchmark.org +0,1365698015,6,If MOS is down then what,blogs.oracle.com +7,1365697994,15,Including 2 versions 64 and 32 bit of the same library in Java NetBeans project,self.java +0,1365697514,13,Why do Java Packages use a DNS Like Naming Convention But in Reverse,self.java +0,1365682787,4,Upgrade to Java 7,self.java +0,1365681120,7,License of com sun files in OpenJDK,self.java +0,1365654467,4,Help with networking lab,self.java +11,1365593889,6,Structs failsafe coming to the JVM,infoworld.com +13,1365573492,7,Where to get java JDK source code,self.java +34,1365542681,9,First 4 Java EE 7 JSRs to go final,blogs.oracle.com +0,1365534132,21,Can someone help me with a Quicksort Algo I have all most Algos working except for quick sort any ideas help,self.java +0,1365519747,8,http databen ch Persistence Benchmark for the JVM,self.java +4,1365512571,7,How to write a tokenizer in Java,cogitolearning.co.uk +0,1365512458,7,Help with simple Java string problem D,self.java +0,1365504890,3,ByteBuffer to String,self.java +0,1365478676,9,Java noob that desperately needs help with multiple things,self.java +76,1365471220,18,UC San Diego Computer Scientists Develop First person Player Video Game that Teaches How to Program in Java,jacobsschool.ucsd.edu +0,1365468747,7,I have a noob question about subclasses,self.java +4,1365458153,6,Happy Releases with Maven and Bamboo,marcobrandizi.info +1,1365454355,6,JVM Biased Locking and micro benchmark,blog.javabenchmark.org +0,1365451281,12,Not sure where to ask this so I will start here arrays,self.java +1,1365449300,9,Which layout manager should I use in this program,self.java +2,1365440776,7,Generating an FXML file from JavaFX code,self.java +4,1365433638,7,Java Applet amp Web Start Code Signing,oracle.com +11,1365432485,3,MyFaces vs Mojarra,blog.oio.de +4,1365426927,5,Java Exception handling best practices,javarevisited.blogspot.com.br +5,1365418695,6,Java s Pattern and Matcher Class,self.java +44,1365401005,10,135 Million messages a second between processes in pure Java,psy-lob-saw.blogspot.com +2,1365397400,16,Can anyone offer insight on using InnoDB s row locking and transactions with Java Oracle JDBC,self.java +1,1365395930,8,How do you match a string with quotes,self.java +0,1365371369,5,Will Pay for Java Help,self.java +2,1365371151,14,What is the fastest way to compare a string to a Set multiword string,self.java +0,1365368851,17,I keep being told that a new Java update is available whenever I start up my PC,self.java +86,1365368463,9,Help me write a better open source Java decompiler,self.java +0,1365366108,6,FishCAT GlassFish 4 Community Acceptance Testing,theserverside.com +6,1365356781,6,Web Services Performance Testing with JMeter,blog.javabenchmark.org +17,1365347508,10,What s new in Java EE 7 s authentication support,arjan-tijms.blogspot.com +0,1365330369,9,Read from command line while program is running Windows,self.java +18,1365321999,5,Apache Struts 1 EOL Announcement,struts.apache.org +0,1365306168,13,Help me be ready for my next interview X post to r learnprogramming,self.java +21,1365304961,7,Metascala a tiny JVM written in Scala,github.com +0,1365290409,23,Making a minecraft mod and when testing it this error pops up despite lwjgl being listed in the libraries folder for the program,self.java +0,1365280161,5,Looking for a java mentor,self.java +17,1365230915,19,This is one of those bugs that could haunt a man to his grave any insight would be amazing,self.java +7,1365210653,6,A little story on Java Monitors,dinukaroshan.blogspot.com +21,1365193571,8,Java EE 7 and JAX RS 2 0,oracle.com +17,1365192467,7,Web Framework Benchmarks Round 2 techempower com,news.ycombinator.com +0,1365171916,6,I don t always throw exceptions,i.imgur.com +0,1365164997,9,IntelliJ 12 1 adds JavaFX 2 better retina support,jaxenter.com +0,1365134871,3,Java while loops,self.java +0,1365127902,9,A little test for you java fans out there,self.java +0,1365085950,7,classes are dead long live to lambdas,weblogs.java.net +6,1365083484,10,Richard Warburton not happy with Java 8 s Lambda API,mail.openjdk.java.net +8,1365083264,11,Want to get started with Java for fun Looking for advice,self.java +17,1365082412,3,Folder Structure Advice,self.java +3,1365047123,6,Newbie JDBC Question regarding DB credentials,self.java +28,1365035260,7,IntelliJ 12 1 adds JavaFX 2 support,jetbrains.com +38,1365017969,10,Unit test I checked in just now waiting for fallout,self.java +0,1365017192,3,Linked List Confusion,self.java +11,1365007970,9,Where are they learning this erroneous Java Swing concept,self.java +21,1365002241,9,Java Commons DBCP broke my app c3p0 fixed it,flowstopper.org +3,1364983290,6,Updated Jaybird Firebird JDBC driver Roadmap,jaybirdwiki.firebirdsql.org +21,1364976233,21,Starting with Java SE 7 Update 21 all Java Applets and Web Start Applications should be signed with a trusted certificate,blogs.oracle.com +7,1364962698,9,Embedded JSON database EJDB Java API binding now available,ejdb.org +0,1364961917,3,Generics help please,self.java +6,1364937702,6,Java EE Saviours and Frozen Time,blogs.oracle.com +0,1364925259,5,Need help with sorting words,self.java +0,1364921120,13,What do I need for second form of ID for oracle certification test,self.java +13,1364914616,8,Getting two bytes per ASCII character in Hex,self.java +14,1364897551,10,Is there a way to control chassis fans through java,self.java +0,1364832066,4,JEP 154 Remove Serialization,openjdk.java.net +10,1364824728,10,Top 10 Java Books you don t want to miss,jyops.blogspot.in +39,1364823864,10,Apache Commons FileUpload 1 3 released fix CVE 2013 0248,mail-archive.com +16,1364767653,9,NoSQL Inside SQL with Java Spring Hibernate and PostgreSQL,jamesward.com +1,1364764802,6,ZeroTurnaround Shifts to Open Source Hardware,zeroturnaround.com +5,1364754836,5,Help with Android Location crashing,self.java +12,1364751378,12,Hibernate ORM 4 2 0 Final and 4 1 11 Final Released,in.relation.to +10,1364749380,9,What is the correct way to translate my application,self.java +10,1364731350,10,Github for Binaries Bintray let into the wild by JFrog,jaxenter.com +26,1364664750,10,As a developer I want to use XML extremely easily,kubrynski.com +0,1364644635,3,Creating an explosion,self.java +2,1364612902,12,Java EE 7 and EJB 3 2 support in JBoss AS 8,jaitechwriteups.blogspot.in +1,1364605072,5,JFrame and g drawLine issue,self.java +9,1364591991,8,Is Java s sound API good for games,self.java +5,1364589134,2,SimpleORM whitepaper,simpleorm.org +2,1364586547,2,EMF DiffMerge,wiki.eclipse.org +32,1364585785,6,Apache Tomcat 7 0 39 released,mail-archives.apache.org +5,1364585707,7,Maven Release Plugin 2 4 1 Released,maven.40175.n5.nabble.com +6,1364585257,6,JavaFX 3D Preview for Java 8,youtube.com +0,1364583389,6,Alignment issues using multiple text editors,self.java +0,1364582806,7,Why We Need Lambda Expressions in Java,java.dzone.com +0,1364579186,11,Any real functional fundamental difference between Open jdk and Oracle jdk,self.java +0,1364555933,3,SeaBattle Java beginner,self.java +6,1364551852,8,Rebel Labs interview Sven Efftinge founder of Xtend,zeroturnaround.com +33,1364516770,12,Dollar Java API that unifies collections arrays iterators iterable and char sequences,dollar.bitbucket.org +5,1364512173,25,Problem installing Netbeans on Ubuntu 12 10 no compatible jdk was found however according to java version java version 1 7 0_15 It should work,self.java +0,1364507620,7,Why do people say J2EE or JEE,self.java +0,1364488427,4,Framework Benchmarks TechEmpower Blog,self.java +0,1364476718,3,Securing J2EE Applications,javajeedevelopment.blogspot.fr +13,1364468834,5,Theming in JSF 2 2,jdevelopment.nl +35,1364431415,14,Why does Java switch on ordinal ints appear to run faster with added cases,stackoverflow.com +0,1364418956,6,Need help with coding a question,self.java +2,1364418316,10,On JavaScript and Java s missed potential in the browser,reddit.com +5,1364417592,6,Open source Java iOS tools compared,javaworld.com +1,1364414670,7,Tools to start a new Java project,jroller.com +83,1364396565,4,Everything about Java 8,techempower.com +2,1364395004,8,What is Object Oriented Programming A Critical Approach,udemy.com +0,1364389786,5,Reviewer for Java OOP Interview,self.java +0,1364384751,17,After a couple of years developing raw Java this is how I felt when I met Maven,youtu.be +4,1364371128,5,Periodic Thread Processing in Java,drdobbs.com +98,1364339846,6,Java Scaring Tigers since 5 0,i.imgur.com +3,1364338133,5,Throwing Events in Java Game,self.java +0,1364336822,13,does Anyone know a good music file converter to convert to mp3 format,self.java +4,1364329851,28,Java memory leak detection crucial part of APM applications coded in Java still can leak Tools help but only if their users know how to use them wisely,correlsense.com +1,1364328954,13,Taking the WebSphere Liberty Profile for a spin using Intellij on the iMac,planetjones.co.uk +0,1364324988,9,r java Need your help guys with an assignment,self.java +13,1364316735,16,Scanner vs BufferedReader Is Scanner just a kludge until students are advanced enough to use streams,self.java +3,1364316106,34,r java I need your help I am taking a JAVA class however from what I can tell almost everything I am learning is either bad practice or deprecated Ie Setlayout null setBounds etc,self.java +0,1364315457,4,Inner classes in java,javaroots.com +7,1364306994,3,Gradle build progress,mail.openjdk.java.net +3,1364306344,6,Cryptography Using JCA Services In Providers,ykchee.blogspot.com +32,1364306048,5,JDK 8 Early Access Releases,jdk8.java.net +2,1364304825,14,Step by step guide on How to make use of Nashorn with Java 7,blog.idrsolutions.com +14,1364295288,3,Java and databases,self.java +2,1364292703,10,Best way to open user s browser on double click,self.java +0,1364284778,5,My List template class Improvements,self.java +0,1364260645,5,Getting back in the saddle,self.java +17,1364258916,15,How do I isolate an open source JAR behind an API without introducing version conflicts,self.java +0,1364242803,8,Installing JSF 2 2 on JBoss AS 7,mastertheboss.com +6,1364241532,6,Matching Engine with 1M sec operations,self.java +0,1364240629,5,Configuring CDI with Tomcat example,byteslounge.com +7,1364229114,6,Stateless views in JSF 2 2,jdevelopment.nl +17,1364225885,10,Java 8 Starting to Find Its Way into Net Mono,infoq.com +6,1364218514,6,ReentrantLock vs Intrinsic Lock in Java,javarevisited.blogspot.com.au +0,1364206679,3,Can Anyone help,self.java +0,1364192633,8,Java Hacker Uncovers Two Flaws In Latest Update,informationweek.com +6,1364166037,10,When in the order of opperations does explicit casting occur,self.java +23,1364160483,7,Introducing Kids to Java Programming Using Minecraft,blogs.oracle.com +0,1364152180,10,Taking WAS Liberty Next Profile for a spin in Intellij,planetjones.co.uk +0,1364145506,15,noob alert How change the content of a label once a button has been clicked,self.java +30,1364139834,50,Is the book Java Performance Tuning still relevant It s almost 10 years old now and on a precursory flip through I saw several mentions JVM tricks that are simply outdated Is anyone familiar with this book Is it worth picking up Are there any good books on the subject,self.java +0,1364124049,8,Free but Shackled The Java Trap GNU Project,gnu.org +0,1364071296,10,Error when trying to parse a string as an int,self.java +1,1364066398,6,Looking for feedback on app idea,self.java +16,1364053731,15,Why I have planned to move to Apache TomEE the next generation Java EE server,netbeanscolors.org +0,1364016592,2,ContextClassloader usages,javaroots.com +0,1364010961,8,Developing QnA app using Spring MangoDB and BootStrap,satishab.blogspot.sg +0,1363997009,11,Code in if Statement Not Being Called When Clearly True Help,self.java +9,1363987973,3,Saving Java EE,blog.dblevins.com +0,1363978105,10,Quick question How does the java Hash table generate hashes,self.java +0,1363975474,12,noob alert I need help sending an attachment to my gmail account,self.java +0,1363972566,17,Can I zip up data files in my jar and deploy them when the jar is ran,self.java +0,1363969031,9,Problem with receiving objects with objectinputstream Very strange bug,self.java +1,1363964844,2,Inheritance Question,self.java +0,1363954998,4,Refactor to remove duplication,matteo.vaccari.name +12,1363948738,25,Integrate AngularJS into a Maven based build process and develop automated unit tests and end to end tests with Jasmine and Arquillian for AngularJS applications,blog.akquinet.de +0,1363923983,5,Input from TextFile and StandardInput,self.java +0,1363921507,15,Java email program need to find way of printing quantities of emails with same domain,self.java +0,1363912934,1,Confused,self.java +1,1363893540,2,Using JComboBoxes,self.java +6,1363868815,11,A JVM language with a difference Eclipse Xtend now with Android,jaxenter.com +6,1363863605,9,New and Noteworthy in Liberty 8 5 Next beta2,ibm.com +0,1363859276,5,Java Stuff my funny motto,javastuff.blogspot.com +284,1363839493,10,Oracle Corporation Stop bundling Ask Toolbar with the Java installer,change.org +1,1363831032,6,Minipulating and then executing a string,self.java +0,1363828614,5,Observer design pattern removeObserver question,self.java +0,1363819073,4,Monte Carlo simulation help,self.java +5,1363804287,12,Out of curiosity What tools are you using to program in Java,self.java +12,1363800360,16,Why I will use Java EE instead of Spring in new Enterprise Java Projects in 2012,javacodegeeks.com +0,1363790010,10,If Java was a Haskell Part 2 The Type System,java.dzone.com +1,1363785811,2,Java CVE,self.java +3,1363783264,12,JBoss BRMS adding a declarative data model to the Customer Evaluation demo,howtojboss.com +6,1363768560,3,Reasons for IntelliJ,java.dzone.com +15,1363765834,12,How do I make the leap from Java novice to Java intermediate,self.java +8,1363761286,4,Java Puzzle Square root,corner.squareup.com +103,1363755008,1,Bonding,xkcd.com +0,1363727230,4,Help Java Programming Assignment,self.java +0,1363723313,7,I need some help on a project,self.java +6,1363694895,3,ZeroTurnaround Acquires Javeleon,zeroturnaround.com +4,1363693814,5,Groovy 2 1 2 released,jira.codehaus.org +15,1363691487,12,What objects do modern java programmers use for arrays and hash tables,self.java +3,1363689851,4,My Roman Numeral Converter,self.java +0,1363684767,10,Migration of GlassFish Eclipse plugins and Java EE 7 support,blogs.oracle.com +0,1363662943,16,Is there an online Java compiler that isn t buggy as hell and has decent features,self.java +22,1363661789,15,Dependency Injection with Spring Resource Inject or Autowired They re all similar but not identical,flowstopper.org +0,1363631209,2,Duke Images,duke.kenai.com +0,1363629198,8,Want to start from the beginning with Java,self.java +1,1363623207,6,Having issues with java beans OpenJDK7,self.java +0,1363613226,2,constructor help,self.java +16,1363609212,7,Cleaning up from the JDK7 OSX nightmare,self.java +0,1363608420,3,Experts please help,self.java +1,1363598538,13,Whats in a name Reason behind naming of few great projects Part II,javaroots.com +41,1363591432,16,Optimization of a lock free concurrent queue a journey from 10M to 130M updates a second,psy-lob-saw.blogspot.com +0,1363562066,5,Problem with output using GregorianCalendar,pastebin.com +1,1363539783,6,Help with extracting variable from loop,self.java +0,1363532314,3,Java Sound System,self.java +1,1363498557,31,How do I deal with the fact the text is different sizes on different platforms I can make programs on Linux and the text is minuscule on Windows with same program,self.java +1,1363491488,8,Help with User Input and If Else Statements,self.java +17,1363486672,6,Is JSF going to die out,self.java +17,1363438449,12,Red Hat s OpenJDK 6 Play What It Means for SaaS Java,saasintheenterprise.com +0,1363385447,7,Why Not One Application Per Server Domain,adam-bien.com +5,1363384024,6,Eclipse is not able to run,self.java +9,1363381621,7,JSF 2 2 Proposed Final Draft Posted,weblogs.java.net +0,1363363585,18,University CS Student confused out of my mind about linkedlists Any tips tricks that help you understand them,self.java +2,1363361488,10,HSQL SQLServer Hibernate DB ID s won t place nicely,self.java +10,1363354670,9,The Open Closed Principle in review By Jon Skeet,msmvps.com +0,1363321433,16,I have to create a minesweeper game and I m stuck trying to hide the mines,self.java +0,1363308272,16,Having some trouble getting rid of a java program Would anyone be able to help me,self.java +0,1363292167,11,How do I run a pseudo main method with an applet,self.java +0,1363275067,11,How Clojure Babies Are Made Compiling and Running a Java Program,flyingmachinestudios.com +2,1363264032,8,Trouble with loops to make a simple animation,self.java +4,1363260329,11,Code Quality Tools Review for 2013 Sonar Findbugs PMD and Checkstyle,zeroturnaround.com +6,1363225023,19,I would like to get the source code for a java game applet how do I do it freeware,self.java +0,1363211984,3,Java parameter collapse,self.java +15,1363196023,8,There are a dozen known flaws in Java,blogs.computerworld.com +2,1363183474,6,Quick question about Strings and Char,self.java +4,1363174645,7,A different way to do code review,codebrag.com +4,1363149932,9,Lucene amp amp 039 s TokenStreams are actually graphs,searchworkings.org +0,1363124283,16,Interview Tomorrow Need a crash course in Java linked lists and their application in tree structures,self.java +0,1363120025,26,Had some fun with my java programming assignment Thought it was so funny I decided to submit the source code feel free to compile and enjoy,self.java +0,1363118861,9,Learning Java with no dev experience Wish me luck,self.java +0,1363117034,21,Witty Moniker Games Presents Parrotry A free Java sandbox platformer game Link is to my website which contains the download link,wittymoniker.tk +0,1363108288,16,Could someone show me how to set up the for loop for this encryption decryption program,self.java +0,1363104944,4,String to int array,self.java +27,1363097672,20,Can someone explain to me like I m 5 what a hashmap is and how to basically use it Thanks,self.java +0,1363097135,13,Code help How do I lock a tile in a grid lay out,self.java +7,1363090796,3,Question about lambdas,self.java +4,1363082403,8,How to make a class Immutable in Java,javarevisited.blogspot.sg +15,1363074310,5,OmniFaces 1 4 is released,balusc.blogspot.com +4,1363066898,39,In Java especially for Google App Engine how does one create a submit search form that goes to a url e g www website com search Search Terms and have a java class parse the parameters and display html,self.java +0,1363053807,6,help with encryption and decryption project,self.java +0,1363047665,2,Help me,self.java +9,1363046914,8,Jetty 9 released bringing SPDY and WebSocket support,jaxenter.com +6,1363046596,9,Easy extensionless URLs in JSF with OmniFaces 1 4,arjan-tijms.blogspot.com +0,1363039354,9,Oracle censoring NetBeans community polls More info in comments,netbeans.org +0,1363020413,14,Big Data MapReduce on Java 8 collections would be awesome Java User Group London,plus.google.com +1,1363017986,11,How to brush up Java skills on the day before interview,self.java +15,1363005633,3,NLTK for Java,self.java +2,1363005584,10,Enhance a Java swing frame with JavaFx componets or functionality,lehelsipos.blogspot.sg +0,1362991634,1,java,self.java +2,1362991250,9,Monitor OS pauses with jHiccup when benchmarking Java App,blog.javabenchmark.org +0,1362971521,19,In JSoup how can one find select a div class id etc whose name is more than one word,self.java +7,1362924935,10,JPA and CMT Why Catching Persistence Exception is Not Enough,piotrnowicki.com +5,1362923992,7,Why do you enjoy being a developer,self.java +1,1362902136,8,Interested in learning Java where do I start,self.java +0,1362898323,2,Java Commands,self.java +32,1362868984,11,First thing I ve written in Java I m proud of,github.com +2,1362849266,13,Eclipse fails to run after installing java on Linux Mint Any ideas help,self.java +8,1362842916,5,Static Methods and Unit Testing,jramoyo.com +0,1362835254,6,LearnJavaOnline org Free Interactive Java Tutorial,ergtv.com +0,1362824671,2,Need help,self.java +21,1362796795,4,Java on iOS finally,jaxenter.com +0,1362791864,17,If I am running windows 8 should I download the 32 or 64 bit version of eclipse,self.java +0,1362784442,8,JBoss EAP alpha binaries available for all developers,community.jboss.org +5,1362775425,17,What skills will get a premium pay rate for Java Developers over the next couple of years,self.java +40,1362766075,6,Is the Spring Framework still relevant,self.java +0,1362760956,9,After consulting North Korea on how to keep customers,imgur.com +5,1362748901,4,JAXConf US goes free,jaxenter.com +1,1362738936,8,Three year Java abstinence there and back again,zeroturnaround.com +0,1362735550,9,Sins of GWT a k a Merits of JSF,blog.terrencemiao.com +0,1362729690,21,A question on Recursion I got my code working but it s not printing the way the question asks Any hints,self.java +0,1362703708,7,HELP Java doesn t work at all,self.java +14,1362686339,10,ModelMapper A simple object mapping library Useful or too simple,modelmapper.org +0,1362682489,13,If I have multiple reddit tabs open does that make me a thredditor,self.java +0,1362667987,8,OracleHelp JavaHelp HelpGUI 3 help systems for Java,helpinator.com +12,1362667023,11,4 Things Java Programmers Can Learn from Clojure without learning Clojure,lispcast.com +31,1362662307,15,Install me maybe The ZeroTurnaround devs produce a fun parody video to Call me maybe,youtube.com +28,1362657259,6,Continuous Performance and JUnit with ContiPerf,blog.javabenchmark.org +0,1362633526,23,So I take APCS but my teacher can t explain to me how to use a scanner method or explain how it works,self.java +4,1362619000,6,Trying to generate a regex programatically,self.java +11,1362611069,6,Garbage Collection in Java Parallel Collection,insightfullogic.com +5,1362611041,6,Merging Queue ArrayDeque and Suzie Q,psy-lob-saw.blogspot.com +5,1362585526,9,Hibernate manages to fix bug After nearly 7 years,hibernate.onjira.com +7,1362584230,10,Online Counter Days since last known Java 0 day exploit,java-0day.com +35,1362582780,18,JEP 178 package a Java runtime native application code and Java application code together into a single binary,infoworld.com +8,1362582526,12,XChart Release 2 0 0 Bar Charts Themes Logarithmic Axes and more,blog.xeiam.com +7,1362581391,9,Oracle Rushes Emergency Java Update to Patch McRAT Vulnerabilities,threatpost.com +25,1362579978,11,Prompted by Oracle Rejection Researcher Finds Five New Java Sandbox Vulnerabilities,threatpost.com +5,1362564492,8,JBoss EAP is it Open Source French translation,translate.google.com +1,1362560450,11,How to run lines in intervals or make a program wait,self.java +0,1362535272,22,How would I separate a single line of input into different variables while using a Scanner to read data from a file,self.java +2,1362518541,7,Twitter open sources Java streaming library Hosebird,h-online.com +7,1362502234,8,Any good project to see other s code,self.java +3,1362500855,5,Security Alert CVE 2013 1493,oracle.com +0,1362499577,11,java How to avoid using ApplicationContext getBean when implementing Spring IOC,stackoverflow.com +0,1362493583,19,Not sure if this is the right subreddit but I don t really understand what the return command does,self.java +4,1362487215,16,Java Raspberry Pi Mocha Raspberry Pi Hacking with Stephen Chin Oracle Evangelist and Java Rock Star,blog.jaxconf.com +5,1362484716,10,JRebel 5 2 Released Less Java restarts than ever before,theserverside.com +0,1362452059,4,Help with an exercise,self.java +0,1362436343,9,Need help with java very new to the language,self.java +18,1362434705,14,Java SE 7u17 Fixes 0 day exploits CVE 2013 0809 amp CVE 2013 1493,oracle.com +0,1362429661,4,Netbeans has surpassed Eclipse,self.java +0,1362428879,4,A star Java code,self.java +1,1362427187,10,Managing configuration of the EAP6 JBoss AS7 with CLI scripts,blog.akquinet.de +0,1362420025,8,DAE have problems with WatchService on Windows 7,self.java +0,1362411939,13,Would this program work in finding out my grade for a given class,self.java +0,1362399107,5,JVM Crash Core Dump Analysis,itismycareer.com +0,1362381437,9,How would you respond to these java interview questions,self.java +0,1362381273,8,N O V A 3 JAR All Resolutions,jar4mobi.blogspot.com +0,1362373525,4,Highschool level java questions,self.java +0,1362330923,14,Is there a Java library for immutable collections that isn t Google s Guava,self.java +113,1362326971,7,Why does this code print hello world,stackoverflow.com +0,1362289297,2,Constructor help,self.java +0,1362287904,4,Need Help With Error,self.java +0,1362286711,14,Is it possible to change this nested for loop to a nested while loop,self.java +2,1362277755,3,Mac and Java,self.java +1,1362266953,8,Virtual Developer Day Fusion Development ADF March 5th,self.java +49,1362263128,9,Oracle Brings Java to iOS Devices and Android too,blogs.oracle.com +3,1362237363,7,Write your own profiler with JEE6 interceptor,blog.javabenchmark.org +11,1362220470,10,JVM performance optimization Part 5 Is Java scalability an oxymoron,javaworld.com +4,1362204101,4,Good game making tutorial,self.java +0,1362193910,4,Could use some help,self.java +1,1362183699,6,HTTP JSON Services in Modern Java,nerds.airbnb.com +2,1362180973,7,White Black listing Java Applets on websites,self.java +46,1362180723,5,Eclipse 4 2 SR2 released,jdevelopment.nl +0,1362176240,7,Java Source Code Tic Tac Toe Game,forum.codecall.net +0,1362165603,5,JavaScript Charts for Java Developers,java.dzone.com +0,1362155203,3,Why Lambdas Suck,blog.jaxconf.com +3,1362153345,6,Servlet Monitoring with Metrics from Yammer,blog.javabenchmark.org +2,1362148405,7,Looping bug in jdk1 6 0 u31,self.java +8,1362143768,9,Glassfish 3 1 2 2 Web Service Memory Leak,blog.javabenchmark.org +0,1362142016,10,How to Swap two integers without temp variable in Java,javarevisited.blogspot.com.au +54,1362138711,5,Yet Another Oracle Java 0day,blog.fireeye.com +3,1362124214,3,Advanced ListenableFuture capabilities,nurkiewicz.blogspot.com +0,1362097196,9,Help jar resolution is too big for my screen,self.java +8,1362085425,5,JSF is going spec Stateless,weblogs.java.net +21,1362071259,6,Open source Java EE kickoff app,jdevelopment.nl +7,1362065214,5,Vert x on Raspberry Pi,touk.pl +13,1362055017,3,Benchmarking With JUnitBenchmark,blog.javabenchmark.org +1,1362052992,13,Ask Toolbar Checkbox requires hitting the box itself is this a new thing,self.java +34,1362031780,12,Microsoft EMC NetApp join Oracle s legal fight against Google on Java,infoworld.com +15,1362015802,13,Pet Java Web Application Projects where do you prefer to have them hosted,self.java +4,1362010990,13,Unable to Connect to Database If I read that line one more time,self.java +1,1362000699,9,Looking for a replacement for JNetPcap or implementation advice,self.java +0,1361986770,12,Need help getting String int to display a running count on JLabel,self.java +0,1361967754,8,Spring for Apache Hadoop 1 0 Goes GA,blog.springsource.org +20,1361958839,10,Pencils down Solutions to our Pat The Unicorns Java puzzle,zeroturnaround.com +5,1361935522,13,A great organization that advocates coding in schools x post from r codepros,code.org +1,1361933309,10,Example of java to MySQL communication Simple swing MySQL interface,reddev34.blogspot.com +2,1361926527,13,How do properly I use threads while looping video to JPanel using JavaFX,self.java +6,1361924272,8,Negative side effects of javac targetting old versions,self.java +2,1361923722,11,I m learning java in college but I need some help,self.java +0,1361919293,3,WebLogic Logging Configuration,middlewaremagic.com +2,1361915467,5,Printing character arrays in applet,self.java +87,1361912394,13,Why myInt myInt myLong will not compile but myInt MyLong will compile fine,stackoverflow.com +9,1361906341,15,JavaBuilders Declarative Swing UIs with YAML On a mission to maximize Java UI development productivity,code.google.com +3,1361883970,7,How do I disable dithering in Java2D,self.java +0,1361882991,10,5 Things a Java Developer consider start doing this year,jyops.blogspot.de +45,1361875880,11,New holes discovered in latest Java versions Tuesday 2013 02 26,h-online.com +27,1361864722,4,Shazam implementation in Java,redcode.nl +0,1361851520,3,d 2f n,self.java +3,1361847206,9,making pascal s triangle using 2d arrays and recursion,self.java +0,1361844564,17,Need help with a basic java program like super basic Maybe a minute of an experts time,self.java +7,1361840847,4,Java and Slick 2d,self.java +50,1361839200,7,Usage of Java sun misc Unsafe class,mishadoff.github.com +4,1361792318,9,Demo Spring Insight plugins for Spring Integration and RabbitMQ,java.dzone.com +0,1361767405,19,Ok so I m having a polymorphism test tomorrow in my AP Computer Science class I need help urgently,self.java +18,1361740619,25,Rest services a developer workflow for defining data and REST APIs that promotes uniform interfaces consistent data modeling type safety and compatibility checked API evolution,github.com +5,1361739394,19,Apache OpenWebBeans Java EE CDI 1 0 Specification JSR299 TCK compliant and works on Java SE 5 or later,openwebbeans.apache.org +15,1361719748,3,Java 7 WatchService,javacodegeeks.com +25,1361718676,8,Martin Fowler on Schemalessness NoSQL and Software Design,cloud.dzone.com +6,1361718135,9,Using JGroups directly from a JBoss AS 7 component,piotrnowicki.com +9,1361714484,8,Boids Flocking Behaviour Tutorial Part 1 The Engine,self.java +21,1361712913,5,NetBeans IDE 7 3 Released,netbeans.org +41,1361695229,6,JavaOne 2012 Videos Now on YouTube,theserverside.com +0,1361693763,1,Mastermind,self.java +17,1361665835,7,Netbeans or Eclipse Which do you use,self.java +21,1361654496,9,SECURITY CVE 2013 0253 Apache Maven 3 0 4,maven.40175.n5.nabble.com +0,1361651676,8,Brief comparison of Java 7 HotSpot Garbage Collectors,omsn.de +0,1361649082,6,Almost done with Head First Java,self.java +0,1361635054,8,NEED HELP Searching Array not working HOMEWORK HELP,self.java +26,1361620819,7,Rails You Have Turned into Java Congratulations,discursive.com +2,1361582535,9,The minecraft creators mojang brought the slick2d site down,twitter.com +2,1361563592,4,OpenJDK wiki system preview,wiki-beta.openjdk.java.net +105,1361562340,10,Almost halfway through sams teach yourself java Its going well,imgur.com +6,1361553128,45,Please explain like I m 5 years old why can t any given JAR be made to run on a different OS platform than the one for which it was written Why can t a JAR made for Windows be made to run under Android,self.java +2,1361546665,7,Serialization of Array of Serializable Objects Problem,self.java +8,1361539882,6,Books that every developer must read,femgeekz.blogspot.in +6,1361505027,5,Splitting a task via threading,self.java +0,1361498419,9,I feel like a MASSIVE noob but any help,imgur.com +0,1361498174,8,Help with sending information to a text file,self.java +0,1361478661,19,Newbie question here how do I you write a call in one method to a method in another class,self.java +77,1361467304,5,Trying to reinvent a b,self.java +0,1361454089,6,Pattern matching in Scala 2 10,eng.42go.com +0,1361433418,5,Java libraries in plain English,self.java +7,1361427727,50,I ve ported a moderately sized application to Java and I d like to distribute it but I don t want the user to have to install anything on their machine just double click and go Have I shot myself in the foot by planning on this method of distribution,self.java +4,1361420165,7,How to continue and expand my knowledge,self.java +21,1361410374,4,JDK8 developer preview delayed,mail.openjdk.java.net +3,1361394524,12,Interested in an easy to use code review tool Check out Codifferous,codifferous.com +15,1361365501,5,JavaFX 3D Early Access Available,fxexperience.com +5,1361364828,13,TCK access controversy chat with JPA 2 1 Expert Group member Oliver Gierke,jaxenter.com +0,1361335355,9,Need some help with working with classes and methods,self.java +1,1361334306,6,Java Plugin on Localhost using jprofiler,self.java +5,1361307269,12,Updated Release of the February 2013 Oracle Java SE Critical Patch Update,oracle.com +19,1361306833,9,Java SE Development Kit 7 Update 15 Release Notes,oracle.com +0,1361304838,5,Help Beginner Java Programming Assignment,self.java +13,1361303466,9,Has anyone developed UIs with JavaFX without getting frustrated,self.java +7,1361303007,5,Java EE 7 Maven Coordinates,wikis.oracle.com +10,1361302366,8,Introducing jenv a command line Java JDKs Manager,gcuisinier.net +0,1361299350,5,Spider Solitaire implementation for Java,self.java +11,1361267490,6,Magical Java Puzzle Pat The Unicorns,zeroturnaround.com +0,1361254964,30,An American teacher Mary Herberth explains all the basic concepts of Java in a single class class as in both a school class and Java class in a naughty way,theladyteacher.blogspot.in +0,1361239620,5,Converting Integers to Binary Question,self.java +6,1361234761,8,Best coding environment for high school AP course,self.java +1,1361213171,12,Make a browse button and get chosen directory without selecting a file,self.java +0,1361209853,6,Help creating a url randomizing script,self.java +0,1361199738,5,International travel for Java Developers,self.java +5,1361197412,20,Discussion request If there is one Java library API class you really hate which one is it Here is mine,self.java +30,1361164051,19,A bit of a vague question but why does Java as a language draw so much hate and scorn,self.java +0,1361150200,4,Help with java program,self.java +0,1361127236,3,Pathfinding Unknown Environment,self.java +12,1361120947,10,What parser is the best for parsing HTML in Java,self.java +10,1361108479,22,WebJars are client side web libraries e g jQuery amp Bootstrap packaged into JAR Java Archive files x post from r javapro,webjars.org +1,1361101993,7,This week in Scala 16 02 2013,cakesolutions.net +2,1361081525,8,how to use jsoup to select certain lines,self.java +14,1361076328,11,So I want to write a server for a Java game,self.java +0,1361061096,3,Linear congruential generator,self.java +0,1361054104,7,PSA Anyone That Actually Enjoys Network Programming,self.java +1,1361049039,5,Best Java free java profiler,self.java +0,1361037075,9,Adding Spring lowers the quality of Java EE applications,infoq.com +0,1361033634,5,I can t uninstall java,self.java +0,1361031407,9,CAST Adding Spring Lowers the Quality of JEE Applications,infoq.com +1,1360982854,2,About Java,aboutjava.net +5,1360975390,6,Apache Ivy 2 3 0 released,mail-archive.com +9,1360975339,7,Apache Commons Daemon 1 0 13 released,mail-archive.com +0,1360966835,11,Help with creating specific input process for The Game Of Life,self.java +3,1360949258,18,Hibernate fail Using FetchType EAGER with ElementCollection gives you multiple time the same entity Answer Not A Bug,hibernate.onjira.com +6,1360932233,4,Symmetric Encryption in Java,blog.palominolabs.com +8,1360921268,18,Can somebody confirm deny this for me Does an array READ at a specific index block other threads,self.java +1,1360917110,17,How to solve Plugin execution not covered by lifecycle configuration error in Eclipse and the m2eclipse plugin,java4developers.com +1,1360917083,6,Series About Java Concurrency Pt 6,mlangc.wordpress.com +2,1360916692,3,Fizz Buzz Eficiency,self.java +1,1360893573,9,Help creating a web service using Java and Axis2,self.java +1,1360885538,6,Pathfinding using flow fields in Java,youtube.com +0,1360877796,2,Interface Question,self.java +3,1360870403,4,Stateless JSF short note,balusc.blogspot.com +3,1360870063,8,EasyCriteria 2 0 JPA Criteria should be easy,uaihebert.com +98,1360866391,4,Happy Valentine s Day,imgur.com +0,1360862735,11,Does anyone here have any idea what this error message means,i.imgur.com +5,1360859501,9,Effective Java by Bloch any exercises in the text,self.java +0,1360838400,12,Anyone come across any tooling plugins for editing LESS files within Eclipse,self.java +11,1360810649,5,Best high school Java textbook,self.java +0,1360801412,7,Looking for some help with unit collision,self.java +7,1360792791,5,Java IDE that allows notes,self.java +2,1360771955,10,Learning bits and bytes java io Console broken in Eclipse,learningbitsandbytes.blogspot.com +1,1360768866,6,Series About Java Concurrency Pt 5,mlangc.wordpress.com +0,1360768764,12,Made a notepad out of boredom but having problems implementing some features,self.java +27,1360757906,10,IntelliJ IDEA 12 Wins Jolt Award for Coding Tools 2013,blogs.jetbrains.com +1,1360748852,12,Are there any good websites for learning Swing and graphics API s,self.java +1,1360747220,7,Alignment Concurrency and Torture in the JMM,psy-lob-saw.blogspot.co.uk +1,1360727626,7,Preserving JSF Request Parameters and REST URLs,ninthavenue.com.au +5,1360724473,9,Is there anything like codeacademy that teaches Java interactively,self.java +21,1360714150,16,I have created r Slick2D Join us in building a community around this Java graphics library,reddit.com +42,1360708328,6,Java 8 From PermGen to Metaspace,java.dzone.com +5,1360707020,13,Uncaught Java Thread Exceptions 3 ways to install default exception handler for threads,drdobbs.com +8,1360701991,16,Updates to February 2013 Critical Patch Update for Java SE The Oracle Software Security Assurance Blog,blogs.oracle.com +5,1360674484,6,Need help finding a Java Developer,self.java +0,1360672733,7,5 Concurrent Collections Java Programmer should know,javarevisited.blogspot.com.au +0,1360658923,10,Java developer for hire in the Leiden region the Netherlands,self.java +0,1360634155,29,I want to write a valentine s day card with some java code for my boyfriend and was wondering if anyone could tell me how to do it correctly,self.java +3,1360622719,4,Need Better Graphics System,self.java +1,1360620374,11,Apache Syncope is an Open Source system for managing digital identities,syncope.apache.org +2,1360620020,9,The Legion of the Bouncy Castle Release 1 48,bouncycastle.org +1,1360619310,11,New and Noteworthy in the WebSphere Application Server 8 5 Next,ibm.com +12,1360619051,12,We are the IBM WebSphere Application Server Liberty Profile development team IAmA,reddit.com +0,1360618627,48,Can someone help me figure this out I am fairly new to java if someone could take their time and work this and provide a video or some sort of step by step guide so that I can fully understand how to accomplish this that would be magnificent,codingbat.com +1,1360616653,7,Creating an algorithm to graph matrix data,self.java +34,1360610796,3,The Groovy Conundrum,drdobbs.com +0,1360605788,9,Graham Lea A New Java Library for Amazing Productivity,grahamlea.com +47,1360591334,10,IntelliJ IDEA 12 Wins Jolt Award for Coding Tools 2013,drdobbs.com +12,1360583302,7,10 Online Snippets to Test your Coding,smashinghub.com +1,1360567073,7,Generating Sitemaps Using Spring Batch and SitemapGen4j,jramoyo.com +0,1360562831,6,BriteSnow on Jetty Quick Start Guide,mydailyhash.wordpress.com +4,1360548365,6,First Step on Legacy Code Classifying,coding.abel.nu +0,1360545719,9,Make a runnable jar that includes the java file,self.java +0,1360519574,15,Please help me with solving a Java issue while setting up minecraft server with Bukkit,self.java +2,1360486453,11,Green forest addition for JEE amp Spring with Action Handler architecture,code.google.com +0,1360444809,6,Help in learning custom exception handlers,self.java +7,1360440088,3,A java crawler,github.com +0,1360439427,13,Looking to transition into game development in Java struggling to find suitable tutorials,self.java +34,1360437946,13,With possibly outdated J2EE skills how to land a job with current technologies,self.java +0,1360435557,12,Dependometer performs a static analysis of physical dependencies within a software system,source.valtech.com +4,1360430882,7,Trying to view bytecode for a class,self.java +8,1360414619,11,Are there any toolchains for Java similar to the Go toolchain,self.java +20,1360387498,6,WeatherAPI platform agnostic live weather platform,github.com +0,1360367018,3,Hash codes question,self.java +3,1360359469,4,Canvas based GUI Input,self.java +5,1360353165,11,The correct way to use integration tests in your build process,zeroturnaround.com +5,1360348953,6,On the Dark Side of Craftsmanship,architects.dzone.com +0,1360342064,21,meta If you can t be bothered to format the code in your post correctly I m not going to answer,self.java +0,1360340558,6,Need help with JConsole JMX remote,self.java +0,1360329238,7,Learning bits and bytes Suppressing JExcel warnings,learningbitsandbytes.blogspot.com +0,1360325901,6,Scala is better than injection framework,blog.scaloid.org +20,1360304659,5,Java Enum implementing an Interface,byteslounge.com +11,1360272648,7,The fork join framework in Java 7,h-online.com +22,1360268935,11,Litte framework to create Java programs that behave like Linux daemons,github.com +0,1360265242,21,xpost from r javahelp I keep getting a NaN value when dividing and can t figure out where it s happening,reddit.com +0,1360260019,12,images not loading when using java sockets to make a proxy server,stackoverflow.com +0,1360257409,9,Hello I need some help with a class assignment,self.java +0,1360254164,7,Weird bug teacher can t find issue,self.java +7,1360215196,5,Need help for potential interview,self.java +0,1360210208,3,Trouble with classes,self.java +0,1360202219,5,Tic Tac Toe Java Tutorials,forum.codecall.net +1,1360201483,4,Upcasting downcasting Java Tutorials,forum.codecall.net +2,1360186811,14,New to programming not sure what the Syntax error is on this Help please,self.java +5,1360170195,5,PrimeFaces 3 5 RC1 Released,blog.primefaces.org +0,1360163023,5,Oracle releases Java patch update,infoworld.com +3,1360160070,4,The Future of IcedTea,blog.fuseyism.com +214,1360157768,10,3 000 sign petition to remove Ask Toolbar from Java,jaxenter.com +0,1360137599,4,IcedTea6 1 12 Released,blog.fuseyism.com +4,1360131703,8,Trying to multiply a 2x2 matrix please help,self.java +17,1360107393,2,Why Java,self.java +2,1360106690,4,Still learning any suggestions,self.java +0,1360096267,8,Cannot add platform crEme to netbeans Please help,self.java +1,1360094867,4,Looking for Java Assertions,self.java +0,1360093491,6,Recommended Books Reading Tomcat Java Admin,self.java +0,1360085731,16,Do I still need JAVA installed Where am I likely to have a problem without it,self.java +0,1360085333,8,Security holes in java 6u39 vs java 7u13,self.java +2,1360078327,5,Online courses for Java EE,self.java +0,1360067262,10,I Didn t Ask for a Toolbar with That Java,weblogs.java.net +166,1360065237,6,Petition Stop bundling crapware with Java,change.org +0,1360047379,19,The Firebird JDBC team is happy to announce the release of Jaybird 2 2 2 also available on maven,firebirdsql.org +1,1360037965,6,Defensive API evolution with Java interfaces,blog.jooq.org +0,1360037882,17,What are the different Java GUI toolkits that exist and what are the pros cons of them,self.java +9,1360031680,9,Introducing a new Java framework for web development Micro,self.java +1,1360010002,7,Drools decision tables with Camel and Spring,toomuchcoding.blogspot.com +0,1360007284,12,Where is the best place to learn programming in Java from scratch,self.java +0,1360002859,12,Can somebody please tell me what I m doing wrong Noob Alert,self.java +0,1359997237,11,Maxine VM presentation at the Summer School of ECOOP 2012 PDF,wikis.oracle.com +3,1359987084,9,Java and Java EE Best Practices I m lost,self.java +72,1359980876,11,Java 6 now end of life time to move to 7,blogs.infosupport.com +0,1359967145,9,Jaybird 2 2 2 Firebird JDBC driver is released,firebirdnews.org +0,1359954656,3,Generating random number,self.java +16,1359946324,24,I remember reading a long time ago about a game that involved coding in Java Anyone have an idea what I m talking about,self.java +0,1359937309,9,How can I check if a process is running,self.java +15,1359927424,11,Does anyone know of a good website for practicing Java regex,self.java +1,1359896851,16,JDBC Realm and Form Based Authentication with GlassFish 3 1 2 2 and Primefaces 3 4,blog.eisele.net +0,1359871271,14,Noob here can someone please help on creating a word dictionary with 2 classes,self.java +0,1359866868,17,Is anybody else using the early access JDK8 builds and finding the compiler to be incredibly fragile,self.java +8,1359857771,6,Any good alternative to knowledgeblackbelt com,self.java +1,1359839947,17,Book Says This References Existing Class I m Sure It Makes a New One Who is Right,self.java +14,1359837825,11,How to parallelize loops with Java 7 s Fork Join framework,omsn.de +1,1359835888,5,Spring Social Api Providers list,github.com +3,1359830411,9,How do I make an image follow another image,self.java +0,1359826550,17,After being p0wn3d Twitter suggest users encourage users to disable Java on their computers in their browsers,blog.twitter.com +0,1359808511,10,Eclipse in Space Talking RCP and Robotics with Tamar Cohen,jaxenter.com +52,1359792763,7,A Java 8 Project Lambda feature summary,sett.ociweb.com +1,1359764433,9,JButton apocalypse Death of the JButton next gen gui,forum.codecall.net +2,1359759745,9,Up to date Java Library Benchmarks for Decoding Base64,self.java +5,1359759596,3,Gradle 1 4,h-online.com +2,1359757509,5,Java Developer Need Title Suggestions,self.java +0,1359753861,10,Noob here Adobe Edge animations not starting plase halp mooltipass,self.java +24,1359752676,9,Oracle Java SE Critical Patch Update Advisory February 2013,oracle.com +5,1359743311,7,Application Servers play musical chairs in 2013,zeroturnaround.com +7,1359738759,7,RichFaces 4 3 0 Final Release Announcement,bleathem.ca +5,1359721896,8,Difference between Heap and Stack memory in Java,javarevisited.blogspot.in +1,1359720199,6,The IP SQUARE Commons Java Libraries,mlangc.wordpress.com +2,1359690374,4,First steps towards graphics,self.java +1,1359687129,4,Help with permutation program,self.java +1,1359679621,11,Java blocked in Safari on 10 6 x 10 8 x,derflounder.wordpress.com +0,1359668013,9,Am I Doing It Right First Java Programming Homework,i.imgur.com +58,1359666228,19,What are the java essentials that you NEED to know if you want to get a job programming java,self.java +0,1359652743,10,Request Write a small helpful program Not sure of difficulty,self.java +0,1359642973,1,MineSweeper,self.java +0,1359634423,7,Gradle JavaFX Plugin 0 2 0 Released,speling.shemnon.com +2,1359582492,8,Noob question Using third party libraries in Java,self.java +9,1359579766,13,Full Disclosure SE 2012 01 Java 7 Update 11 confirmed to be vulnerable,seclists.org +2,1359578431,11,JSR 107 Caching API will not be part of Java EE7,java.net +28,1359578414,13,JCache JSR 107 drops out of Java EE 7 at the last moment,groups.google.com +0,1359553471,5,Caching with Spring Data Redis,blog.joshuawhite.com +0,1359495744,6,Firebird JDBC driver ported to Android,firebirdnews.org +0,1359490145,4,Concerning NAT Hole Punching,self.java +96,1359487454,8,Oracle will continue to bundle crapware with Java,computerworld.com +2,1359483671,8,Fixing The Inlining Problem by Dr Cliff Click,azulsystems.com +0,1359480470,7,Math class issues Clarification would be appreciated,self.java +0,1359478827,9,Need help with a REGEX pattern xpost r regex,self.java +25,1359462733,7,How aggressive is method inlining in JVM,nurkiewicz.blogspot.com +5,1359434067,3,Trouble with nonstatic,self.java +4,1359418375,6,Working with jzy3d 3 d graphs,self.java +2,1359408191,8,Help Supernoob need help with defining exact match,self.java +0,1359387550,6,Java Mutiple Class w parameters help,self.java +0,1359387063,45,Java servlet spec defines ISO 8859 1 as the default character encoding for POST requests which might cause problems in environments using UTF 8 as default This post describes a resolution for the issue in a multi application server environment with Guice s servlet module,blog.eluder.org +48,1359379517,8,We will fix Java security pledge Oracle devs,jaxenter.com +1,1359350903,13,We Reached the 1000 mark keep it going Check out my java project,kck.st +0,1359335506,8,Offer online introductory java course from r javahelp,reddit.com +0,1359333529,7,Configuring Notepad as a nifty Java IDE,quarkphysics.ca +0,1359330318,7,Mirroring an image over y height 2,self.java +0,1359329586,6,How to start programming in java,self.java +0,1359326482,14,Listing a directory on the class path when it s in a Jar archive,self.java +0,1359317474,16,Stackoverflow Tools Eclipse Plugins to generate DAO s Pojo s and JSP s from MySql tables,stackoverflow.com +13,1359299924,16,Is this a good enough random algorithm why isn t it used if it s faster,stackoverflow.com +30,1359292570,5,Building a Raspberry Pi Cluster,blog.afkham.org +0,1359287929,12,How Can Cloud IDEs Save Your Time Build and Deploy Part 2,cloudtweaks.com +0,1359268278,9,Why won t this code work Frozen While loop,self.java +0,1359230147,6,I made a sweet Java app,dl.dropbox.com +1,1359213617,11,MongoDB How to limit results and how to page through results,blogs.lessthandot.com +0,1359211095,7,Efficient way to create strings in Java,ravisrealm.tumblr.com +0,1359210463,4,Hyperscala a chat example,scala-topics.org +1,1359200784,6,Pentaho Reporting lib for generating reports,github.com +1,1359198177,8,Axon Framework 2 0 helps Java applications scale,h-online.com +20,1359169142,2,Big Arrays,omsn.de +1,1359151828,13,NoSQL Unit is a JUnit extension that helps you write NoSQL unit tests,github.com +16,1359151643,18,ThreeTen project provides a new date and time API for JDK 1 8 as part of JSR 310,threeten.github.com +0,1359151529,9,unix4j implementation of Unix command line tools in Java,code.google.com +1,1359151123,6,Gressil Safe daemonization from within Java,github.com +3,1359150813,9,Need some help accepting input from the command line,self.java +1,1359127108,4,In Support Of Maven,theexceptioncatcher.com +35,1359118495,5,Groovy 2 1 is released,glaforge.appspot.com +1,1359111617,10,How to Modify json with GSON without using a POJO,stackoverflow.com +0,1359109996,7,Hello World not compiling in eclipse S,self.java +6,1359108882,5,Groovy 2 1 is released,self.java +3,1359085351,5,Is Java similar to C,self.java +1,1359047344,5,Logging in Java part 4,blog.zololabs.com +2,1359040097,9,nealford com Why Everyone Eventually Hates or Leaves Maven,nealford.com +13,1359030164,8,How to track lifecycle changes of OSGi bundles,eclipsesource.com +34,1359021319,14,Sometimes I just feel silly with the amount of indentation when doing simple things,self.java +1,1358999660,7,Outputting multiple lines of text in JTextArea,self.java +17,1358982410,6,Tips for getting proficient with Scala,self.java +0,1358977546,4,replaceAll doesn t work,self.java +0,1358970045,2,Netbeans Help,self.java +1,1358948664,7,A passionate defence of Java s virtues,javainxml.blogspot.ca +0,1358946729,12,How to check if a number is positive or negative in Java,javarevisited.blogspot.sg +5,1358944998,7,The default DataSource in Java EE 7,blogs.oracle.com +9,1358943692,9,Danny Coward on JSR 356 Java API for Websocket,blogs.oracle.com +32,1358935113,13,Apache Shiro is it ready for Java EE 6 a JSF2 Shiro Tutorial,balusc.blogspot.com +3,1358904508,2,Swing tutorials,self.java +7,1358889025,18,Managing the life cycle of resources in Java 7 the new try with resources block Blogs from RTI,blogs.rti.com +5,1358884371,4,Having problems learning java,self.java +117,1358871042,12,A close look at how Oracle installs deceptive software with Java updates,zdnet.com +0,1358865030,5,Disabling Java in Internet Explorer,infoworld.com +0,1358864288,7,How to Disable Java in your Browsers,infoworld.com +5,1358859674,5,Test Driven Development TDD Traps,methodsandtools.com +10,1358850007,3,JPA ORM Recommendations,self.java +0,1358810203,13,Can someone please help me with this series of for loops with arrays,self.java +3,1358803522,10,How would one create a class like BigInteger or BigDecimal,self.java +39,1358788343,6,The Heroes of Java Coleen Phillimore,blog.eisele.net +3,1358783870,3,Java for Beginners,self.java +4,1358771572,8,10 Tips for using the Eclipse Memory Analyzer,eclipsesource.com +0,1358770220,6,Java subList for offset and limit,fabiankessler.blogspot.com +0,1358760358,8,Help Failed to remove existing native file sqlite,self.java +8,1358759419,18,Advice Want to write a secure chat client using Google App Engine wrote a tiny local mental model,self.java +3,1358733972,4,Give Duke a Break,blog.mdominick.com +6,1358730167,6,HELP Canvas rendering getting cut off,self.java +9,1358725172,5,Using Apache Shiro with JSF,blogs.bytecode.com.au +7,1358706352,5,Hibernate HibernateUtil and Transaction Handling,self.java +2,1358701068,19,Can t find a straight forward guide of how to migrate a taglib from Tomcat 6 to Tomcat 7,self.java +0,1358699425,17,Looking for someone to teach me some basic threading sockets in java over Voip More in comments,self.java +2,1358685577,6,Indexes in MongoDB A quick overview,blogs.lessthandot.com +9,1358679460,10,JPA 2 1 Implementation EclipseLink M6 integrated in GlassFish 4,blogs.oracle.com +12,1358631916,10,Knowledge Black Belt shutting down free courses workshops till 31jan,knowledgeblackbelt.com +0,1358631147,7,need help with my code specifically arrays,self.java +0,1358626838,3,Need urgent help,self.java +25,1358607759,7,6 Tips to Improve Your Exception Handling,northconcepts.com +0,1358564935,5,Error in Official Java Tutorial,self.java +0,1358539562,14,Is calling int set equals to array length more efficient than calling array length,self.java +0,1358513227,18,java help solution I m self studying java from a book and can t get past these problems,self.java +17,1358511011,9,Spring Framework 4 0 to embrace emerging enterprise themes,jaxenter.com +0,1358506058,4,Help me with Hibernate,stackoverflow.com +3,1358486062,3,Sharing is caring,self.java +7,1358456787,23,DCOM wire protocol MSRPC to enable development of Pure Bi Directional Non Native Java applications which can interoperate with any Windows COM component,j-interop.org +14,1358456383,5,Orika Java Bean mapping framework,github.com +44,1358456296,5,Enum tricks hierarchical data structure,java.dzone.com +4,1358442822,17,Release Notes for the Next Generation Java Plug In Technology introduced in Java SE 6 update 10,oracle.com +1,1358438785,12,How to halt filter on a particular class when debugging in Eclipse,self.java +5,1358430199,4,ATDD Cucumber and Scala,blog.knoldus.com +2,1358401435,9,Question about toString method for dice game java prgm,self.java +4,1358390813,12,java net socketexception no buffer space available maximum connections reached recv failed,self.java +0,1358389234,7,Another javafx in a swing applet question,self.java +10,1358385278,5,Java Memory Model and optimization,vanillajava.blogspot.ie +0,1358381513,3,Another Java 0day,krebsonsecurity.com +0,1358377816,2,Java help,self.java +5,1358373140,20,Why does Java have so many security flaws compared to other languages Or this this a construct of the media,self.java +7,1358369993,3,Encrypting Password Strings,self.java +0,1358369230,10,FrostWire for Windows no longer depends on Oracle s JRE,frostwire.wordpress.com +5,1358367351,10,Converting Struts 1 x to latest Struts 2 any resources,self.java +33,1358363007,7,Hosting a Maven repository on github StackOverflow,stackoverflow.com +7,1358353473,7,Understanding when to use JPA vs Hibernate,self.java +16,1358349434,17,Who has used the Netbeans Platform do design an application What s you re opinion on it,self.java +27,1358346472,9,Java 8 Now You Have Mixins Kerflyn s Blog,kerflyn.wordpress.com +8,1358342224,12,A Garbage Collection analysis of PCGen the popular Open Source Character Generator,martijnverburg.blogspot.co.uk +14,1358339364,5,Arguments for the final keyword,alexcollins.org +2,1358336772,4,Cacheable overhead in Spring,nurkiewicz.blogspot.com +4,1358305333,11,Can some one help me with deploying and using javafx applets,self.java +0,1358266876,4,Java Update 11 Issues,self.java +13,1358256655,8,An overview of JUnit testing with an example,compiledk.blogspot.com +20,1358253310,3,Java hosting advise,self.java +0,1358239445,10,Java Class Reloading Pain A Fresh Open Source JRebel Alternative,contentreich.de +0,1358218318,20,I just began to learn Java I made this for shits and giggles I should probably be studying for exams,pastebin.com +2,1358211765,17,I will be applying for an internship over the summer any pointers on how to prepare myself,self.java +0,1358192080,5,Going offline with Maven RTFB,ogirardot.wordpress.com +0,1358190444,9,Please can you help me with some simple code,self.java +227,1358185426,5,Java installer Ask Toolbar Seriously,self.java +3,1358172684,10,Deploying Oracle ADF Applications on the Oracle Java Database Cloud,blogs.oracle.com +9,1358172600,3,Java Mini Profiler,github.com +4,1358172530,16,Modern threading for not quite beginners small sample Java programs that use intermediate level thread control,javaworld.com +8,1358166272,6,Time estimation for OCAJP 7 preparation,self.java +0,1358117805,7,Oracle Security Alert Update Your Java Now,oracle.com +19,1358114136,16,Security Alert for CVE 2013 0422 Released Fix for Oracle Java 7 Security Manager Bypass Vulnerability,blogs.oracle.com +1,1358108296,21,Is the department of Homeland Security s warning about disabling Java software going to affect career opportunities for aspiring Java programmers,self.java +4,1358107894,6,Newer java decompiler than JD GUI,self.java +4,1358031105,10,Vert x Red Hat and VMware in active discussion Update,h-online.com +2,1358030646,4,Tapestry5 by examples JumpStart,jumpstart.doublenegative.com.au +0,1358008747,16,IT Project Hub Free download of MCA BE BCA MBA MS project for IT Submit Project,itprojecthub.co.in +39,1358007882,8,My first text based kill the dragon game,self.java +0,1357990789,7,Java Mini Projects Free Download 5000 Projects,itprojecthub.co.in +0,1357988225,6,Increase your JSF MyFaces application performance,tandraschko.blogspot.com +0,1357987152,3,Spring Framework Introduction,java9s.com +5,1357983928,8,JSF 2 Custom Scopes without 3rd party libraries,blog.oio.de +27,1357960819,10,Java as a tool to build GUIs is it dead,self.java +5,1357956273,9,Critical Java vulnerability made possible by earlier incomplete patch,arstechnica.com +3,1357945054,12,Testdriving Mojarra 2 2 0 m08 on GlassFish 3 1 2 2,blog.eisele.net +4,1357936758,9,US CERT says everyone should just disable Java now,securityinfowatch.com +5,1357933685,3,College Class Supplement,self.java +11,1357927584,6,Protecting Firefox Users Against Java Vulnerability,blog.mozilla.org +4,1357916297,9,Can people help me wrap my brain around httpclient,self.java +1,1357910599,4,Latest Java being hacked,self.java +11,1357906919,6,Top 5 books on Java programming,javarevisited.blogspot.sg +0,1357905841,8,State of the Maven Java dependency graph RTFB,ogirardot.wordpress.com +24,1357860313,15,US CERT Vulnerability Note VU 625617 Java 7 fails to restrict access to privileged code,kb.cert.org +16,1357857706,9,Your best method of learning AND retaining programming languages,self.java +5,1357857593,15,0 day CVE 2013 0422 1 7u10 spotted in the Wild Disable Java Plugin NOW,malware.dontneedcoffee.com +5,1357853675,7,Reasons to why I m reconsidering JSF,blog.brunoborges.com.br +17,1357840530,6,Critical Java Exploit Spreads like Wildfire,storyfic.com +0,1357822254,8,Hi I need help with a programming assessment,reddit.com +3,1357819897,12,Qualcomm AT amp T and Telit announce support for Java on M2M,terrencebarr.wordpress.com +0,1357819841,7,How to install Scertify Code Eclipse Plugin,tocea.com +8,1357819789,6,2012 Jenkins Survey Results Are In,blog.cloudbees.com +11,1357795533,5,Where when is gcj used,self.java +3,1357774836,5,A Word Wheel Solver Helper,self.java +23,1357773922,13,The curious case of JBoss AS 7 1 2 and 7 1 3,henk53.wordpress.com +6,1357757985,11,Is it possible to make this search multiple districts at once,self.java +0,1357752763,3,interactive comic reader,chjh.eu +4,1357752423,6,Global Tooltips in PrimeFaces 3 5,blog.primefaces.org +12,1357741436,9,Designing an API XML vs JSON round 1 Fight,self.java +0,1357736288,16,Hadoop How To Make Great Big Applications with Great Big Data on Great Surprisingly Affordable Hardware,blog.inetu.net +31,1357736232,9,JSR 335 Lambda Expressions for the Java Programming Language,cr.openjdk.java.net +8,1357736172,13,Don t Test Blindly The Right Methods for Unit Testing Your Java Apps,zeroturnaround.com +2,1357714752,6,Java Database GUI End User help,self.java +0,1357674517,9,JASIG CAS Java Spring Question External Redirects in Handler,self.java +8,1357665852,17,Spring 3 MVC Framework Based Hello World Web Application Example Using Maven Eclipse IDE And Tomcat Server,srccodes.com +7,1357654692,8,An important announcement to the Vert x community,groups.google.com +1,1357654613,9,Another certified Java EE 6 server JOnAS 5 3,jonas.ow2.org +0,1357648743,3,Code review guidelines,insidecoding.wordpress.com +33,1357589496,6,How to improve my Java skills,self.java +1,1357585350,6,Any suggestions for a simple project,self.java +0,1357567218,9,Why do I love Java Developer edition part 2,socialtech101.blogspot.com +18,1357561594,17,accept4j Business friendly acceptance testing tool for Java developed in Groovy Comments contributors and testers very welcome,code.google.com +8,1357539978,5,sshing on windows via java,self.java +0,1357478287,8,ISIS framework for rapidly developing domain driven apps,isis.apache.org +48,1357477906,8,The state of Java according to Oracle developers,oracle.com +12,1357447095,6,Java Far sight look at JDK8,transylvania-jug.org +5,1357446977,5,Implementing Producer Consumer using SynchronousQueue,aredko.blogspot.ie +5,1357446824,6,JAXB Representing Null and Empty Collections,java.dzone.com +2,1357440850,5,JTable with Scrollable Row Header,wiki.javaforum.hu +5,1357396571,7,Beginner Looking for 1 Good Transitional Read,self.java +0,1357340916,5,Java Persistence Performance Got Cache,java-persistence-performance.blogspot.com +1,1357331518,2,Dereference error,self.java +14,1357330987,10,Quick question about java programming ability required for certain jobs,self.java +9,1357314198,7,How to Protect Your APIs with OAuth,blogs.mulesoft.org +0,1357314149,6,A View of Scala from Java,thepolygl0t.blogspot.in +1,1357287685,13,I m doing tutorials with thechernoproject and i need help understanding the code,self.java +12,1357275816,4,Java graphics libraries help,self.java +0,1357264014,12,I need help figuring out if an idea I had is possible,self.java +0,1357256265,19,Is there a java equivalent of the python win32com library that allows visual basic to be written in java,self.java +4,1357252995,5,Text Based Adventure Game Help,self.java +8,1357243810,6,How to parse Json with Java,self.java +5,1357176132,10,Batch Applications in Java EE 7 Understanding JSR 352 Concepts,blogs.oracle.com +124,1357165586,18,I ve spent plenty of time with this book never made the connection with the anteater until now,i.imgur.com +2,1357158313,4,Need help with audio,self.java +4,1357155888,5,Problem understanding arrays of arrays,self.java +0,1357123709,11,Getting a weird error Don t know how to fix it,self.java +7,1357115579,3,JavaFX loves Xtend,koehnlein.blogspot.de +12,1357073017,15,Performance of String equalsIgnoreCase vs String equals if I one of the strings is static,self.java +7,1357068770,9,What is the simplest way to send P2P data,self.java +5,1357068334,4,News Weather Ticker Program,self.java +3,1357060543,6,Questions and thoughts on Java security,self.java +0,1357059124,7,Basic Contest Problem Using Scanner or StringTokenizer,self.java +0,1357040698,7,Need help with bukkit plugin using java,self.java +0,1357021066,7,Good Examples of Component dragging and dropping,self.java +0,1357017936,10,Game only works on mac need help porting to windows,self.java +2,1357008210,4,eclipse or keyboard issues,self.java +33,1356977564,6,The Long Strange Trip to Java,blinkenlights.com +7,1356970069,9,How to Send Email with Embedded Images Using Java,blog.smartbear.com +0,1356956937,4,What makes you architect,programming.freeblog.hu +0,1356900338,4,Apache Maven I of,javaxperiments.blogspot.com +0,1356896219,5,Custom functions per class instance,self.java +0,1356891056,5,JMeter Performance and Tuning Tips,ubik-ingenierie.com +11,1356888358,19,First fully functional GUI program about making acronyms easier to remember Was wondering if you guys had any tips,github.com +3,1356881034,12,Social Tech 101 Why do I love Java Developer Edition Part 1,socialtech101.blogspot.com +5,1356826782,7,Configurable deployment descriptors proposal for Java EE,java.net +30,1356793800,16,Finished my very first game in java Snake clone It s not much but it works,self.java +16,1356766107,10,la4j Linear Alebra for Java 0 3 0 is out,la4j.org +1,1356747219,6,RubyFlux a Ruby to Java compiler,github.com +12,1356735585,10,Simple JMS 2 0 Sample JMSDestinationDefinition and Synchronous Message Receive,blogs.oracle.com +8,1356717174,3,Java Use WebCam,self.java +2,1356711735,5,Compiler Optimisation for saving memory,self.java +3,1356662279,22,I m interested in your opinion about Java for Python Programmers by Brad Miller or a better alternative for a Java newbie,self.java +0,1356633508,4,A good android game,self.java +5,1356631759,12,a java library i saw mentioned here can t find pls help,self.java +1,1356627923,5,About learning Java a question,self.java +0,1356593886,2,AffineTransform halp,self.java +42,1356584047,7,Java Was Strongly Influenced by Objective C,cs.gmu.edu +1,1356580543,7,Having trouble Setting Up Android Development Environment,self.java +0,1356560732,13,How can I fetch the first X links of reddit into a list,self.java +0,1356551788,4,JDK Download page error,self.java +11,1356536557,12,looking for a good book website to learn intermediate core java spring,self.java +4,1356487079,11,A popup menu like Filemaker s Any library have an implementation,self.java +1,1356455255,6,Just a Few Helpful Solr Functions,ignatyev-dev.blogspot.ru +14,1356433373,7,Bart s Blog Xtend the better compromise,bartnaudts.blogspot.de +4,1356410180,3,Beginner Question Here,self.java +20,1356283667,5,Nashorn JavaScript for the JVM,blogs.oracle.com +3,1356234086,5,Problem with Java memory use,self.java +0,1356195953,5,Learning Java in two weeks,self.java +0,1356127053,10,Twitter4J Download a Twitter Users Tweets to a Text File,github.com +21,1356118151,15,Using Apache Commons Functor functional interfaces with Java 8 lambdas cross post from r functionalprogramming,kinoshita.eti.br +13,1356102153,7,Date and Time in Java 8 Timezones,insightfullogic.com +11,1356088959,8,Implementing a collapsible ui repeat rows in JSF,kahimyang.info +9,1356034544,5,OmniFaces 1 3 is released,balusc.blogspot.com +1,1356027563,11,How to Configure a JNDI DataSource in the OpenShift Tomcat Cartridge,openshift.redhat.com +84,1356020780,7,Doomsday Sale IntelliJ 75 off today only,jetbrains.com +6,1355976320,3,IntelliJ Working Directory,self.java +0,1355966433,5,Help with java problem please,self.java +18,1355928745,12,What s new in Servlet 3 1 Java EE 7 moving forward,blogs.oracle.com +11,1355864485,5,Quick poll for research project,self.java +0,1355851994,5,Eclipse Text Problem Need Help,self.java +27,1355823193,4,Java 8 vs Xtend,blog.efftinge.de +3,1355805047,4,Learning Java between semesters,self.java +3,1355798488,11,I m a beginner programmer any tips on where to start,self.java +6,1355784039,9,Java Advent Calendar far sight look at JDK 8,javaadvent.com +2,1355782111,9,Technical Interview coming up Suggestions Pointers Words of Wisdom,self.java +0,1355775350,6,someone may help me out here,stackoverflow.com +2,1355765235,14,THC and a bit of Thunking Creative ways to deal with multiple return types,kingsfleet.blogspot.it +0,1355749586,12,Newbie here can you explain to me what class private stack is,self.java +0,1355748318,4,When StackOverflow Goes Bad,blogs.windward.net +0,1355721981,4,Java Graphics Projectile HELP,self.java +0,1355719622,12,Which one of the following statements about object oriented programming is false,self.java +17,1355707814,8,What s the skinny on JavaFX these days,self.java +1,1355685929,20,Can someone explain exactly what Apache Ant is How does it differ from just creating a jar file in blueJ,self.java +3,1355621071,7,Looking to add test code in Github,self.java +8,1355613608,6,Java Version of Jarvis Must Haves,self.java +3,1355599765,6,Java Advent Calendar Functional Java Collections,javaadvent.com +8,1355597483,13,I m working on a text based RPG and I have some questions,self.java +5,1355574445,6,Java EE 7 Community Survey Results,blog.eisele.net +0,1355576629,4,Evolution of Java Technology,compilr.org +18,1355574828,10,Are your Garbage Collection Logs speaking to you Censum does,blog.eisele.net +8,1355559380,13,What is the best GUI tool for creating a 2d platformer in Java,self.java +0,1355555357,7,Hit me with your best arrays tutorial,self.java +9,1355542403,11,Does any one know of clean 2d graphics library for java,self.java +24,1355511507,9,Dark Juno A Dark UI Theme for Eclipse 4,rogerdudler.github.com +0,1355504132,10,Java devs that work remote I have a few questions,self.java +0,1355501999,9,How do you make use of your Java knowledge,self.java +1,1355492027,5,How ClassLoader works in Java,javarevisited.blogspot.com.au +1,1355489352,9,Main difference between Abstract Class and Interface Compilr org,compilr.org +47,1355487006,8,Date and Time in Java 8 Part 1,insightfullogic.com +0,1355485766,3,Java JSON problem,self.java +10,1355448875,16,Open source applications large small worth looking at in Java I want to understand application structure,self.java +1,1355444452,4,lo mexor pz xxx,heavy-r.com +0,1355402889,11,JRebel Remoting to Push Changes to Your Toaster in The Cloud,zeroturnaround.com +0,1355402734,6,Are bugs part of technical debt,swreflections.blogspot.ca +2,1355400483,9,Compile and Run Java programs with Sublime Text 2,compilr.org +0,1355391115,4,console input like craftbukkit,self.java +8,1355390023,8,Hosting suggestions needed for a java web app,self.java +4,1355359227,17,Java novice here Have noticed funny performance differences across laptop and desktop Nvidia optimus related Details inside,self.java +1,1355327090,18,Please advice which java server technology should I choose for this new web app in my new work,self.java +0,1355326137,6,code to convert digits into words,compilr.org +29,1355319442,7,I want to learn REAL WORLD Java,self.java +3,1355285442,3,Hiring Java Developers,self.java +0,1355282335,14,Help How can I count the amount of a specific integer in an ArrayList,self.java +1,1355272303,24,I m taking a Java 1 final tomorrow I m fairly confident but I would appreciate any tips on things to look out for,self.java +35,1355267143,6,Will Java become the next COBOL,self.java +0,1355263047,2,Understanding recursion,imgur.com +1,1355257558,15,How can I clear the command prompt terminal with java and make it cross platform,self.java +2,1355253849,18,Is there a strategy for reducing code clutter when you are printing to the terminal alot Beginner Programmer,self.java +1,1355253049,5,BlockingQueues and multiple producer threads,self.java +3,1355241441,6,Beginner Struggling with classes Need help,self.java +0,1355238089,8,Simple Steps to Merge PDF files using Java,compilr.org +23,1355236940,8,Java and vs Python within a business context,self.java +11,1355232239,10,All about Two Phase Locking and a little bit MVCC,cubrid.org +7,1355232201,8,Performance of Inlined Virtual Method Invocations in Java,architects.dzone.com +0,1355212683,3,Color inversion question,self.java +0,1355209804,4,Task Scheduler using Java,compilr.org +0,1355190476,2,hello java,self.java +1,1355169558,2,Quick Questions,self.java +2,1355165372,4,Eclipse HELP new project,self.java +17,1355160398,13,Android Hello World Example using Eclipse IDE and Android Development Tools ADT Plugin,srccodes.com +0,1355154016,8,JDBC Connection with MS SQL Server in Java,compilr.org +0,1355152799,7,How to include JSP Page in Servlet,compilr.org +0,1355146145,8,Java code to convert currency in Indian format,compilr.org +9,1355144712,10,Wordcounter Counting Words in Java with Lambdas and Fork Join,stoyanr.com +1,1355144560,4,Spring Integration FakeFtpServer example,gosmarter.net +0,1355144530,7,How to call class method using Reflection,compilr.org +1,1355120395,6,I m having trouble with replaceAll,self.java +8,1355118394,15,Most comprehensive and easy to learn tutorials for Java on youtube Over 40 hours total,youtube.com +0,1355103757,3,Problem with applet,self.java +6,1355038205,14,Checking if an image is equal to a subimage taken from a larger image,self.java +3,1355040194,14,I m having some trouble understand the definitions of an object and a class,self.java +0,1355029222,1,TableRendered,self.java +4,1355008037,4,Some questions about Exceptions,self.java +5,1354997240,25,Which IDE do you like the most Are you classy and prefer simple text editor javac in a terminal I want to know your opinion,self.java +3,1354992154,8,Utilities to clean organize and restructure Maven POMs,github.com +2,1354943574,5,Where to get JNI libraries,self.java +10,1354927791,12,Are there any drawbacks to using for each instead of for loop,self.java +5,1354924987,3,3D game tutorial,self.java +6,1354917469,13,Ed Burns JSF 2 2 and the Highlights in Java EE 7 podcast,it-republik.de +1,1354912131,8,Need help for a multiplayer turn based game,self.java +17,1354900293,12,What should a seasoned PHP programmer should know while writing Java code,self.java +3,1354896623,7,DCL a dependency constraint language for Java,dclsuite.org +1,1354881878,6,Using Groovy and Camel for Scripting,architects.dzone.com +14,1354881843,8,Why are braces required in try catch finally,ericlippert.com +29,1354864263,18,Got my butt kicked in a technical interview figured out an answer while I was driving home today,self.java +2,1354840380,5,HELP Full screen text input,self.java +7,1354837579,14,From XaaS to Java EE Which damn cloud is right for me in 2012,blog.eisele.net +0,1354823787,2,Personal opinions,self.java +3,1354818214,6,The OO Theory Basics and Introduction,programming.freeblog.hu +1,1354811891,8,Asynchronous logging versus Memory Mapped Files in Java,mentablog.soliveirajr.com +0,1354807997,6,What if logging could be simple,timboudreau.com +11,1354807582,14,Java EE Available to Tomcat download full server or drop in a war file,self.java +0,1354807198,6,Need help finding image manipulation library,self.java +3,1354759385,8,Would anyone mind showing me their database class,self.java +3,1354752820,12,Does anyone know of a site like codeacademy com to practice Java,self.java +5,1354749540,3,TomEE and Maven,werpublogs.blogspot.co.at +5,1354749268,9,Concurrency Utilities for Java EE Early Draft JSR 236,blogs.oracle.com +1,1354745347,9,Java newbie need a hopefully quick bit of help,self.java +70,1354742498,7,IntelliJ IDEA 12 is Available for Download,blogs.jetbrains.com +1,1354742164,6,Application won t load my images,self.java +3,1354741510,9,Java 6 allowed to live just a little longer,h-online.com +1,1354735812,1,uaiHebert,uaihebert.com +24,1354730908,5,A new log4j 2 0,grobmeier.de +2,1354728984,9,Possible to make an enum of anonymous inner classes,self.java +1,1354716494,6,Aggregating Everything Map Reduce and Camel,terse-words.blogspot.co.uk +7,1354710145,6,Handling Threads amp Concurrency in JavaFX,blog.idrsolutions.com +0,1354710095,9,Spring Integration 2 2 0 GA has been released,springsource.org +0,1354710059,8,The Command Design Pattern Not Completely in Fashion,architects.dzone.com +0,1354685615,5,Help me total noob here,self.java +30,1354650940,4,Going deeper into Java,self.java +1,1354635707,12,Validating an email address in PrimeFaces p inputText field with p ajax,kahimyang.info +7,1354624676,7,Setter Injection vs Constructor Injection in Spring,javarevisited.blogspot.in +0,1354584983,5,Javit I need your help,self.java +2,1354568879,34,I m transitioning from academic Java pursuits school assignments etc to building an actual application What online resources or books are good for learning java design patters architecture for a proper full scale application,self.java +1,1354564146,6,Using Oracle Java on the Mac,self.java +0,1354561847,5,CodeNameOne Avian Java on iOS,sjhannah.com +2,1354556388,3,Code52 for Java,self.java +0,1354468477,7,Configure Netbeans for Apache TomEE and OpenJPA,tikluganguly.blogspot.com +1,1354434298,2,Spring Trasactions,java9s.com +1,1354429143,6,Getting started with hadoop on Ubuntu,programminggenin.blogspot.com +0,1354418559,7,JAVA Need help with walls in game,self.java +0,1354314335,5,Java 7 On Snow Leopard,self.java +14,1354275355,7,Any good learning interactive websites for Java,self.java +0,1354273716,8,How to start a thread on JBoss startup,dinukaroshan.blogspot.com +12,1354267079,9,Ongoing InfoQ poll What s Your Next JVM Language,infoq.com +0,1354266024,4,Basic Authentication with RestTemplate,blog.mitemitreski.com +6,1354223258,11,JGroups amp Cloud issues when clustering the EAP 6 AS 7,blog.akquinet.de +0,1354200448,11,Is there a clean way to install java framework on windows,self.java +14,1354197932,12,What s new in EJB 3 2 Java EE 7 chugging along,blogs.oracle.com +8,1354133319,12,Java Zero Day Exploit on Sale for Five Digits Krebs on Security,krebsonsecurity.com +14,1354117482,5,Date parsing management and performance,commandlinefanatic.com +0,1354058449,5,Got bored during APCS today,i.imgur.com +14,1354054354,11,UNIX file permissions for Java 7 s java nio file package,github.com +0,1354047600,12,How should I go about writing a Browser Helper Object for IE,self.java +0,1354027922,7,Using Maven overlays to build customized applications,self.java +0,1354021395,3,JDK for x32,self.java +30,1354020964,5,Understanding the Dalvik Virtual Machine,slideshare.net +9,1354016952,17,DDogleg is a new Java numerics library for optimization robust model fitting polynomial root finding and more,ddogleg.org +2,1354003114,12,What is the best Resource other than TheNewBoston to learn Game Programming,self.java +38,1353971893,3,Understanding JVM Internals,cubrid.org +0,1353961009,11,A series of articles to demystify the JavaScript landscape for developers,merrickchristensen.com +4,1353921623,7,Temporary directories in Java 7 and before,blog.mitemitreski.com +0,1353916527,5,Integration testing with Spring Hibernate,dinukaroshan.blogspot.com +7,1353890629,5,Question about installing Netbeans IDE,self.java +0,1353821012,11,My first try overloading a method How bad did I do,imgur.com +6,1353817607,8,Getting a second value out of a method,self.java +2,1353814366,21,I m in a java csc class in a university I have a question about a For Loops and Graphics problem,self.java +3,1353786539,12,Clustering of the messaging subsystem HornetQ in JBoss AS7 and EAP 6,blog.akquinet.de +99,1353762736,9,AMA Request Someone on the Java team at Oracle,self.java +0,1353721073,11,Letting clients run code on server side for a web API,self.java +3,1353708838,7,Need some advice for a beginner program,self.java +3,1353693954,7,JFrame panel help Label not working correctly,self.java +15,1353690393,30,Step Builder pattern The step builder pattern is an extension of the builder pattern that fully guides the user through the creation of the object with no chances of confusion,rdafbn.blogspot.co.uk +0,1353690184,5,Wanna start Where to start,self.java +1,1353686708,7,Simple Camel Configuration of a Twitter Endpoint,terse-words.blogspot.co.uk +4,1353682560,6,Question concerning jar s and performance,self.java +32,1353662936,42,CQEngine is a NoSQL indexing and query engine for retrieving objects from Java collections using SQL like queries without the overhead of iterating through the collection Ultra low latency response times are in the order of microseconds x post from r javapro,code.google.com +4,1353656791,10,Neal Gafter s blog A Limitation of Super Type Tokens,gafter.blogspot.it +12,1353635051,3,Javadoc coding standards,blog.joda.org +5,1353620905,21,Due to the math engine I am getting errors with a magnitude around 1x10 990 How do I account for this,self.java +17,1353617452,10,Unforgettable the eleven year story of Java s caching API,jaxenter.com +17,1353610800,7,CDI when to break out the EJBs,blog.dblevins.com +5,1353610771,6,Types of EntityManagers Application managed EntityManager,piotrnowicki.com +26,1353594518,26,Is there a website that lists the latest trends in java not just frameworks but other tech like opensocial and the next up and coming version,self.java +0,1353567245,21,Looking for a simple java web framework like zend which doesn t use xml servelets containers beans annotations and enterprise stuff,self.java +0,1353538922,4,Arquillian Warp and TomEE,rmannibucau.wordpress.com +0,1353534516,6,Installing Java without Admin Rights Win7,self.java +9,1353533304,5,Java Specification Requests in Numbers,blog.eisele.net +0,1353527739,7,Popularity of UI technology on Devoxx 12,henk53.wordpress.com +6,1353524985,12,Deploy java web application directly to AppFog cloud PaaS from eclipse IDE,srccodes.com +4,1353510645,2,GWT critics,kamel-mahdi.blogspot.com +0,1353505418,5,Java Developer positions in Australia,self.java +1,1353486920,30,Trying to learn Java came across this example in my book but cannot figure out why it gives me an error when I try to launch it any ideas thanks,imgur.com +10,1353462292,7,Simple standalone Weld CDI Hello World Example,gist.github.com +0,1353442881,9,JAVA File IO Address Book Deleting contacts from it,self.java +0,1353378196,10,Beginner question on storing retrieving an integer through i o,self.java +9,1353363004,7,DataTable Cell Editing in PrimeFaces 3 5,blog.primefaces.org +0,1353361539,10,SAP NetWeaver Cloud is Java EE 6 Web Profile Certified,scn.sap.com +0,1353352552,5,Beginner in need of guidance,self.java +0,1353345486,10,Question Slick 2d Configurable Emitter Rotation X Post from javagamedev,self.java +0,1353344583,17,Would it be an okay idea if senior programmers be a mentor to the neophytes in java,self.java +1,1353334356,5,PrettyTime and Joda playing nice,fabiankessler.blogspot.com +9,1353329868,6,Hibernate Lucene Search Using SQLite database,srccodes.com +0,1353324830,6,Beginner Java Assignment int turning negative,self.java +0,1353313650,11,Can someone help find why my code isn t working correctly,self.java +10,1353295316,7,Doesn t Java matter for Android apps,self.java +17,1353265361,4,Java Certification good idea,self.java +46,1353250415,17,If swing is obsolete what is used instead in Java to make GUI software for PC s,self.java +9,1353234359,15,Open source game wanted for lessons on Design Patterns Approx 30 000 60 000 LoC,self.java +2,1353220512,11,Does any one know how often Intellij Idea goes on sale,self.java +32,1353206600,10,Java s Atomic and volatile under the hood on x86,brooker.co.za +2,1353195008,16,How do you configure a jar file to run using external jar libraries with native source,self.java +44,1353179222,16,Drip a launcher for the JVM that provides much faster startup times than the java command,github.com +4,1353177199,5,How to accurately increment doubles,self.java +1,1353156312,8,Terse Words Apache Camel Connection Beans Without Spring,terse-words.blogspot.co.uk +7,1353090246,4,Tracking Insecure jar files,youtube.com +14,1353086316,10,Where can I find a Simple Tutorial on Writing GUIs,self.java +20,1353052400,8,State of the Lambda Collections Nov 2012 update,cr.openjdk.java.net +2,1353043557,16,Meta Annotations are an experiment in annotation inheritance abstraction and encapsulation with a Java SE mindset,blog.dblevins.com +1,1353020452,10,How To Get The HTTP Status Code In Selenium WebDriver,ninthavenue.com.au +36,1352987728,9,Crash adds a SSH telnet shell to Java apps,crashub.org +0,1352973915,7,Setting Up Java Developer Environment For Beginners,tiptogeek.com +8,1352949535,10,I ve got an interesting mathematical Java color related conundrum,self.java +0,1352938335,9,So I need some homework help involving linear equations,self.java +31,1352919415,5,JVM Performance Optimization 4 Parts,self.java +0,1352911359,9,Have some questions making an FM station finder app,self.java +10,1352910565,8,A succinct way to manipulate dom like structures,kbsriram.github.com +3,1352893344,4,Debugging Weblogic via Eclipse,captaindebug.com +0,1352856904,15,Studying for an exam would anyone be able to help me out with this question,self.java +1,1352845186,9,Download and crop an image direct from a servlet,kahimyang.info +4,1352844216,20,Is there a way to hook up a Jython console to a paused debugging JVM or any such similar nonsense,self.java +3,1352837729,5,Java Beginners resources sites books,self.java +0,1352829476,4,JAVA Static Void Main,self.java +1,1352824294,7,Every Programmer has its Own Toolbox jUtils,marcobrandizi.info +1,1352823338,4,Help Highscore track keeping,self.java +0,1352770278,2,Recursion help,self.java +0,1352764821,9,Java problem i cant seem to solve please help,self.java +16,1352752665,7,Your Chance to Shape Java EE 7,java.dzone.com +21,1352749137,10,Does Project Lambda include function pointers or only lambda functions,self.java +17,1352663232,8,Want to contribute to an open source project,self.java +1,1352663193,5,Subclass structure help for beginner,self.java +8,1352585590,8,Executable jar with an external class path reference,self.java +12,1352540765,14,Announcing jLens a lenses library for Java Includes annotation processor for automatic lens generation,github.com +0,1352522291,6,Ask Toolbar installed while UPDATING Java,java.com +0,1352512479,10,How can I refer to an object via a variable,self.java +0,1352471799,13,Load balancing and failover of remote EJB clients in EAP6 and JBoss AS7,blog.akquinet.de +7,1352431100,12,Is there any simple methods for reversing an int 19 gt 91,self.java +1,1352426977,7,Anyone know what I m doing wrong,self.java +0,1352419287,18,How can I make a boolean within one while loop accessible to be recognized in another while loop,self.java +0,1352413028,10,What are some popular professional domains where Java is prevalent,self.java +0,1352410810,5,OSX Bundler program for Windows,self.java +42,1352406093,9,Like it or not closures are coming to Java,javaworld.com +1,1352393035,13,Video Progressive Java Tutorials Jan Machacek on Polyglot applications in Java and Spring,skillsmatter.com +17,1352383553,9,This is a long shot but is it possible,self.java +1,1352350220,9,Help required setting up environment for a net developer,self.java +2,1352323878,5,Question about calendaring and availability,self.java +16,1352321269,8,Implementing container authentication in Java EE with JASPIC,arjan-tijms.blogspot.com +1,1352318113,15,What are some good books as to which I can learn C coding and Java,self.java +0,1352317124,13,Checking if Two int Arrays Have the Same Content Without Sorting First moka,mgakashim.com +4,1352313433,2,Custom Rounding,self.java +0,1352310777,14,Hiring Software Engineer Java 6 Month Contract With Possible Extension St Louis MO area,self.java +10,1352298448,8,A quick question about efficiency with if statements,self.java +7,1352276530,6,Simple Question about Arrays and Strings,self.java +1,1352261740,11,Java Based Text Encryption gt One of my first old programs,github.com +1,1352212657,10,Does Java contain a data structure that is type independent,self.java +1,1352209904,9,Couchbase Create a large dataset using Twitter and Java,tugdualgrall.blogspot.fr +16,1352209840,8,Why Arrays deepEquals When We Have Arrays equals,rerun.me +36,1352209784,7,Why code reviews are good for you,beust.com +0,1352194930,9,What s the programming language in major game titles,self.java +1,1352186679,15,Two Years Later A Report Card On Oracle s Ownership of Java Dr Dobb s,drdobbs.com +0,1352179466,6,Top 8 Java Serialization Interview Questions,techbyageek.com +1,1352173945,5,Java next Groovy vs Scala,adamldavis.com +1,1352155707,13,Not sure what this would be called but a character tree or something,self.java +10,1352155580,5,APIMiner Javadoc source code examples,apiminer.org +7,1352144383,13,Which JVM languages support mobile devices such as Android iOS or Windows Phone,self.java +18,1352122936,12,Java Checked Exceptions Revisited or a closer examination of a flawed mechanism,typecastexception.com +1,1352116938,11,Java University JavaOne and Silicon Valley Code Camp plain old objects,plainoldobjects.com +0,1352101246,4,Android port for Jaybird,firebirdnews.org +11,1352073215,7,DCL a dependency constraint language for Java,dclsuite.org +1,1352072206,10,A Java based text encryption program What do you think,prettymuchabigdeal.com +1,1352069832,23,This book got me started with Java and programming in general What are some of the best java programming books you have read,amazon.com +20,1352035339,5,Roundup Scala for Java Refugees,codecommit.com +0,1351982663,24,HEY YOU HAVE A STUPID ASS FUCKING UPDATE THAT NEEDS URGENT ATTENTION SO I M GOING TO CRASH YOUR PROGRAM TO LET YOU KNOW,self.java +0,1351973056,11,Anyone want to help me with a code I ve written,self.java +10,1351971121,24,Is there a method that allows you to pass in a string representing a mathematical equation and return the integer evaluation of that equation,self.java +6,1351960696,8,HTML 5 Friendly Markup in JSF 2 2,weblogs.java.net +39,1351953568,5,The Eight Levels of Programmers,codinghorror.com +0,1351922036,3,Stack Overflow Error,self.java +24,1351877673,8,What s New in JAX RS 2 0,java.dzone.com +9,1351877543,6,JSF 2 0 Ajax Suggestion Box,imixs.org +15,1351867819,8,Version Based Optimistic Concurrency Control in JPA Hibernate,squirrel.pl +0,1351863370,8,Design patterns in the test of time Adapter,ayende.com +0,1351863316,4,Scaling Scala vs Java,jazzy.id.au +0,1351809394,10,J2EE is Dead Long live Javascript Backed by JSON Services,java.dzone.com +13,1351805572,11,Writing a program to retrieve people s Minecraft skins using JavaFX,lyndonarmitage.com +6,1351768117,11,Connecting VisualVM with a remote JBoss AS 7 EAP6 JVM process,blog.akquinet.de +0,1351762654,4,IntelliJ IDEA Productivity Tips,blogs.jetbrains.com +14,1351744203,11,Does anyone have anything good to say about ADF with JDeveloper,self.java +9,1351696357,9,Does anyone use XSLT to transform XML into HTML,self.java +2,1351691672,8,Design patterns in the test of time Prototype,ayende.com +0,1351672025,9,Could someone mark these java array questions for me,self.java +2,1351649814,9,Need a good book or other resource on JSP,self.java +1,1351648903,8,Question with my Super Tic Tac Toe game,self.java +3,1351638787,1,javaFX,self.java +1,1351639808,3,Eclipse Tips Navigation,mchr3k-coding.blogspot.co.uk +28,1351635991,17,Did you know that the first 4 bytes in all Java class files have the value 0xCAFEBABE,i.imgur.com +1,1351627335,8,Learning Java and I would appreciate some guidance,self.java +137,1351624253,12,This made me laugh way to much while reading Head First Java,s18.postimage.org +1,1351618293,12,lt question gt printing an error for spaces entered in a field,self.java +1,1351609646,12,New LiveRebel 2 5 Config Scripts intelligently manage Java apps zeroturnaround com,zeroturnaround.com +5,1351608268,16,What s the story with JDK 7 and JVM 7 on Mountain Lion 10 8 2,self.java +1,1351606599,9,Which standard to use for config files in Java,self.java +2,1351606977,3,JOptionPane showMessageDialog hanging,self.java +76,1351602697,14,My Top 10 Tips on how to be more productive with the Eclipse IDE,eclipsesource.com +7,1351602634,8,Spring MVC from JSP and Tiles to Thymeleaf,blog.springsource.org +2,1351578315,15,So I m Teaching myself Java and i m having trouble understanding the read function,self.java +0,1351574466,4,Multidimensional Array Index problem,self.java +6,1351564240,2,Noob question,self.java +5,1351544160,11,Integrating SAP on the Java EE Way with Cuckoo and Hibersap,de.slideshare.net +3,1351524343,14,How to read an HT X ML rich text file into a StyledText widget,self.java +0,1351516766,8,Difference between notify and notifyAll in Java revisited,javarevisited.blogspot.in +1,1351488864,27,Trying to add a JButton outside of the class where i creat my JFrame the way I did it creates two windows pastebin in comments need help,pastebin.com +8,1351477083,11,Please suggest a good light and portable install less Java IDE,self.java +0,1351475837,12,Tried Google does Reddit have a Java API for accessing user accounts,self.java +6,1351466313,4,Help with multithreading synchronization,self.java +0,1351463429,8,Building a java soundboard applet for a website,self.java +10,1351454078,5,A Question About Immutable Objects,self.java +2,1351456150,12,How do I display a message for a set time using Timer,self.java +10,1351396107,5,Game Engine amp Gui Interaction,self.java +3,1351375807,12,How could I increase the style readability of my code even more,self.java +3,1351362442,9,Implementing Entity Services using NoSQL Part 4 Java EE,java.dzone.com +0,1351355188,9,Doing Evil Hangman assignment Tips Where to store words,slazp.blogspot.com +11,1351342037,10,Betamax Record amp replay HTTP traffic for simple reliable tests,freeside.co +3,1351327014,5,Refactoring Safe Switch on Enum,fabiankessler.blogspot.sg +78,1351326810,7,Oracle Gets Java Running on iOS Devices,java.dzone.com +1,1351326776,4,Why Coding Style Matters,coding.smashingmagazine.com +1,1351320184,7,Jaybird Java and Firebird by Mark Rotteveel,prezi.com +4,1351305368,6,JSF Error Pages That Actually Work,ninthavenue.com.au +6,1351293698,18,Looking for a year long placement from the UK to the USA for a Java Android Development position,self.java +3,1351286183,14,The latest version of the EJB 3 2 spec available on java net project,blogs.oracle.com +4,1351262569,6,Security researcher experiments with patching Java,h-online.com +17,1351259134,37,Any good resources to get over that hump from advanced beginner intermediate java knowledge to being able to jump into an enterprise project I take a look at our source tree at work and I am overwhelmed,self.java +15,1351252787,7,JNAerator making JNA even easier than JNI,code.google.com +0,1351222345,13,Can someone help me debug this simple java program for my 150 class,pastebin.com +0,1351214032,3,Viewport advice required,self.java +1,1351213220,3,Adventures in Concurrency,blog.aggregateknowledge.com +0,1351213590,5,Some help with a program,self.java +0,1351209679,2,Java Problem,self.java +6,1351207349,8,A PoC using Play framework MongoDB and AngularJS,github.com +8,1351206710,5,Java and communicating with hardware,self.java +1,1351187557,5,Refactoring Safe Switch on Enum,fabiankessler.blogspot.com +0,1351190606,10,Is it possible to set user home for a jnlp,self.java +0,1351173490,13,Running into a problem making a Hello World program Not a good sign,self.java +2,1351155661,11,Vendor Gives Its Java Tool Away to Raise Money for Charity,excelsiorjet.com +0,1351153731,17,Anyone has a filechooser code for opening file on the server not the client in Java EE,self.java +8,1351114147,10,Does anyone know why this would have an error code,self.java +0,1351087173,2,Maven Tips,java.dzone.com +0,1351087121,7,My Scala vs Clojure Impression In Pictures,theholyjava.wordpress.com +20,1351087051,6,How to Monitor Java Garbage Collection,cubrid.org +0,1351077883,13,Are you fricking kidding me Rude language incoherent rant to let off steam,self.java +2,1351051236,5,Why Is Maven So Slow,ninthavenue.com.au +12,1351041452,13,JPA Mini Book First Steps and detailed concepts uaiHebert 27 pages and freee,uaihebert.com +0,1351026445,6,General Java help needed Not Writing,self.java +15,1351021257,8,Oracle Certified Enterprise Architect is it worth it,self.java +0,1351019893,11,Creator of Tapestry interview part 1 origins main concepts ui layer,devrates.com +0,1351006212,4,Need help in java,self.java +3,1350997121,4,NightHacking with James Gosling,javafx.steveonjava.com +6,1350997093,7,Flyway Database Java Migration Open Source Framework,methodsandtools.com +7,1350995742,8,Rebel Labs Tutorial Do You Really Get Classloaders,zeroturnaround.com +0,1350926726,8,How to resolve java lang ClassNotFoundException in Java,javarevisited.blogspot.com +0,1350917650,8,XA Transactions 2 Phase Commit A Simple Guide,java.dzone.com +7,1350915035,7,Design Best practices using Factory Method Pattern,idiotechie.com +0,1350914866,7,Improve Your Java Code Functional Style NOW,weblogs.java.net +0,1350914806,9,Don t Be Just a Bubbles and Arrows Architect,java.dzone.com +4,1350901113,7,SCJA Sun Certified Java Associate Certification Exam,self.java +0,1350867981,15,Trouble with getting log4j to work with JBoss 5 1 on a Java Web Application,self.java +2,1350864658,7,Can t find any function field libraries,self.java +22,1350860154,13,Are there any books about how java works rather than how to program,self.java +2,1350857394,8,Any tips to make this program more efficient,pastebin.com +0,1350856123,1,Comparator,self.java +1,1350829842,5,ImageMagick Performance analysis and optimization,jaibeermalik.wordpress.com +1,1350829132,11,Image Manipulation Red Eye Effect removal tools techniques amp amp solutions,jaibeermalik.wordpress.com +9,1350798092,7,JVM performance optimization Part 3 Garbage collection,javaworld.com +0,1350798010,4,Method Injection in Spring,programmingforliving.blogspot.sg +1,1350797986,11,Understanding JVM Internals from Basic Structure to Java SE 7 Features,architects.dzone.com +17,1350792965,6,Replacing a HashSet with a BitSet,kinoshita.eti.br +1,1350789726,5,Struggling to make Swing work,self.java +0,1350786036,10,I am 13 and am looking to learn some java,self.java +1,1350779290,3,Vocabulary Enum Pattern,fabiankessler.blogspot.com +42,1350778240,13,I m 14 and I want to learn java Where should I start,self.java +1,1350769940,5,OmniFaces 1 2 is released,balusc.blogspot.com +0,1350752468,12,airline Java annotation based framework for parsing Git like command line structures,github.com +0,1350747062,5,Java Version Of Core LLVM,phoronix.com +7,1350744248,4,Application Assembler Maven Plugin,mojo.codehaus.org +0,1350744084,12,GUI Creating a JPanel with background image that STILL IS A CONTAINER,self.java +8,1350714939,4,Java programmer identity crisis,self.java +1,1350696051,8,What is the reserved word volatile used for,rodrigosasaki.com +5,1350697409,8,looking for some feedback on my battleship clone,self.java +26,1350687306,5,Examples of Bad Java Programming,self.java +0,1350682955,13,Java Java spring and Java hibernate for my interview next week Need Advice,self.java +0,1350680341,8,Whats the best way for UML2CODE and back,self.java +6,1350674521,4,Need help regarding GUIs,self.java +3,1350674861,2,Using ProtectionDomain,self.java +0,1350662954,3,Can you help,self.java +24,1350659106,10,What is the reserved word volatile used for in Java,rodrigopsasaki.wordpress.com +3,1350626612,5,Two Constructors in One Class,self.java +0,1350623495,6,Pluging based architecture using Spring integration,dinukaroshan.blogspot.com +1,1350612571,6,Useful little FileEditor class I created,pastebay.net +0,1350607145,19,I missed a day in class and now I can t figure out user defined methods Can anyone help,self.java +4,1350604282,17,I ve created an open source project and I would love to have your feedback on it,sourceforge.net +31,1350577306,12,Oracle Leaves Fix for Java SE Zero Day Until February Patch Update,threatpost.com +11,1350570687,9,What s new in JSF 2 2 J Development,jdevelopment.nl +11,1350564039,7,10 Garbage Collection Interview Question to refresh,javarevisited.blogspot.in +2,1350550648,10,Comparing three numbers to three other numbers and finding similarities,self.java +0,1350544338,4,Do loop please help,self.java +0,1350528613,8,Dont be LAZY yet not so EAGER too,dinukaroshan.blogspot.com +5,1350503201,14,What is the best way to parse and munipulate large XML files in Java,self.java +0,1350482770,22,Attention Java updates department STOP NAGGING ME Look how Chrome does updates Just do that FFS PLEASE For the love of GOD,self.java +5,1350485346,9,Oracle Java SE Critical Patch Update Advisory October 2012,oracle.com +7,1350480136,24,Five ways to maximize Java NIO and NIO 2 while it seems silly to call it new I O it certainly deserves more attention,javaworld.com +10,1350478698,5,Java Strategy Highlights 2012 YouTube,youtube.com +1,1350478228,4,XML Processing In Scala,blog.knoldus.com +1,1350478017,4,Hot Deploy Still Hell,java.dzone.com +1,1350477980,10,Brian Goetz opens JAX London with The Road to Lambda,jaxenter.com +11,1350454599,9,Which form of openGL for java should I use,self.java +0,1350449078,21,This is probably a nooby problem but I can t seem to be able to run a compiled program with commandlines,self.java +1,1350448218,5,Trees not working as expected,self.java +2,1350437951,16,This is kind of a long shot but can someone help me out with this Switch,self.java +4,1350429529,13,This has to be a stupid question trying to make some dots bounce,self.java +8,1350419519,12,What s New in JSF A Complete Tour of JSF 2 2,blogs.oracle.com +2,1350419435,15,ADF 11g R2 WebLogic 10 3 5 vs ADF Essentials Glassfish 3 1 Performance Test,andrejusb.blogspot.com +4,1350417299,7,Moving from PHP to Java job advice,self.java +4,1350417180,7,ElSql a Java Library for Managing SQL,h-online.com +0,1350414959,7,Tapestry 5 3 6 HMAC and fixes,tapestry.apache.org +12,1350406929,23,I like Java and all and maybe this is a OOP problem not a Java one but I have an issue with dependencies,self.java +0,1350397146,6,Can I have some help please,self.java +4,1350392923,7,JUnit testing REST Services and Spring MVC,krishnasblog.com +6,1350395443,6,JRebel Saves a Developer s Life,zeroturnaround.com +0,1350392850,5,Unexpected Java Float Precision Changes,architects.dzone.com +0,1350386829,5,Ted you will be missed,blogs.tedneward.com +16,1350385865,14,Apache Karaf 2 3 0 Released Karaf is a server side OSGi runtime environment,icodebythesea.blogspot.ca +0,1350347360,10,Can someone explain what if blankX 10 0 blankY means,self.java +11,1350329951,7,Things to love about Java Exception Handling,typecastexception.com +5,1350327123,11,GIThub push changes directly into BuildHive and never run tests again,kohsuke.org +23,1350324440,4,Empowering the smart home,code.google.com +0,1350324390,7,A Web Application For Managing Quartz Schedulers,code.google.com +0,1350307998,10,Just Released ElSql a Standalone Java Library for Managing SQL,opengamma.com +0,1350288760,8,Help needed with parsing XML and getting InputStream,self.java +3,1350242703,6,Installation and Configuration of Sonatype Nexus,alexander.holbreich.org +0,1350217798,8,Coderwall Top Java frameworks as rated by developers,coderwall.com +0,1350191176,8,Can anyone explain to me what this means,self.java +0,1350191301,10,Getting the value from a HashSet with only one item,self.java +21,1350188416,6,Concise Collection Initialization using Google Guava,thoughtfuljava.blogspot.com +0,1350153368,5,Node js for Java developers,ibm.com +1,1350107913,7,A simple way to test distributed applications,rdafbn.blogspot.co.uk +8,1350107639,3,The OSGi puzzle,javadepend.wordpress.com +3,1350107957,12,Bug Fixing To Estimate or Not to Estimate That is The Question,java.dzone.com +91,1350079428,13,Google s Guava project receives an interesting bug report Joshua Bloch answers it,code.google.com +2,1350077208,3,Question about assertions,self.java +5,1350073850,4,Question about reference types,self.java +3,1350053735,11,Generating sums with restricted sets of integers primes Math Research Project,self.java +7,1350033395,23,When I call a method in loop do I get copy or original every time i go through the loop more details inside,self.java +9,1350027642,11,Send logs by Email Notification using Apache log4j SMTPAppender srccodes com,srccodes.com +3,1349999673,11,What are some good mandatory meta functions to use in projects,self.java +9,1349988526,7,What I Learned at JavaOne part 1,adamldavis.com +1,1349952181,5,ERROR No suitable Java found,self.java +7,1349950069,7,Survey top web frameworks for the JVM,infoq.com +21,1349946755,18,Open Question from O Reilly would you like to see a new version of Java in a Nutshell,blog.idrsolutions.com +1,1349936530,24,Beginner Need help parsing a random webpage s source code extracting all links of different types then displaying the results in a listed format,self.java +8,1349935167,18,Database schema version control demystified How to get started in any project and what to look out for,scalabilitycookbook.com +2,1349932143,5,Help With a JOGL Problem,self.java +0,1349925298,24,Having an issue with a video tutorial I m taking getting The project Virescence which is reference by the class path does not exist,self.java +1,1349919028,6,Complex validation with builders and immutability,severoon.livejournal.com +0,1349917065,4,Beginner Question Saved values,self.java +9,1349914123,10,Is It Just Me That Likes Java But Hates Oracle,self.java +0,1349907359,4,Reflective Programming in Java,self.java +0,1349900567,23,I m hoping to be employed soon as a Java developer What sort of things is Java being used for mostly these days,self.java +34,1349893483,6,How to Tune Java Garbage Collection,architects.dzone.com +0,1349894225,7,Jaybird survey results for Firebird JDBC Driver,firebirdnews.org +5,1349889140,16,Do you guys use Math random or the Random class more often for generating random numbers,self.java +0,1349888837,13,Looking for some java programming challenges to take with me on my honeymoon,self.java +0,1349886024,10,Apache ActiveMQ 5 7 0 Released Adds Java 7 Compatibility,java.dzone.com +0,1349877600,9,Return Multiple Values from a Function with Java Generics,bhaskardas.info +0,1349874265,7,Saving cycles in Java using StringBuilder Guchex,guchex.com +4,1349852995,9,Spring MVC 3 0 with STS Tutorial Part I,duckranger.com +0,1349852931,6,Enter the droid world An introduction,dinukaroshan.blogspot.com +0,1349837553,10,Can t get Eclipse to run their forums are trash,self.java +0,1349837219,8,Need a little help with finishing a project,self.java +0,1349814674,9,How to pass a variable from java to php,self.java +38,1349805988,12,Why Java is still one of the best web platforms out there,codovation.com +6,1349772727,7,Lock that Code An example using Semaphores,dinukaroshan.blogspot.com +1,1349748814,22,Noob here how can I prompt the user y n to start a program from the beginning after it has been run,self.java +1,1349740817,9,Help with reducing the redundant code in my Program,self.java +0,1349743248,4,Certifications for a Student,self.java +20,1349732729,7,GPU Accelerated Java by AMD and Oracle,ubuntuxtreme.com +10,1349689654,14,Upcoming talk Getting there from here Java Scala and Service Orientation at the Guardian,meetup.com +2,1349688401,8,Moving projections down to database layer in Grails,grailsblog.pl +0,1349686573,7,Eclipse help Diffrent look for project explorer,self.java +0,1349661552,6,Help With loops and interest rate,self.java +1,1349639776,9,Will JSF 2 2 finally standardize Web flow technology,theserverside.com +24,1349632388,7,Avian lightweight virtual machine and class library,oss.readytalk.com +2,1349628337,13,Using AspectJ to log all methods parameters and return values during application runtime,adevedo.com +29,1349617010,19,Liquibase is an open source database independent library for tracking managing and applying database changes xpost from r javapro,liquibase.org +2,1349600043,11,Why we cannot reduce the visibility of method inherited from parent,self.java +2,1349592551,5,JSF2 Creating Custom Component OutputObject,adevedo.com +28,1349548499,21,I don t always need UML diagrams but when I do I have an Eclipse plug in make them for me,objectaid.com +0,1349542690,11,Help removing a color from a JButton component in a GUI,self.java +15,1349524390,7,5 key things I learnt at Javaone2012,blog.idrsolutions.com +3,1349496076,8,MDD Mock Driven Development awesomesauce or anti pattern,self.java +0,1349495966,11,Trying out IntelliJ IDEA could use a small bit of help,self.java +4,1349494421,11,New to java had a question on making switch case statements,self.java +3,1349440352,6,Top 5 Java Web Development Frameworks,learncomputer.com +6,1349435860,8,Java One liner to Configure Logging using log4j,thoughtfuljava.blogspot.in +1,1349407419,20,How do I add graphics from two separate classes to a JFrame on my main class very new to programming,self.java +0,1349403135,6,Having trouble with a jar file,self.java +0,1349401533,9,Advice on where this temperature converter is going wrong,self.java +0,1349398430,2,Plugin support,self.java +8,1349360021,22,Is anyone actually using Eclipse Juno I ve tried and its instability has wasted hours of my time What were they thinking,self.java +5,1349358185,11,Why the New Oracle ADF Essentials is Important to JSF Developers,java.dzone.com +0,1349357904,6,KeyStore vs TrustStore in Java SSL,javarevisited.blogspot.com.au +0,1349357794,5,Unit Tests Versus Code Quality,java.dzone.com +18,1349357530,5,Giving up on Eclipse Juno,danhaywood.com +41,1349356745,5,Oracle outlines its Java plans,h-online.com +3,1349348814,11,Enable GZIP Filter in Jetty Server for dynamic compression of contents,srccodes.com +1,1349347762,8,Simulation of Process Scheduling Algorithms in JAVA HTMLwebzine,htmlwebzine.co.in +0,1349335461,3,collation number ordering,self.java +6,1349302884,10,Question on the Robot class and its use in Applets,self.java +16,1349258193,11,Java test frameworks overview Cucumber JVM Fest 2 x catch exception,maciejwalkowiak.pl +1,1349216870,8,Any advice for someone just starting in Java,self.java +2,1349210098,13,Right logical unsigned shift inserting a 1 instead of 0 for sign bit,self.java +0,1349207598,17,Anyone want to try out a new live market platform for writing and selling Java trading algos,self.java +0,1349202315,20,I wanna write Java code or at least indented notes and such by using an iPad any suggestions for apps,self.java +0,1349193375,9,From Programmer to Elite Independent JavaWorld interviews Carlus Henry,javaworld.com +25,1349185951,8,Sumatra s GPU harnessing now official OpenJDK project,h-online.com +6,1349185766,10,slf4j 4f Capturing Error Runtime Logging Produced by Native Code,opengamma.com +3,1349179132,10,How Can I Draw Position and Rotate Text using Graphics2D,self.java +7,1349164328,8,LiveRebel 2 5 released Continuous Delivery adherents rejoice,zeroturnaround.com +18,1349157446,19,Can someone help me understand what enumeration is and how to use it and why you would use it,self.java +0,1349145569,4,Help with implementation methods,self.java +1,1349127055,21,New to Java but not programming I need some help understanding how Java JBoss works any help would be much appreciated,self.java +0,1349100096,8,5 Best Open Source Code Editors for Developers,geektub.com +37,1349102381,8,Spring Framework creator Rod Johnson to join TypeSafe,jaxenter.com +2,1349100155,4,Eventing with Spring Framework,blog.yohanliyanage.com +16,1349100054,6,A better Java Scala or Xtend,duncan.mac-vicar.com +5,1349072876,12,Firebird Java driver Jaybird 2 2 1 is Released with many fixes,firebirdnews.org +0,1349064400,8,Can anyone help me with my java homework,self.java +6,1349031419,14,Oracle ADF for free It should never have been licensed in the first place,theserverside.com +0,1349030564,2,POJO Question,self.java +19,1349012444,6,Eclipse 4 2 SR1 silently released,jdevelopment.nl +12,1348983343,10,JDK bug migration moves to JIRA public system almost here,jaxenter.com +3,1348983287,6,Scala Guice Gradle Tutorial Part 1,blog.m1key.me +17,1348973045,16,Why exactly do I need to have a new operator in my code for certain methods,self.java +2,1348925619,17,Mac about SWT Java App menu doesn t work as advertised Runnable test code inside Help appreciated,self.java +22,1348901023,12,What is the difference between List and ArrayList and Map and HashMap,self.java +3,1348889937,4,Thread migration in Java,self.java +1,1348870752,9,10 reasons why Java is the top embedded platform,blogs.oracle.com +2,1348870128,10,JDK bug migration moves to JIRA public system almost here,jaxenter.com +0,1348864386,7,What s the file scanners default directory,self.java +0,1348853795,5,what is a formated variable,self.java +0,1348845938,7,I Need a little help with loops,self.java +21,1348835114,9,Speedup Your Collections with Improved Hashing Function from Java7,thoughtfuljava.blogspot.in +0,1348797399,14,Beginner Java class can t figure out the problem with my code please help,self.java +0,1348750751,3,JavaScript By Example,examplejs.com +0,1348744113,4,Configure SLF4J with log4j,srccodes.com +0,1348716386,6,Implementing graphics and swing Need help,self.java +3,1348693986,8,Any opinion on jmx heap monitoring forced gc,self.java +0,1348682052,11,Demonstration of Akiban s Geospatial Support using the Twitter Streaming API,akiban.com +0,1348671486,20,Oh look another billion user security exploit in Java 5 6 7 When are people going to just move on,sonatype.com +13,1348665274,21,5 Things That Make Xtend a Great Language for Java Developers An introduction to Xtend a new language for the JVM,sebastianbenz.de +36,1348653851,10,More security flaws discovered in Java by Security Explorations team,arstechnica.com +1,1348638474,12,Transforming a 15 Year Old Model driven Application from C to Java,infoq.com +1,1348627444,11,xpost from eclipse Issues trying to run eclipse Automated Tests package,self.java +6,1348622882,9,Using LibreOffice in headless mode to spell check text,github.com +9,1348608822,5,The beauty of JUnit Theories,adamldavis.com +4,1348602620,7,How to test Akiban s REST Interface,akiban.com +6,1348600800,5,Anyone else going to JavaOne,self.java +0,1348593210,3,A rant Again,self.java +4,1348588731,12,JSF 2 Richfaces 4 and Select All Check box in Richfaces DataTable,adevedo.com +2,1348589242,7,Oracle ADF goes shareware with ADF Essentials,jaxenter.com +3,1348588600,9,Oracle launches free version of Application Development Framework ADF,infoq.com +31,1348588252,10,Introducing the New Date and Time API for JDK 8,java.dzone.com +1,1348587934,22,Using arquillian to create EJB and JPA integration tests on Glassfish with an in memory Derby for testing and MySql for production,stijnvp.wordpress.com +0,1348580727,5,Is Java Dead or Invincible,dublintech.blogspot.gr +2,1348580102,20,I m wanting to create an IM Application just to mess around with Anyone know how I could start this,self.java +2,1348579371,5,Thread cancellation and resource leaks,ewontfix.com +0,1348579245,8,Why I Enrolled in an Online Scala Course,java.dzone.com +0,1348579198,6,New ActiveMQ Failover and Clustering Goodies,architects.dzone.com +0,1348567823,14,Want to create an image processing app but don t know where to start,self.java +0,1348556732,9,Make a path algorithm in a map for android,self.java +0,1348549615,5,Getting null as output Help,self.java +56,1348531260,3,WTF Lady Java,youtube.com +0,1348526987,12,How to save an Array to a file without ArrayList lt gt,self.java +2,1348492774,5,Cheatsheet Java Profiling with VisualVM,refcardz.dzone.com +38,1348477072,9,r javagamedev A friendly Java centric game development subreddit,reddit.com +0,1348435487,16,Shopping Carts Patterns How do you manage the state of your inventory reservation cancellation exceptions concurrency,self.java +0,1348408761,3,Java compilation Unit,anotherjavaduke.wordpress.com +0,1348390863,5,JavaZone 2012 Taming Java Agents,java.dzone.com +0,1348390820,6,Knolx Session Functional Object in Scala,blog.knoldus.com +44,1348389905,10,New Date and Time API looks set for Java 8,infoq.com +0,1348360436,15,New Java Video Lesson 0 Installation of NetBeans and Java by XoaX net Video Tutorials,xoax.net +0,1348300850,3,Question about Backtracking,self.java +17,1348297932,5,Advanced Messaging with Apache ActiveMQ,architects.dzone.com +0,1348297810,6,Sorting out listener implementations in Java,eclipsesource.com +0,1348297775,8,Throw Checked Exceptions Like Runtime Exceptions in Java,java.dzone.com +0,1348297735,6,Spring 3 1 Caching and CacheEvict,java.dzone.com +4,1348261714,4,Developer tools for benchmarking,self.java +1,1348243737,18,When companies don t use a repository manager I feel like Scotty talking to the Apple II Mouse,sonatype.com +51,1348234483,7,Avoid Random Use new ThreadLocalRandom from Java7,thoughtfuljava.blogspot.in +1,1348233462,7,Need some help with my Java homework,self.java +0,1348232940,9,Help with three simple programs for my CompSci class,self.java +0,1348198578,5,Help with a Java problem,self.java +5,1348191271,12,Keep Java runtime up to date automatically and automatically remove old versions,sourceforge.net +8,1348177152,7,Accessing a web API for JSON data,self.java +3,1348174776,9,jmeter plugins Every load test needs some sexy features,code.google.com +0,1348172989,9,A new Date and Time API for JDK 8,geekmonkey.org +10,1348172446,9,How to spice up the teaching of programming languages,self.java +5,1348166262,9,Trying to generate random numbers between 51 and 100,self.java +6,1348161544,12,Using Reflection and Properties to add Modularity to a Java Application Guchex,guchex.com +2,1348163053,8,Why is it printing the same thing twice,self.java +0,1348156388,17,Are you using Puppet or Chef to run a Maven build Stop you are doing it wrong,sonatype.com +4,1348136013,21,Java example code to generate random Alpha Numeric text which is not easy to guess Can be used for captcha program,srccodes.com +0,1348132401,26,I have a large selection of Java and related technologies and OO design books to pass on for a fee postage See inside for more details,self.java +1,1348129379,4,Heroku Enterprise for Java,blog.heroku.com +1,1348122732,16,Working on a school project about pathfinding I would really appreciate some help on the algorithm,self.java +2,1348117816,7,Library to optimize a polynomial in Java,self.java +2,1348112872,9,Wanted Java Developer for Information Interview CS student here,self.java +1,1348106731,7,Learning Java trouble with nested for loops,self.java +0,1348091607,8,I can t get substring to work help,self.java +2,1348087598,10,An introduction to Debugging a Java Program using Eclipse Guchex,guchex.com +1,1348090402,10,Idea and question for improving animation in phonegap android app,self.java +0,1348083121,10,Using Strings in switch statements in Java SE 7 Guchex,guchex.com +0,1348077283,7,How to Integrate Spring with Eclipse RCP,self.java +53,1348061229,9,Top 20 Features of Code Completion in IntelliJ IDEA,jetbrains.dzone.com +10,1348062092,6,JSF 2 Spring 3 integration example,mkyong.com +5,1348061435,6,How to Tune Java Garbage Collection,cubrid.org +10,1348059517,6,Please explain these concepts to me,self.java +0,1348036877,3,Project Lambda Syntax,self.java +1,1347995865,11,Picking up java desktop dev What a mess Any GUI recommendations,self.java +2,1347989862,6,JDK7 When Using the SecureDirectoryStream class,tamanmohamed.blogspot.nl +1,1347982536,6,Buttons not visible unless using setBounds,self.java +30,1347974306,7,10 Java Generics Interview Questions for practice,javarevisited.blogspot.com.au +4,1347971578,11,Project Basic Java game for first semester of University Any Ideas,self.java +1,1347955707,5,Help with GUI window movement,self.java +13,1347932465,3,Testing in Java,self.java +1,1347918786,3,jsp over php,self.java +1,1347904654,9,Survey for the future of Firebird JDBC driver Jaybird,firebirdnews.org +17,1347894775,18,Question What is faster return var null false true OR return var null x post from r javahelp,reddit.com +6,1347875055,15,Is there a tool to trace all overridden methods in a hierarchy of java classes,self.java +1,1347859437,5,Outputting doubles in the format,self.java +6,1347845012,12,Convert a servlets only project to some kind of REST JSON framework,self.java +1,1347778306,5,Improving readability using TimeUnit sleep,thoughtfuljava.blogspot.com +0,1347777010,6,Remember Me functionality in Apache Wicket,tomaszdziurko.pl +6,1347768677,9,Help with a generics project and suspected type mismatching,self.java +6,1347752159,3,Need project ideas,self.java +0,1347729227,22,I hate the new Java closure syntax gt How does Javascript implement closures without gt Can that syntax be borrowed into Java,self.java +2,1347675990,4,Guidance on Designing SDKs,self.java +21,1347665220,12,Here are the talks from JavaZone 2012 video most are in English,vimeo.com +0,1347637425,7,Favorite piece of Java Code for Visuals,self.java +3,1347633530,4,Anyone good with Processing,self.java +0,1347625995,8,New little swing library for smooth transitions SlidingLayout,self.java +0,1347461906,11,Needing volunteers to answer a few questions for my school project,self.java +0,1347457163,9,Tutorial Getting started with scala and scalatra Part II,smartjava.org +0,1347457090,15,Tutorial Performance Impact of Java HotSpot to Quick Sort Heap Sort and Bubble Sort Algorithm,sw-engineering-candies.com +0,1347457041,3,On Professional Code,architects.dzone.com +5,1347434598,9,LinkedList question help required x post from r javahelp,reddit.com +1,1347400865,5,Need help with dialog boxes,self.java +8,1347399622,9,Is there such a thing as the NoMock movement,henk53.wordpress.com +45,1347389678,5,Java 4 Ever The Movie,youtube.com +0,1347371912,18,I need to pick a topic for a paper on Java can you throw some ideas my way,self.java +8,1347369360,6,Introduction to Architecting Systems for Scale,lethain.com +22,1347369106,4,Phantom types in Java,gabrielsw.blogspot.in +3,1347369071,8,Alcatel Lucent Open Sources its API Management Engine,java.dzone.com +12,1347368447,13,Why does Java ArrayList use per element casting instead of per array casting,stackoverflow.com +6,1347361564,9,Interview with Dennis Ritchie Bjarne Stroustrup James Gosling 2000,gotw.ca +3,1347331460,8,question How to format digits into dollar amounts,self.java +0,1347312096,7,Visual programming and why it sucks dado,blog.davor.se +0,1347301191,9,I have a couple questions regarding standard jre classes,self.java +27,1347280074,9,is Java a good language to start learning programming,self.java +1,1347283013,8,Fixing Bugs There s No Substitute for Experience,java.dzone.com +6,1347282979,8,Running HTTP REST Integration Tests efficiently in Eclipse,codeaffine.com +7,1347251215,6,Can someone please ELI5 Enum classes,self.java +17,1347249921,4,Is final actually useful,self.java +11,1347232974,9,What does a JVM do slides from Cliff Click,azulsystems.com +22,1347227392,7,Are volatile reads really free in Java,brooker.co.za +0,1347221633,37,This doesn t say in the sidebar What s a good java book that leads into game dev or a good java book and a good game dev book self x post from r gamedev no response,self.java +2,1347214640,6,Passing the Java Programmer I exam,self.java +14,1347196853,9,Java Jobs in major cities what is your experience,self.java +2,1347193926,5,Announcing Tapestry 5 3 5,tapestry.apache.org +4,1347169957,4,Anyone going to JavaOne,self.java +0,1347164628,9,Next gen Java We don t need another revolutionary,jaxenter.com +0,1347164537,8,JavaFX in Spring Day 3 Authentication and Authorization,java.dzone.com +0,1347164451,5,Removing Blank Lines in Eclipse,java.dzone.com +3,1347150895,16,Brand new to Java Have learned some here and there but am getting serious now Critique,self.java +0,1347142189,7,An audience with Optimus Prime PrimeFaces lead,jaxenter.com +0,1347138664,8,Need lots of help capturing a video stream,self.java +0,1347091257,2,Update methods,self.java +1,1347078244,12,Just learning how to use methods can someone help fixing my code,self.java +2,1347078476,7,New to Java looking for some help,self.java +0,1347071039,30,When I compile my java files with the linux terminal I get this error message Does anyone know how to fix it I m using the latest version of Ubuntu,self.java +1,1347066649,11,Help choosing a cross platform RPC framework for WAN internet use,self.java +0,1347061647,8,Best book to learn java and game dev,self.java +40,1347047083,6,Spring 3 vs Java EE 6,self.java +1,1347041804,8,NetBeans Why doesn t the component properties change,self.java +10,1347035867,8,Shouldn t we Standardize a Java Logging API,java.dzone.com +0,1347030957,9,Java Arrays Programming principles Creating an array and Indices,doitwithyourpc.com +8,1346973318,6,Why should I avoid throwing NPEs,self.java +0,1346969956,4,Clarification on final parameters,self.java +4,1346967148,9,Goldman Sachs GS Collections source code released github com,news.ycombinator.com +0,1346963800,15,What is better eclipse or net beans What is better for game making like notch,self.java +1,1346961863,5,Oracle 7 Programmer cert OCJP7,self.java +46,1346951725,9,Maven Does Not Suck but the Maven Docs Do,zeroinsertionforce.blogspot.ca +4,1346935785,9,JSF and Java EE Newscast Episode 10 Aug 2012,blogs.jsfcentral.com +3,1346935451,7,JVM performance optimization Part 2 Compilers JavaWorld,javaworld.com +32,1346924808,11,Just thought I d share some of our new development books,imgur.com +2,1346909242,2,Evil Hangman,self.java +21,1346867880,8,How do you make this www codingbat com,self.java +0,1346862514,5,JPanel JFrame Only White Background,self.java +11,1346856302,6,Java EE 7 Roadmap The Aquarium,blogs.oracle.com +10,1346830369,9,Alvor Static SQL analysis in Strings passed to JDBC,blog.jooq.org +0,1346801195,8,Requesting help finding appropriate sounds for an applet,self.java +6,1346782246,4,Troubleshooting memory usage leaks,self.java +15,1346744706,4,PrimeFaces 3 4 Released,blog.primefaces.org +0,1346739222,12,LilacServer the new all in one tool for website creation in Java,lilacserver.com +7,1346737410,14,What do you guys do when you have many guard clauses in a method,self.java +1,1346725060,3,Java Chat Client,self.java +0,1346715615,7,Creating a Contact List program need help,self.java +0,1346692862,11,2 years later JCP still not living up to transparency promises,blog.joda.org +11,1346688637,7,What should a competent java developer know,self.java +27,1346681406,7,10 JDBC Best Practices for Java programmer,javarevisited.blogspot.in +0,1346654519,11,Jaybird JDBC cleanup deprecated sun api removal leads to faster tests,firebirdnews.org +15,1346638883,8,JSF Mini Book Tips concepts and good practices,uaihebert.com +5,1346633534,8,Java EE and JSP viable for small sites,self.java +0,1346628420,18,I m working on a program that can find files given a file name and file directory HELP,self.java +0,1346603073,4,Help with home work,self.java +34,1346564159,16,There are so many Reader classes Which one should I use to read from a file,self.java +0,1346464411,10,How do I use Modulus in java for multiple formula,self.java +0,1346463015,20,Noticed a new java update pop up for windows Is it safe to update now from that zero day exploit,self.java +1,1346461899,21,Is there a way to interrupt a sleeping thread in a running JVM without having access to the application s code,self.java +35,1346453417,3,Java game development,self.java +12,1346449708,10,New vectors to java 0day found by original research team,pcworld.com +3,1346430680,4,Access Outlook using JAVA,self.java +6,1346423389,7,Unleashing MongoDB Streaming capabilities for Realtime Web,stephane.godbillon.com +0,1346423245,9,When You Hit the Glass Ceiling of Coding Productivity,architects.dzone.com +7,1346422070,8,JSF Quickstart with Richfaces Primefaces Recipes for Geeks,xamry.wordpress.com +1,1346409094,4,Arithmetic Overflow and Intrinsics,bad-concurrency.blogspot.de +5,1346367289,10,Oracle pushes Java 7u7 fix for CVE 2012 4681 vulnerability,blogs.oracle.com +3,1346366220,9,VMware says Spring framework won t fall despite Oracle,javaworld.com +11,1346358603,9,Typesafe s 300 Growth Targets 6 Billion Java Market,forbes.com +51,1346353629,8,JDK 7u7 released fixing the 0 day vulnerability,oracle.com +5,1346354255,7,Oracle Security Alert for CVE 2012 4681,oracle.com +12,1346353104,7,Java 7u7 fix for CVE 2012 4681,oracle.com +6,1346350671,5,Online resources for learning java,self.java +2,1346349517,4,Java Oddities Part I,functr.blogspot.se +0,1346344932,8,Immunity Products Java 0day analysis CVE 2012 4681,immunityproducts.blogspot.com +1,1346337290,6,Design Patterns by Examples Decorator Pattern,zishanbilal.wordpress.com +2,1346337203,7,Java 0 Day Exploit Code Prevention Explained,geeknizer.com +0,1346337156,11,Using Spring amp Java Annotations to Inject Reusable Capabilities Part II,java.dzone.com +0,1346325034,7,Help needed in a highly ambiguous project,self.java +0,1346306611,19,I have been working on a small abstract java library Would be great if everyone could contribute something small,github.com +5,1346284298,30,Question As a new programmer who has recently learned some basic java as a first programming language are there any places where I can find some sample projects to attempt,self.java +0,1346266265,5,Spring MVC with Annotations Example,tshikatshikaaa.blogspot.com +8,1346244902,7,Performance Test Groovy 2 0 vs Java,java.dzone.com +0,1346244777,6,Password Encryption Short Answer Don t,java.dzone.com +2,1346244729,5,Using Eclipse databinding with Felix,eclipsesource.com +3,1346241756,24,Oracle Java Assoc Certification is it worth the paper it s written on CV wise I ve an opportunity to do it for FREE,self.java +0,1346226136,3,Help with java,self.java +0,1346187284,10,Newly discovered Attack Vector in the latest version of Java,articles.chicagotribune.com +7,1346185832,24,Question How can I install JRE on Windows 7 to ONLY support Java Windows Apps and NOT to be accessable from any Web Browser,self.java +0,1346171096,7,Attackers Pounce on Zero Day Java Exploit,krebsonsecurity.com +37,1346168012,17,Maven should do this Download all required dependencies at once New Project proposal Maven Rides the Lightning,sonatype.com +3,1346167467,21,I ve created a simple rename application in Java called yar Yet Another Renamer and I m looking for some feedback,github.com +2,1346159247,4,Vaadin Spring Security Integration,java.dzone.com +2,1346159194,5,Code patterns for machine learning,arkitus.com +4,1346158949,5,Java Champions at JavaOne 2012,blog.eisele.net +17,1346157671,4,REST Web services demystified,javaworld.com +0,1346151058,12,So I am working on a Pong Game in Eclipse Help D,imgur.com +12,1346110598,12,Critical flaw under active attack prompts calls to disable Java Ars Technica,arstechnica.com +8,1346097915,8,JPA Tutorial with Examples using Hibernate in Standalone,tshikatshikaaa.blogspot.com +31,1346077456,9,New vulnerability in every Java 7 browser plug in,zdnet.com +0,1346072044,9,JAVA What is use of IBM Web sphere server,self.java +5,1345977492,8,Kalle Korhonen RememberMe with rolling tokens session authentication,docs.codehaus.org +0,1345948098,13,For some reason my java is not working at all any help please,self.java +5,1345931592,9,Hot Code Replace in Eclipse xpost from r learnprogramming,self.java +7,1345917699,4,Micro web server framework,self.java +0,1345901214,6,Named Parameters in Java another Alternative,java.dzone.com +0,1345898326,8,Problem with Java 7 on Win 7 64,self.java +0,1345886475,7,Request some help JAVA GUI Swing question,self.java +4,1345845063,6,The Father of Java uses Jelastic,uaihebert.com +0,1345841167,10,Project Jigsaw Late for the train The Q amp A,mreinhold.org +6,1345839776,4,System out println question,self.java +0,1345828569,10,How to Deploy a war to Tomcat 7 via Maven,tshikatshikaaa.blogspot.nl +42,1345821695,12,ExplainLikeI m5 What is Maven and how would using it benefit me,self.java +4,1345816552,28,concurrent progamming having a resit tomorrow and could use some last minute solving some past years I sucked at it failed this paper previously would appreciate any help,self.java +0,1345813984,14,concurrent programming and multiple threads I need help with this cause am not smart,self.java +0,1345817280,6,The Father of Java Loves Jelastic,blog.jelastic.com +0,1345767199,10,Way to detect install corrct java version for a program,self.java +2,1345754174,4,Component Based Java Frameworks,codeproject.com +6,1345753796,5,Twitter Bootstrap Theme for PrimeFaces,blog.primefaces.org +55,1345753022,6,Java Memes Which Refuse to Die,java.dzone.com +4,1345750001,4,Roadmap for PrimeFaces Mobile,blog.primefaces.org +0,1345748766,8,Need some help with this unfamiliar Source Code,self.java +11,1345743115,6,JAXB Annotations Tutorial with Code Examples,tshikatshikaaa.blogspot.nl +14,1345740033,7,Deep Dive Java s Lock Free Concurrency,eecs.berkeley.edu +9,1345727217,10,10 Object Oriented and SOLID design principles for Java programmer,javarevisited.blogspot.gr +3,1345722123,10,Httpclient Am I timing out from creating too many connections,self.java +2,1345709129,6,How to open a new window,jforum.icesoft.org +3,1345667270,13,Redberry is an open source Java framework providing capabilities for manipulation with tensors,redberry.cc +5,1345666495,4,db to jpa2 minuteProject,minuteproject.wikispaces.com +21,1345657562,9,JVM performance optimization Part 1 A JVM technology primer,javaworld.com +3,1345640822,9,From Eclipse Tycho to Apache Karaf the easy way,eclipsesource.com +0,1345640775,8,JavaFX in Spring Day 2 Configuration and FXML,javafx.steveonjava.com +0,1345625311,10,Is there a Java version of Django s contrib auth,self.java +0,1345620175,13,Noob question about variable declaration inside methods I m learning java using robocode,self.java +3,1345619276,12,Serfj 0 4 0 released a REST Java framework for easy development,serfj.sourceforge.net +7,1345617386,8,Java after 2 5 Years with Big O,adtmag.com +0,1345616379,4,recent changes to jcreator,self.java +4,1345588013,5,Verify Maven dependencies using PGP,branchandbound.net +0,1345577096,17,Carbon middleware built in registry user management transports security logging clustering caching and throttling services co ordination,wso2.com +5,1345575604,8,Zero downtime deployment to Tomcat 7 with Maven,tynamo.org +0,1345567061,8,Show r Java Our thick client Java SaaS,self.java +0,1345555035,7,Spring Data Spring Security and Envers integration,java.dzone.com +15,1345554989,9,Java theory and practice Anatomy of a flawed microbenchmark,ibm.com +0,1345554934,6,jL7 an HL7 library for Java,benohead.com +1,1345575520,8,What s New in Apache Shiro 1 2,stormpath.com +12,1345548484,13,What should I use to convert my java app to a browser app,self.java +2,1345544984,7,Why isn t this simple example working,self.java +0,1345530293,18,can someone help explain what an instance variable is i m new to java and programming in general,self.java +4,1345499498,8,Configuring a Resource Adapter for JBoss AS7 OpenMQ,mastertheboss.com +3,1345497561,8,Are their any tutorials that are more practical,self.java +3,1345493587,11,What are the advantages and disadvantages of Java over other languages,self.java +7,1345489334,10,Caching of entire database tables what existing solutions are there,self.java +18,1345492178,5,JDK 8 milestone schedule published,openjdk.java.net +0,1345453821,15,Sweet holy javaGods I request your assistance with more problems Your reward shall be karma,self.java +0,1345430183,18,Java won t work anywhere no matter how many times I reinstall it or what browser I use,self.java +7,1345414279,8,Specification of enhanced metadata in Java SE 8,mail.openjdk.java.net +0,1345395990,8,Need help with setting up a set method,self.java +0,1345350747,11,JBoss BRMS Best Practices tips for your BPM Process Initialization Layer,schabell.org +0,1345350707,5,Griffon 1 0 2 released,groovy.dzone.com +6,1345299334,9,Oracle has been good to Java despite early fears,infoworld.com +22,1345299120,11,Introducing an In Memory File System for Java ShrinkWrap NIO 2,exitcondition.alrubinger.com +12,1345295766,6,Standalone Hibernate JPA In Memory Example,tshikatshikaaa.blogspot.nl +0,1345299192,12,The Gang of Four is wrong and you don t understand delegation,saturnflyer.com +2,1345226141,16,Programmatically Start or Stop an Application deployed in IBM WebSphere Application Server WAS using Java Code,srccodes.com +5,1345235928,6,CDI powered Unit Testing using Arquillian,ocpsoft.org +0,1345183358,13,Looking for someone to fix up this java for me in wordpress plugin,sfbay.craigslist.org +6,1345144767,4,Introduction To Maven Concepts,tshikatshikaaa.blogspot.nl +56,1345138904,14,Oracle and AMD may work with the Rootbeer project to support GPU enabled Java,h-online.com +4,1345147515,4,Themes JSF and PrimeFaces,mkyong.com +0,1345120974,11,20 design pattern and software design interview questions for Java programmer,javarevisited.blogspot.sg +30,1345110372,14,Javolution a library that provides High Performance Time deterministic replacements for many Java classes,javolution.org +0,1345133685,4,Help with repeating Strings,self.java +0,1345121161,10,Can anyone tell me why my server doesn t start,self.java +7,1345056079,8,Introduction to Pojomatic for Equals HashCode and toString,tshikatshikaaa.blogspot.nl +17,1345054155,6,HN Oracle proposes Java GPU support,news.ycombinator.com +1,1345070916,9,So I developed an FTP client for my clients,self.java +0,1345069104,22,New laptop and installing Java I get the error Downloaded File C Users Jeff AppData Local Temp fx runtime exe is corrupt,self.java +21,1345039379,23,I discovered the Spark web framework and did a very small project with it If you re new to Java hope this helps,github.com +13,1344976697,6,Java SE 7 Update 6 Released,blogs.oracle.com +33,1344974996,7,Java SE 7u6 released for OS X,oracle.com +12,1344947849,6,Kids Making the Future of Java,java.dzone.com +0,1344947490,3,JavaFX for Science,learnjavafx.typepad.com +17,1344943532,10,I need help creating a simple Java database type application,self.java +0,1344947560,3,Code Reviews Mindmap,kaczanowscy.pl +4,1344903385,4,tutorial on reddit bot,self.java +26,1344885080,16,How long to index and search 2 3 million records in Java How about 11 seconds,akiban.com +0,1344881031,26,What s the best way to learn Java if I already know Ruby and JavaScript and I want to write Android applications crosspost from r learnprogramming,self.java +14,1344879340,4,Java 6 Support Extended,javaworld.com +0,1344872464,7,Override a function without extending the class,stackoverflow.com +4,1344871700,10,The rise of a new Java vulnerability CVE 2012 1723,blogs.technet.com +3,1344863507,11,Growing a Full Featured Calculator in 15 Minutes Using Dropincc java,pfmiles.github.com +20,1344861424,25,Persistit is a next generation Berkeley DB without a crappy license It s faster and can handle more concurrent operations now it s on Central,akiban.com +14,1344826196,14,Best known Java based CRM Deskera goes Open Source x post from r opensource,reddit.com +0,1344797847,6,Help getting started developing in linux,self.java +0,1344805617,4,Rendering templates with Spark,self.java +5,1344775938,4,Explore IBM Java 7,ibm.com +0,1344800103,20,Trying to get MIT App Inventor working told I needed to update Java but it s not working Please help,self.java +3,1344799679,8,Please dear javaGods help me Buffered Reader problem,self.java +0,1344793387,15,Can anyone solve my problem How do I use try catch in a while loop,self.java +93,1344752745,12,Rootbeer GPU Compiler Lets Almost Any Java Code Run On the GPU,github.com +0,1344775906,10,Not Programming Java released a MUSIC VIDEO for their language,youtube.com +0,1344775900,9,Productivity Tools I ve Discovered Lessons I ve Learned,peopleintech.com +0,1344775859,9,How to create blueprints for your OSGi building blocks,eclipsesource.com +1,1344769714,5,Best way place to learn,self.java +10,1344687430,10,Designing MongoDB Schemas with Embedded Non Embedded and Bucket Structures,openshift.redhat.com +5,1344687195,7,It s Time to Play with Cloudify,cloudifysource.org +3,1344650035,6,Need help for project Storing information,self.java +5,1344631309,7,desperate JSF2 0 Search Field for ArrayList,self.java +1,1344604348,4,Named Parameters in Java,java.dzone.com +0,1344626113,11,Does CDI injection of session scoped beans into a Servlet work,adam-bien.com +8,1344604788,19,Persistit switches from the AGPL3 to the EPLv1 because the AGPL is an awful license for a Java library,akiban.com +0,1344604289,3,Java Eclipse Debugger,mchr3k.github.com +5,1344556338,12,Does anyone else want a nice shortcut to auto cast in java,self.java +16,1344567459,13,Is it just me or would a not null shorthand be really helpful,self.java +6,1344525131,5,Shuffling a collection an analysis,jengibre.com.ar +8,1344545567,7,Major DataTable enhancements in PrimeFaces 3 4,blog.primefaces.org +10,1344545567,7,Major DataTable enhancements in PrimeFaces 3 4,blog.primefaces.org +8,1344518510,6,CountDownLatch Example in Java Initializing Services,javarevisited.blogspot.com +16,1344500263,15,Programming 101 The 5 Basic Concepts of any Programming Language How to Program with Java,howtoprogramwithjava.com +29,1344528839,9,Oracle and Google are ordered to reveal paid bloggers,bbc.com +11,1344478542,7,Better uptime for long running Java applications,blogs.amd.com +24,1344447149,14,14 lines of Java code for a bot that plays basketball on Google doodle,blog.sluu.org +1,1344441690,9,Java equivalent do C ELMAH or python django Sentry,self.java +5,1344432261,10,A Java to C converter as an eclipse plug in,tsug.github.com +0,1344419290,3,Need beginner help,self.java +1,1344441988,6,AKKA actor dependency injection using Spring,honeysoft.wordpress.com +36,1344432291,9,Have Your Say on Java 8 Default Methods Syntax,java.dzone.com +18,1344394604,2,Programming gripes,self.java +7,1344365660,19,Looking to break into Java after 6 years of Ruby on Rails Any suggestions on web frameworks to learn,self.java +46,1344360809,14,17 year old girl builds non invasive program to detect breast cancer using Java,futureoftech.msnbc.msn.com +23,1344344913,11,Why is MongoDB wildly popular It s a data structure thing,blog.mongolab.com +0,1344344671,11,Top Performance Mistakes when moving from Test to Production Deployment Mistakes,blog.dynatrace.com +2,1344367107,19,JSF2 Tutorials Videos How to Create a Simple Java Server Faces JSF Application WAR File for J2EE JEE5 Deployment,codedairy.com +3,1344352362,6,JSF meets Skinning Awesomeness of LESS,rik-ansikter.blogspot.cz +0,1344324249,14,Guess The Number game made entirely inside the header of a for loop Fixed,pastebin.com +5,1344328373,5,Connection pooling for standalone apps,self.java +0,1344309738,6,Writing to a file without overwriting,self.java +13,1344284458,2,log4jv2 beta,logging.apache.org +23,1344261770,5,Anyone notice this Java app,self.java +4,1344285078,3,Tapestry5 highcharts module,github.com +0,1344258719,6,Implementing My First Jenkins Plugin AnsiColor,java.dzone.com +13,1344258652,10,Putting an Apache Lucene Index in RAM with Zing JVM,architects.dzone.com +0,1344258517,7,Reflecting on the JVM Class File Format,whiley.org +7,1344278510,7,The Heroes of Java a atay ivici,blog.eisele.net +10,1344244299,9,What is a good automated java GUI test suite,self.java +1,1344232347,8,How to go about being a java architect,self.java +0,1344199866,4,Setting up an ArrayList,self.java +9,1344179802,5,DSLs in Action book review,branchandbound.net +23,1344171309,7,Java EE 6 Hands on Lab PDF,blogs.oracle.com +6,1344152627,8,Adding Javascript to a Custom Component in JSF,javaevangelist.blogspot.com +5,1344170778,4,Getters Setters and Constructors,self.java +1,1344157286,15,JCA 1 6 Connectors Simple example of the black magic Java EE API called JCA,connectorz.adam-bien.com +3,1344147633,8,Need help with making this more efficient shorter,self.java +3,1344110585,4,Swing refreshing a JLabel,self.java +5,1344121559,15,How do I make nextInt not blow up if I type a string into it,self.java +19,1344084611,10,Dropincc java the Ultimate Tool to Create DSLs in Java,pfmiles.github.com +3,1344103492,13,Logdoc Contract first logging tool featuring internationalization and generation of code web docs,github.com +6,1344074998,9,JSF and Java EE Newscast Episode 9 July 2012,blogs.jsfcentral.com +0,1344074932,8,Why TCP is evil and HTTP is king,ayende.com +0,1344097621,5,COSC Data Structures Clep Test,self.java +12,1344028118,8,Does anyone have any tips for rapid development,self.java +6,1344025957,7,Dynamic Code Evolution Coroutines for the JVM,wiki.jvmlangsummit.com +28,1343993844,6,Java 8 Testing the Lambda Water,blog.jthoenes.net +6,1344012268,8,Tutorial JSF 2 0 Support in NetBeans IDE,netbeans.org +0,1344005300,22,Syntax for a class that has no data members and that uses an interface as the data type to declare a method,self.java +5,1343936803,4,Deque shredder Java net,weblogs.java.net +0,1343956850,11,How to implement a random number generator inside of a loop,self.java +1,1343914209,6,Optimizing site delivery size and performance,cognifide.com +9,1343933501,8,Event based communication in JSF New school approach,ovaraksin.blogspot.nl +4,1343902371,24,Hi Reddit Could you help me out with my Java commenting I m wondering what the best approach to commenting getters and setters is,self.java +16,1343914230,8,Practical Unit Testing with TestNG and Mockito Review,java.dzone.com +9,1343873085,5,Need some help with Swing,self.java +11,1343843280,4,Component Based Java Frameworks,keyholesoftware.wordpress.com +0,1343856954,7,A Tutorial on Integration Testing with Selenium,self.java +16,1343822112,3,Java IQ Test,infoworld.com +2,1343820018,7,Netbeans 7 2 Static Analysis Tool FindBugs,javaworld.com +3,1343776278,6,Learning Java with previous programming knowledge,self.java +1,1343742622,8,Quick question about an error I m getting,self.java +12,1343764157,6,The Heroes of Java Bauke Scholtz,blog.eisele.net +4,1343738540,7,Things to remember with Autoboxing in Java,javarevisited.blogspot.sg +3,1343755488,7,Java on Heroku thoughts opinions war stories,self.java +8,1343725918,7,What is coming in EJB 3 2,blogs.oracle.com +1,1343754705,12,Java Development without an IDE Generate Interface method stubs using a script,self.java +7,1343734972,6,The Heroes of Java Werner Keil,blog.eisele.net +15,1343719050,7,When will we have LINQ in Java,blog.jooq.org +3,1343708852,8,How to write an image from a Canvas,self.java +14,1343655546,4,Method injection with Spring,java.dzone.com +5,1343655506,4,Jenkins JaCoCo Plugin released,eclipsesource.com +9,1343678734,22,Effective Unit Testing for Java EE Needle is a lightweight framework for testing Java EE components outside of the container in isolation,needle.spree.de +3,1343655471,7,My Algorithm for the Travelling Salesman Problem,architects.dzone.com +2,1343633544,13,Hi r Java I m wanting to define a length of a word,self.java +14,1343604283,10,What Profiler do you use Also for Eclipse 4 2,self.java +0,1343553909,5,Marketing yourself as a programmer,codeofhonor.com +5,1343527545,14,Thinking of writing a 2D online rpg for a fun project Where to start,self.java +0,1343498301,8,Java Applet for mutual authentication with smart card,self.java +5,1343496480,6,Dempsy Distributed Elastic Message Processing System,dempsy.github.com +3,1343510551,14,LinuxTag2012 Need le for Speed Effective Unit Testing for Java EE openSUSE on Blip,blip.tv +2,1343481362,5,Jelastic Now Has Logentries Support,architects.dzone.com +9,1343480758,2,Hiring Programmers,java.dzone.com +7,1343428171,12,How can I read Scanner and write PrintStream to the same file,self.java +2,1343429190,7,Need Help with Simultaneous edit of jTextFields,self.java +4,1343422933,20,Can you advice a course program to learn Java fastest way possible I have expert knowledge of OOP in PHP,self.java +4,1343445125,4,safety of random numbers,self.java +1,1343426989,6,TCP game project looking to expand,self.java +13,1343392588,4,Martin Fowler Snowflake Servers,server.dzone.com +9,1343392442,8,Getting C C Performance from Java Object Serialisation,architects.dzone.com +1,1343383072,9,Create A JNI Training Coarse Is It Worth It,self.java +0,1343349286,8,Very good tutorials This guy needs more views,youtu.be +137,1343318265,10,It s the simple things that make me love IntelliJ,i.imgur.com +1,1343319221,11,Developing a cross platform application for mobiles and desktops with Aerogear,blog.akquinet.de +3,1343335939,7,Dealing with Xerces hell in Java Maven,stackoverflow.com +3,1343307396,5,10 Application Performance Tuning Tips,blog.codecentric.de +6,1343307050,7,Having fun with Guava s String Helpers,eclipsesource.com +0,1343277475,14,What is the best website video series book too learn java for a beginner,self.java +3,1343280838,6,Ideas on what to learn next,self.java +7,1343298765,12,The Gradle team is please to offer Gradle 1 1 rc 2,gradle.org +6,1343298765,12,The Gradle team is please to offer Gradle 1 1 rc 2,gradle.org +5,1343273075,12,How to kill interact with a certain thread by name or ID,self.java +2,1343232127,8,JSF 2 Custom Scopes without 3rd party libraries,blog.oio.de +7,1343228903,12,Been learning java for 3 weeks now this my calculator so far,pastebin.com +10,1343224731,8,Announcing the first Jnario release BDD for Java,sebastianbenz.de +5,1343220628,6,Why we need JTA 2 0,blog.bitronix.be +8,1343231340,5,Transaction Management EJB3 vs Spring,java.dzone.com +8,1343166962,7,PrimeFaces Next Generation JSF Component Suite slideshow,slideshare.net +0,1343160980,3,Help with ArrayLists,self.java +39,1343135423,7,10 ways to use Enum in Java,javarevisited.blogspot.com.au +29,1343149104,4,NetBeans 7 2 Released,netbeans.org +5,1343145266,4,Help with pooling mechanism,self.java +3,1343132255,19,Need to know location of JDK to set JAVA_HOME Is there a way to find the path in Eclipse,self.java +5,1343067870,7,Looking for a nice UI Application Framework,self.java +0,1343058088,6,Can anyone help me with this,self.java +0,1343049073,10,Spring Dependency Injection Styles Why I love Java based configuration,blog.codecentric.de +21,1343048868,12,Useful JVM Flags Part 3 Printing all XX Flags and their Values,blog.codecentric.de +6,1343026693,5,Modern Concurrency and Java EE,branchandbound.net +17,1342960879,11,How GoF Brought my Understanding of Object Orientation to Another Level,architects.dzone.com +6,1342960851,5,Getting Started with Spring Social,java.dzone.com +0,1342928364,5,Brother Just Trolled My Code,self.java +3,1342951347,6,Why we need JTA 2 0,blog.bitronix.be +8,1342905036,11,Use JBoss Forge to generate Hibersap Classes that call SAP Functions,blog.akquinet.de +3,1342897401,4,JavaServer Faces Technology Overview,tamanmohamed.blogspot.nl +11,1342882710,46,How to setup a scalable HA cluster with JBoss AS 7 and EAP6 The third blog post of a JBoss AS7 EAP 6 clustering series covers how to setup a bigger JBoss cluster environment and explain the challenge to make a cluster highly available and scalable,blog.akquinet.de +21,1342881385,4,Monitoring of JavaEE applications,code.google.com +12,1342881247,7,GeoTools The Open Source Java GIS Toolkit,geotools.org +0,1342881178,5,Tapestry 5 3 4 Release,tapestry.apache.org +0,1342871557,7,Creating JSF 2 0 Composite Components podcast,javaevangelist.blogspot.nl +3,1342871383,5,Thoughts on the Jigsaw debacle,alexismp.wordpress.com +12,1342870427,16,Can someone describe the process of starting to design a system from an architects point view,self.java +15,1342804945,8,Static fields on a null reference in Java,stackoverflow.com +3,1342790344,8,Plumbr 1 1 We Now Find PermGen Leaks,java.dzone.com +3,1342790317,10,Various API and Language Enhancements as Part of Java 7,java.dzone.com +0,1342789318,10,LWJGL being stupid Please help in uploading textures PLEASE HELP,self.java +1,1342758795,3,MyBatis Best Practices,self.java +1,1342707706,5,Does anyone use JavaHelp anymore,self.java +20,1342702566,8,Great open source map tools for Web developers,javaworld.com +4,1342682794,7,Tomcat Hello World Servlet using Eclipse IDE,srccodes.com +1,1342706116,9,Connecting to SQL Server from Java over TCP IP,java.dzone.com +2,1342690111,11,How many Java developers in the world Find out the answer,dzone.com +0,1342644383,11,JSP Hello World Program using Eclipse IDE and Tomcat web server,srccodes.com +1,1342642680,15,Use Node js in a Java Struts 1 legacy application x post from r node,self.java +2,1342626582,3,Recommended SQLite driver,self.java +8,1342625117,3,Opinion on Dropwizard,self.java +1,1342617956,11,Setting DNS A Records and Second Level Domain Names in Jelastic,blog.jelastic.com +60,1342615546,8,New tutorial beautifying the dialogs in Swing applications,self.java +19,1342617884,7,Project Jigsaw Being Pushed to Java 9,java.dzone.com +2,1342617513,9,Spring vs Java EE What People Forget About Spring,java.dzone.com +0,1342556197,7,Help me think like a functional programmer,self.java +0,1342553156,20,Could someone run me through the process of enabling a Java Applet client to connect to a Java Application server,self.java +19,1342544198,6,Project Jigsaw Late for the train,mreinhold.org +6,1342476752,9,JbConsole is updated Firebird management tool written in Jython,firebirdnews.org +19,1342465844,24,Have you used Junit s Rule annotation yet More encapsulated tests no more custom runners no more or extending abstract classes Flexible encapsulated tests,alexecollins.com +7,1342483091,4,Override Thread Creation Constructor,self.java +1,1342426113,9,Follow Up gt Middle Tier Layers for REST Services,self.java +0,1342385448,6,Mustaches in the world of Java,blog.mitemitreski.com +1,1342376070,14,Noob Question What is the best way of writing data access code in java,self.java +0,1342327003,6,How to become a Maven committer,javaadventure.blogspot.com +8,1342278055,6,Testing your LDAP code with OpenDJ,silverpeas.org +6,1342187571,13,Learning the Nexus REST API Read the Docs or Fire Up a Browser,sonatype.com +4,1342169894,6,Spring amp Velocity Tools No XML,squirrel.pl +10,1342130382,57,Do you like apps that still look like it s 2002 If you re using the built in Swing look and feels and you can t move to JavaFX or a web app then you might find this tutorial that looks at using the built in Synth look and feel to create an attractive modern looking app,alexecollins.com +22,1342101060,5,Open source Java projects TomEE,javaworld.com +4,1342111459,14,Using Jersey JAX RS to provide REST service what to use for front end,self.java +6,1342108644,3,ColdFusion to Java,self.java +15,1342101747,4,Dependency Convergence in Maven,java.dzone.com +0,1342060800,9,Planning to write a video sharing platform media portal,self.java +3,1342084233,6,JavaServer Faces Tag Libraries Demonstration podcast,informit.com +0,1342020067,4,SSH client libraries GO,self.java +4,1341994369,8,Any way to get notifications for library updates,self.java +0,1341969152,7,Encrypting and Decrypting XML files in Java,self.java +9,1341952459,10,Solving the traveling salesman problem using Tabu search and Java,voidexception.weebly.com +0,1341941652,8,Could use some help using voice recognition api,self.java +6,1341960530,5,OmniFaces 1 1 is released,balusc.blogspot.nl +2,1341927053,9,Kato A Java API for Post Mortem JVM Diagnostics,cwiki.apache.org +1,1341940002,11,Get an array of all points x y on a Line2D,self.java +0,1341930615,12,Can someone with experience with Httpclient please help me out a bit,self.java +10,1341927025,10,From Java to Ruby what I love what I miss,blog.8thcolor.com +14,1341912591,8,Concurrency Utilities for Java EE Early draft PDF,java.net +7,1341909953,7,Book Announcement Continuous Enterprise Development in Java,exitcondition.alrubinger.com +2,1341868881,9,Question translate executable JAR to run without the JVM,self.java +4,1341849309,20,How can a UML modeling tool IMPROVE your Java legacy code see white paper videos amp tool on this subject,modeliosoft.com +3,1341838046,8,doing Java Swing what s it used in,self.java +17,1341834624,9,Reason for always using getters and setters in Java,self.java +2,1341805789,9,Extreme beginner with an extremely basic question little help,self.java +1,1341773764,2,J2EE legacy,self.java +10,1341798949,5,Easiest Java web app framework,self.java +1,1341703584,12,Is it possible to break into debugging whenever a variable is touched,self.java +0,1341700047,12,going to start programming in java Need help a lot of it,self.java +2,1341698060,2,Timestamped Deque,weblogs.java.net +8,1341685143,9,Any Java EE 6 blogging CMS platforms out there,self.java +1,1341658438,9,JSF 2 0 composite components where you want them,ninthavenue.com.au +5,1341657908,6,Mark Little discusses JBoss EAP 6,jaxenter.com +11,1341656442,3,Simple Performance Question,self.java +18,1341604088,19,Going to learn Java Which book should I pick Head First Java or Deitel s Java How to Program,self.java +1,1341499402,8,Unit Testing Views in Spring MVC Stuart Gunter,stuartgunter.org +15,1341486910,4,Starting threads from servlets,self.java +0,1341494079,7,javaFX runtime exe is corrupt PLEASE help,self.java +14,1341434100,7,Java 8 vs Scala a Feature Comparison,infoq.com +0,1341423035,4,action listeners not working,self.java +4,1341406807,4,JavaFX recipes Dynamic shadows,canoo.com +12,1341406740,7,Spring Founder Moves On To New Adventures,java.dzone.com +17,1341400442,9,Any good Java EE open source projects out there,self.java +2,1341369185,9,Is there a php net style website for Java,self.java +0,1341345288,9,Migrating Spring Applications to Java EE 6 Part 4,howtojboss.com +1,1341320980,9,Some Java and OSGi Errors while Working with Hive,architects.dzone.com +23,1341271111,10,Need some small fun projects to work on Beginner here,self.java +2,1341249508,19,SWT DND question dragging String to Explorer Want destination path as if string was a file to be copied,self.java +14,1341246884,18,Code review tool I m working on Supports multiple languages Would love to hear what Java devs think,codetique.com +0,1341232186,7,How HashMap works in Java Interview Experience,javarevisited.blogspot.com +48,1341225759,6,Top Java frameworks rated by developers,devrates.com +0,1341171003,5,Leap second bug vs Jetty,phatduckk.com +5,1341166233,16,I am planning to create an iPhone app using java and XMLVM Where would one start,self.java +13,1341128141,6,Noob question about Java web development,self.java +10,1341085881,17,With JSON HTML5 and websockets which java web frameworks do you think become obsolete for new comers,self.java +1,1341077876,7,Image rotation please give any constructive advice,pastebin.com +7,1341067384,6,When I compile java to native,self.java +0,1341066449,5,So i have a problem,self.java +1,1341016453,7,The state of DataSourceDefinition in Java EE,henk53.wordpress.com +123,1341009680,3,Netbeans getting dramatic,imgur.com +11,1341003302,10,Does anyone else still prefer this look for Swing Metal,i.imgur.com +6,1340988065,5,Advanced Graphic User Interface advices,self.java +6,1340978091,7,What s new in Groovy 2 0,infoq.com +1,1340952305,8,Disabling windows when another one pops up JFrames,self.java +0,1340939386,11,Best way to radomize an arraylist in java 1 4 1,self.java +0,1340917756,5,JavaZone 2012 The Java Heist,youtube.com +22,1340905885,6,The JNI Is it worth it,self.java +5,1340867874,6,Testing Spring amp Hibernate Without XML,squirrel.pl +0,1340856314,5,Java constantly tying up CPU,self.java +29,1340817431,9,What do you all use Java for these days,self.java +8,1340801634,8,When should null values of Boolean be used,stackoverflow.com +2,1340813090,13,Java Groovy scripting in Zeta Code an implementation of Bret Victor s concept,vimeo.com +15,1340809463,5,Eclipse Juno Xtend Extends Java,infoq.com +2,1340793538,3,Hashmaps or ArrayLists,self.java +1,1340763236,7,HELP Application only works on one computer,self.java +2,1340744338,9,Ebook program needs rescuing cross post from r ebooks,self.java +5,1340764415,9,How to test your JPQL HQL without a Deploy,uaihebert.com +1,1340721783,6,Best tool to build UI s,self.java +6,1340735726,18,Modern threading A Java concurrency primer Easy introduction with references to intermediate topics and prospects for future releases,javaworld.com +0,1340725603,3,Good java fourums,self.java +2,1340720714,5,Jelastic cloud platform for Java,acuriousanimal.com +2,1340689980,4,Swing yay or nay,self.java +3,1340680755,17,Dear reddit In java util Random why is a maximum number only available for nextInt int max,self.java +0,1340686039,6,Is MIT Trolling Or genuine error,imgur.com +3,1340649080,18,How do video games render polygons at real time speeds I m having some lag issues in Java3D,self.java +0,1340618795,7,Java is so bad at bit packing,self.java +7,1340585772,7,Looking to learn Java aiming for certification,self.java +8,1340599965,5,Monitoring Performance with Spring AOP,architects.dzone.com +21,1340597119,6,Java volatile keyword explained by example,java.dzone.com +4,1340564280,5,Config file parsing in Java,self.java +7,1340536723,11,Mail to the JPA 2 1 Expert Group re fetch control,blog.ringerc.id.au +14,1340402621,8,Interesting blog A year of security for Java,jtmelton.com +3,1340386579,5,Confluence static cache generator plugin,kohsuke.org +22,1340375939,33,My buddy has a website on which he s making games in Java He hasn t gotten many views but some of the games are actually quite good x post from r gaming,nerdswbnerds.com +9,1340306656,8,Java EE 6 environmental enterprise entries and Glassfish,java.dzone.com +1,1340306524,7,Top 8 Java People You Should Know,mkyong.com +10,1340227555,11,Create wrapper classes on the fly with Java dynamic proxies TechRepublic,techrepublic.com +2,1340186787,4,Comparing JVM Web Frameworks,java-tv.com +65,1340181114,6,Javazone 2012 video The Java Heist,youtube.com +0,1340201282,8,How to make DateFormat thread safe with ThreadLocal,javarevisited.blogspot.com +2,1340190712,6,correct way to do things ArrayIndexOutOfBounds,self.java +0,1340173961,13,Help deciding on a language framework for new project x post r Python,self.java +0,1340136382,16,Why does NetBeans not set a variable private when I let in create Getter and setter,self.java +3,1340143278,5,Are app servers still fascinating,slideshare.net +1,1340142553,10,WebSocket and Java EE 7 Getting Ready for JSR 356,blogs.oracle.com +0,1340126623,2,Java Help,self.java +2,1340120483,7,Does order matter when multiplying with floats,self.java +2,1340115213,8,Studying Java Certified Associate Exam Need some advice,self.java +0,1340026591,7,Logging with Spring JDBC and Craftsman Spy,java.dzone.com +1,1340026467,10,How to Style Cool Text with JavaFX 2 and CSS,zoranpavlovic.blogspot.sg +10,1340021128,10,Converting git commit history to a solr full text index,garysieling.com +9,1340016253,8,NetBeans Find Usages Tool Integrates JSF Expression Language,blogs.oracle.com +0,1339966926,6,Help I m a Java n00b,self.java +2,1339970415,10,Speed up Primefaces page load with p remoteCommand partial update,kahimyang.info +2,1339957382,7,JavaFX 2 Styling Nice Text with CSS,zoranpavlovic.blogspot.com +49,1339859060,3,We Code Hard,youtube.com +10,1339869338,3,Job Distribution Software,self.java +7,1339815833,12,Really want to learn Java and don t know where to start,self.java +1,1339785640,6,Eclipse RAT Runtime Analysis Tools terminated,bugs.eclipse.org +4,1339747723,4,Character to readable String,self.java +4,1339775392,36,Redirected from r javahelp I need to read bytes from multiple audio and or video streams and then encode them so that they are all in one file I don t even know where to start,self.java +0,1339765589,10,How to expose an existing service as a web service,semikas.blogspot.sg +6,1339718641,7,Java Chat Program Text formatting and Timers,self.java +2,1339705389,5,Dynamic forms in JSF 2,ovaraksin.blogspot.gr +4,1339697613,9,QuickDT decision tree learner library now available through Maven,github.com +6,1339667306,10,Adopt a JSR The community helping shape Java s future,adoptajsr.java.net +24,1339640625,7,Enterprise Frameworks Are Killing My Job Hunt,self.java +1,1339631693,11,Anyone in the Richmond VA want a BUNCH of Java books,self.java +7,1339627104,15,Can someone point me into the right direction in creating a Java Based Telnet Client,self.java +9,1339592934,7,Video Amazon Web Services for Java Developers,cloud.dzone.com +0,1339582898,5,Can t find the problem,self.java +0,1339597937,9,Test a map maker for my EE Extended Essay,self.java +0,1339562880,3,jdk for mac,self.java +4,1339573979,4,Search Twitter from Java,freeze-cse.blogspot.com +0,1339539012,7,Parsing an XML properties file with Java,self.java +0,1339528733,15,Using jGRASP Jar executable runs fine on produing PC other computers cannot find main class,self.java +4,1339517431,4,OSGi and vert x,underlap.blogspot.co.uk +12,1339505618,17,If You Aren t Among Those Finding Bugs You Might be Among Those Complaining About Them Later,java.dzone.com +5,1339424539,2,Bitwise Magic,freeze-cse.blogspot.sg +5,1339390689,10,Spring Inspector Programmatic access to Spring applications at run time,github.com +10,1339363770,10,Current Progress Inside I m attempting a simple chess program,self.java +6,1339351222,8,JSF 2 2 s Faces Flow WIP overview,jdevelopment.nl +4,1339301184,11,Trying my hand at some android development won t launch emulator,self.java +18,1339269932,5,I want to learn java,self.java +1,1339270785,12,Is it possible to create a dialog box with a round border,self.java +5,1339227321,14,Read a file and take the first char of each line a common pitfall,stackoverflow.com +0,1339211747,6,Beginner help with printf and formatting,self.java +30,1339175642,7,How to avoid null statements in Java,stackoverflow.com +0,1339161954,6,Need some help with Java rectangles,self.java +8,1339160518,11,Best practices to follow while handling password in secure Java application,javarevisited.blogspot.sg +8,1339160336,4,Groovy as Better Java,java.dzone.com +4,1339157497,8,Can someone point me in the right direction,self.java +17,1339115981,8,Java 1 7 Collection API UML Class Diagram,karambelkar.info +1,1339108152,6,Help with simple health bar program,self.java +0,1339075546,2,Return Statements,self.java +0,1339077893,9,Oracle Launches Public Cloud Platform Application amp Social Services,indicthreads.com +0,1339102076,15,hi reddit java users i want to learn to program but i need some help,self.java +0,1339076295,6,I need help with a project,self.java +4,1339098710,15,r Java do you know of any definitive Java Server Faces 2 0 resources documentation,self.java +3,1338989116,7,Best Practices for JavaFX 2 Enterprise Applications,learnjavafx.typepad.com +0,1338976868,7,Find eclipse home directory from eclipse IDE,self.java +2,1338987725,13,Zeta Code by Adam L Davis an Open Source Software project on Kickstarter,kickstarter.com +73,1338932824,5,Problems with being a programmer,sphotos.xx.fbcdn.net +16,1338911687,14,Oracle s Google Java show trial cost more than it could ve won TechEye,techeye.net +8,1338909832,29,Can anyone point me to an open source CRUD Java application with a SQL database server I would like to get a starting point to practice simple DB implementations,self.java +0,1338908006,23,Assistance with the best package dev IDE to use to make a media player that supports video images etc on win mac nix,self.java +5,1338931169,7,IO vs NIO Interruptions Timeouts and Buffers,squirrel.pl +3,1338887975,6,Client Side and Server Side Validation,self.java +0,1338857070,1,Constructors,self.java +0,1338792360,7,can anyone help me with this error,self.java +1,1338797292,11,Reddit where should I learn how to use Slick and LWJGL,self.java +0,1338787259,8,How can I make this a desktop clock,chabudai.org +7,1338741085,20,What is the best library protocol to transfer big files from a Java Client to a Android Client over Network,self.java +10,1338692791,17,Does anyone here regularly use the javafx api What are the problems it was meant to solve,self.java +0,1338616097,8,How to Set the Dock Icon on OSX,self.java +6,1338590901,5,OmniFaces 1 0 is released,balusc.blogspot.nl +5,1338569374,13,HELP Resolving import problems with open source projects that depend on old code,self.java +2,1338555060,7,ISO Light weight Java 1 4 DB,self.java +0,1338518931,5,Can you help with JTextArea,self.java +0,1338512010,9,Trouble understanding how Java pointers work in linked lists,self.java +0,1338483432,4,Purpose of an Array,self.java +2,1338499943,8,Am I misunderstanding how Class forName String works,self.java +7,1338481541,6,Testing Java Code in Maths Libraries,opengamma.com +0,1338453846,13,I m new to Java and I need help with calling array elements,self.java +15,1338464748,7,A new DSL for BDD in Java,sebastianbenz.de +0,1338342792,3,LWJGL 3D Picking,self.java +6,1338301650,5,Java SE vs Java EE,self.java +1,1338328776,4,Minecraft Launcher why how,self.java +44,1338296637,13,Found this when i was unpacking some boxes at home Ahh the memories,i.imgur.com +0,1338323021,17,Where can I find someone looking to do free art for a game I am working on,self.java +5,1338316471,13,Use a repository manager if you are working with Java Just do it,sonatype.com +6,1338305864,3,Scala or Java,self.java +7,1338303869,5,PrimeFaces 3 3 Final Released,blog.primefaces.org +6,1338302855,4,Java micro benchmark frameworks,self.java +5,1338246596,6,LWJGL Executable Jar Starts Then Crashes,self.java +0,1338182228,16,Quick Question about creating an instance of an object from a class using the new operator,self.java +7,1338198276,11,Java EE 6 Testing Part I EJB 3 1 Embeddable API,samaxes.com +1,1338184380,3,Keyboard Inputs Suck,self.java +3,1338114991,12,How to get the JPQL SQL String From a CriteriaQuery in JPA,agoncal.wordpress.com +17,1338111168,10,Draft Javadoc of Java EE 7 s concurrency package published,concurrency-ee-spec.java.net +2,1338059765,4,Intro to Java book,self.java +4,1338065781,11,The Most Frequently Asked Question About Java EE 6 amp NetBeans,blogs.oracle.com +1,1338021853,10,Custom Tags as an alternative to Composite Components in JSF,blog.oio.de +5,1338020997,8,TomEE or how to use Websocket with CDI,rmannibucau.wordpress.com +4,1338019347,7,Java web application hosting in the cloud,veerasundar.com +5,1338019096,10,Introduction to CDI Contexts and Dependency Injection for Java EE,jaxenter.com +0,1337928757,5,Computer Science IB Dossier Ideas,self.java +17,1337951650,11,JNA JNI and Raw Java Performance amp optimization for mathematical operations,opengamma.com +8,1337858509,9,Java8 Lambda Expressions Perhaps not as sexy as intended,tataryn.net +183,1337798480,11,Verdict in Google did not infringe on Oracle s Java patents,groklaw.net +2,1337793545,3,Applet image rotation,self.java +0,1337768122,6,Difference between Data abstraction and encapsulation,self.java +2,1337713009,4,System of equation solver,self.java +28,1337727292,13,Do people still use Java 3D If so is it recommended to use,java3d.java.net +20,1337676197,5,Good Java EE book recommendation,self.java +17,1337645282,6,What Java technologies are commonly used,self.java +1,1337624632,4,Web services architecture question,self.java +2,1337608668,8,Trying to get the status code for websites,self.java +0,1337568855,12,Java apps seem to run horribly on windows 7 little tech help,self.java +0,1337569761,11,Need to learn basic java language by end of the summer,self.java +18,1337554535,5,PrimeFaces 3 3 RC1 Released,blog.primefaces.org +3,1337544132,4,JEEConf 2012 trip report,branchandbound.net +0,1337505012,7,JPQL vs SQL why not have both,java-persistence-performance.blogspot.com +12,1337504661,8,Monitoring and Managing Java EE Applications with JMX,netbeans.dzone.com +9,1337438197,7,What are some conventional uses for Java,self.java +1,1337460997,8,JSF 2 Tip of the Day Programmatic PhaseListener,javaevangelist.blogspot.com +0,1337460424,8,JSF 2 0 for the Cloud Part Two,oracle.com +11,1337450694,16,InfoQ Trisha Gee from LMAX Discusses Low Latency Concurrent Java Programming Agile and Diversity in IT,infoq.com +0,1337399387,16,Help D I m not sure where to go to fix the problems I m having,self.java +6,1337394103,6,Creating Numeric Symbolic References in Java,groklaw.net +1,1337368338,2,Goodbye Tomcat,blog.webagesolutions.com +3,1337361579,3,Components in array,self.java +18,1337386056,9,Can someone in Apple talk to me about java,mail.openjdk.java.net +35,1337367167,8,JDK 7 new bytecode format and bytecode verifier,weblogs.java.net +11,1337325330,3,LWJGL starting point,self.java +4,1337239185,11,Java EE 7 Developing for the Cloud Slides from Geecon 2012,slideshare.net +45,1337187454,10,r Java Mods Please keep homework help out of here,self.java +0,1337194221,8,Instantiate a class based on a string value,self.java +0,1337165643,9,Open source Java moving to Linux AIX on PowerPC,itworld.com +0,1337165643,9,Open source Java moving to Linux AIX on PowerPC,itworld.com +0,1337137326,2,BigInteger trouble,self.java +0,1337122057,6,Java not executing system out println,self.java +7,1337134613,6,Is a pure java websocket possible,self.java +0,1337098400,7,Help with an if statement noob question,self.java +0,1337056154,13,How to I code something Using Swing That looks like this in Java,imgur.com +0,1337059100,16,Okay r Java You helped me before Now Can you help me convert this into StringBuffer,self.java +6,1337012486,7,Spring Roo Add on for Cloud Foundry,java-tv.com +7,1336969325,5,DrJava vs Eclipse vs NetBeans,self.java +3,1336982855,33,Need some help with java programming I need a way to scale an image in a window in real time but the stuff on JAI I have is useless Can anyone help me,self.java +3,1336950905,14,Is it worthwhile to pursue Masters in CS How lenient are grad school requirements,self.java +8,1336917366,5,Bootstrapping JSF applications with SystemEvents,blog.oio.de +0,1336830758,7,Xamarin is Still an Anti Java Company,techrights.org +3,1336826882,3,Struggling with eclipse,self.java +16,1336817603,7,The Future of NoSQL with Java EE,architects.dzone.com +7,1336817413,7,EJB 3 1 integration test using Aquarillan,kamel-mahdi.blogspot.co.uk +8,1336763922,9,Migrating Spring Applications to Java EE 6 Part 3,planet.jboss.org +15,1336763681,11,RESTful client in Java with JAX RS 2 0 Client API,paddyweblog.blogspot.de +4,1336753121,4,Creating dynamic package references,self.java +40,1336716332,40,Scalatron is a free open source programming game on the JVM in which bots written in Scala compete in a virtual arena for energy and survival You can play by yourself against the computer or organize a tournament with friends,scalatron.github.com +0,1336738781,13,An unfair and incomplete Comparison between Spring 3 Framework and Java EE 6,sites.google.com +1,1336700850,16,Really quickly is there a general strategy for getting swing events in a java fullscreen setup,self.java +7,1336692390,7,Re Project proposal Remove the Permanent Generation,permalink.gmane.org +1,1336685814,5,How to reduce color variation,self.java +3,1336685554,3,Learning Extra Java,self.java +7,1336620909,16,Is there a place where I can submit my code and people help comment on it,self.java +8,1336589637,2,Charting APIs,self.java +8,1336607678,3,Testing with Mockito,self.java +19,1336576971,14,Lets talk about forhire posts do we want them should we give them rules,self.java +37,1336591181,8,Eclipse 3 8 and 4 2 M7 News,download.eclipse.org +1,1336584514,27,I was wondering if it s possible to use JAVA to import the clipboard into a part of the URL It would help improve my productivity substantially,self.java +2,1336546338,6,Import files into DB BCP possible,self.java +0,1336518485,4,DynaSpring Spring without XML,code.google.com +4,1336510700,12,What if Oracle wins the case and are able to patent Java,self.java +0,1336512380,10,Good way for a PHP dev to learn some JSP,self.java +1,1336484707,4,Multiple Sorting Key problem,self.java +3,1336506528,7,Most Common software design patterns in java,self.java +1,1336504438,9,Can someone help me digitally sign a SOAP request,stackoverflow.com +0,1336470408,7,Thinking with Java ep 0 the Math,youtube.com +13,1336480831,7,The future of NoSQL with Java EE,java.dzone.com +0,1336428674,4,Continue Migrating to Java,self.java +11,1336421665,10,Partial verdict Google infringed on some Oracle Java copyright jury,uk.reuters.com +0,1336418850,5,Implementation of a Binary Tree,self.java +8,1336438518,10,How to setup a Java home webserver more in comments,self.java +2,1336432628,17,I m almost there but can t solve this one tiny problem Can you scholars help me,self.java +2,1336406838,7,Problem using ICEpush add on for Vaadin,self.java +3,1336425049,3,AP Exam tomorrow,self.java +5,1336393489,8,What 3 Billion Devices Run Java 3 Billion,imgur.com +2,1336331591,19,Help with uninstalling reinstalling Java I seem to have a problem involving error 1714 X Post from r javahelp,reddit.com +6,1336344041,6,Java amateur need help with sound,self.java +5,1336334476,3,A string array,i.imgur.com +8,1336304191,7,I ve been playing around with generics,self.java +13,1336262771,3,Good lightweight MVC,self.java +12,1336205673,16,WebSphere Application Server 8 5 Announced and running on perhaps the coolest hardware in the land,portal2portal.blogspot.com +13,1336155700,10,Testing a Java EE 6 Application with OpenEJB and TomEE,rmannibucau.wordpress.com +15,1336155443,5,Great Simplification With EJB Screencast,adam-bien.com +11,1336155262,6,RichFaces CDK support for Twitter Bootstrap,blog.bleathem.ca +11,1336154920,18,Java EE 5 to Java EE 6 Migration Part II JAX WS 2 2 amp JPA 2 0,howtojboss.com +0,1336103126,6,Simple Java program won t work,self.java +19,1336103105,4,Just started using Junit,self.java +5,1336113304,5,Issues with animation while multithreading,self.java +6,1336078202,12,How to invoke EJBs from remote client using JBoss AS 7 1,dimitrijwulf.de +10,1336018824,8,Share your experience Jetty vs Tomcat in Production,self.java +30,1336019444,17,If you ever use regular expressions this website is a must have tool online regular expression tester,regexplanet.com +3,1336009045,4,Java Image Editing Library,self.java +18,1335983792,8,Is WebLogic 12c a heavy weight enterprise solution,henk53.wordpress.com +0,1336004998,4,Smack API Packet Listener,self.java +10,1335968981,13,How to setup Arquillian without Maven to test EJBs on JBoss 7 1,dimitrijwulf.de +24,1335968884,7,Apache TomEE A Tomcat for the Cloud,cloud.dzone.com +0,1335964589,7,Creating Entity Class from Database NetBeans issue,self.java +0,1335933854,5,Java Review problem need help,self.java +10,1335920434,7,Ball collision problem in pool table game,self.java +7,1335921733,6,Question about the JVM on OSX,self.java +0,1335878596,5,NetBeans Platform third party plumbing,self.java +3,1335895802,4,Slick Util Text rendering,self.java +4,1335884959,5,changing background color of jframe,self.java +1,1335836495,4,JSPs and limiting access,self.java +3,1335803600,16,Two Questions about Java Trail What should I do after How advanced does Java Trail go,self.java +40,1335817733,5,How lambdas will be compiled,cr.openjdk.java.net +3,1335800064,6,Do you guis lyk mah cup,imgur.com +7,1335746646,7,How to write good Object Oriented Programs,self.java +0,1335755345,13,Help me with this short java assignment guys I ve tried it all,self.java +0,1335685990,2,actionListener question,self.java +6,1335682571,9,Made a LinkedList Class which toString method is better,self.java +0,1335698950,2,GUI Issue,self.java +0,1335672845,6,Method with array as parameter problem,self.java +17,1335636237,5,Help My skills are stale,self.java +2,1335616092,11,Can anyone please explain to me what I ve done wrong,self.java +3,1335596072,9,How to send jpg images with Java between clients,self.java +13,1335569109,10,Geography generated with a Diamond Square algorithm in java Album,imgur.com +4,1335548194,11,is there any point learning the implementation of the Java API,self.java +64,1335539675,14,Java SE 7 Update 4 Release Notes New flag to unlock Commercial Features _,oracle.com +8,1335539259,5,I enjoy my birthday cake,i.imgur.com +0,1335494610,16,i have quite a big cs 1 assignment with 5 classes due in around an hour,self.java +42,1335466497,9,JDK 7u4 for OS X officially available from Oracle,blogs.oracle.com +0,1335383832,9,Is there a way to fix the JPA EntityManager,struberg.wordpress.com +0,1335400091,7,How to create a main method for,self.java +12,1335394742,12,Possible Jr Position in Java New to this What is the norm,self.java +2,1335383632,6,Help with loading true type fonts,self.java +3,1335375774,4,Free java applet hosting,self.java +2,1335375774,4,Free java applet hosting,self.java +11,1335368956,7,Fetching arbitrary object graphs in JPA 2,jdevelopment.nl +0,1335360690,9,Migrating to Spring 3 1 and Hibernate 4 1,blog.springsource.org +23,1335357790,6,Google App Engine JSF 2 example,mkyong.com +12,1335322521,7,Austin can t hire enough Java developers,self.java +2,1335329032,10,Where should I learn Java with prior experience in C,self.java +0,1335294646,15,help with the famous non static method can not be referenced from static etc question,self.java +13,1335129651,10,Hibernate s Pure native scalar queries are not yet supported,jdevelopment.nl +36,1335124162,5,State of Collections APIs Goetz,cr.openjdk.java.net +0,1335087694,6,need help with a simple program,self.java +8,1335086913,3,Coroutines in Java,ssw.jku.at +5,1335044199,10,Running Java 7 on computer with older version of Java,self.java +14,1335017115,16,Googler who said we need a license for Java says he didn t really mean it,arstechnica.com +12,1335008513,9,JMS 2 0 Early Draft Simplified API Sample Code,blogs.oracle.com +4,1335003537,8,The Future Of JBoss Seam And Apache DeltaSpike,infoq.com +13,1335009981,11,Article Series Migrating Spring Applications to Java EE 6 Part 1,howtojboss.com +50,1334945973,25,Forget Hibernate Jooq is by far the best database abstraction layer I ve found for Java it embraces SQL rather than trying to hide it,jooq.org +11,1334961395,10,Developing a Java EE 6 Web Profile application from scratch,disi.unitn.it +4,1334960028,10,Write your own URL rewrite filter for existing JSF pages,kahimyang.info +5,1334959723,6,Update model in JSF s ValueChangeListener,adfpractice-fedor.blogspot.com +17,1334901984,6,iPhone apps written in Java XMLVM,self.java +12,1334858325,18,Is it possible to create an operating system with only Java If not what else would be required,self.java +0,1334849231,2,Netbeans samples,self.java +1,1334838383,9,Using Log4j to create 2 separate log file appenders,thegreenoak.blogspot.com +30,1334849525,12,New tool to visualize Java program execution We are looking for feedback,onyem.com +1,1334810088,28,Not sure if this is the best place for this but I have a java Applet and want it to communicate with a servlet on my server securely,stackoverflow.com +0,1334787163,12,Minesweeper java project is not going as smoothly as I had hoped,self.java +6,1334755063,13,My own Java common library similar to Guava Apache Commons but much smaller,github.com +26,1334770939,5,Why the JCP sucks rant,self.java +0,1334763770,10,New in Spring MVC 3 1 CSRF Protection using RequestDataValueProcessor,blog.eyallupu.com +8,1334690193,8,Java in the middle of bitter tech battle,foxnews.com +0,1334712799,10,need a little help and no one on r javahelp,self.java +0,1334640274,4,Trouble with data scraping,self.java +6,1334630615,4,New to Intellij IDEA,self.java +19,1334572258,3,Java for Robotics,java-tv.com +20,1334586669,17,Anyone in the US looking for work On site full time nice salary in beautiful Austin TX,reddit.com +10,1334527606,7,JSF2 Primefaces3 EJB3 amp JPA2 Integration Project,henk53.wordpress.com +3,1334527461,16,With a math degree and some coding experience can a get a job as java dev,self.java +1,1334476100,5,Deciphering a Java Class File,self.java +0,1334445336,9,Rollback Java Update on Mac OS X 10 6,self.java +38,1334464507,4,The Java Life Rap,youtube.com +2,1334452711,5,JSP setProperty nested bean structures,self.java +0,1334383262,3,Custom table column,self.java +0,1334351657,14,JSP help Change a working MS SQL connection java class to work with MySQL,self.java +3,1334344900,4,Problem playing a wav,self.java +31,1334319883,11,What are some the Java sites that you visit most often,self.java +5,1334307968,8,How to implement a portable JVM into application,self.java +16,1334284807,9,Current library options for modern looking Java desktop applications,self.java +8,1334247290,19,How would you set up a http server with some Java apps to access a SQL database over lan,self.java +1,1334247845,8,JSF 2 0 for the Cloud Part One,oracle.com +5,1334228424,9,Best Practices Migrating from Spring to Java EE 6,howtojboss.com +0,1334172429,10,Basic adding program problem Working with loops Int Options PIC,self.java +25,1334171809,13,what IDE do you use and what are the benefits drawbacks of others,self.java +1,1334134635,11,Death to all bugs Arquillian testing platform reaches first stable release,java.dzone.com +0,1334091326,8,hiring freelance Photoshop Java Scripter nyc television studio,self.java +5,1334089869,5,Make JSF your friend again,mindbug.org +0,1334103220,29,Java s Bye Bye Bye Rule 1 in Java Phone rings in class you have to dance This video takes place in the 1331 Java class at Georgia Tech,youtube.com +6,1334091944,5,Advanced AutoComplete Tooltip in PrimeFaces,blog.primefaces.org +4,1334080791,5,How do you describe this,self.java +14,1334060500,9,Sometimes it s easier to just write your SQLs,ricardozuasti.com +21,1334015773,5,Clarification on this and super,self.java +3,1334004734,6,Simple MVC Web App in Spring,thebinaryidiot.com +15,1333998362,11,What s coming in Java 8 X posted from r techlectures,channel9.msdn.com +2,1333969665,6,Remaining Chars for InputTextarea in PrimeFaces,blog.primefaces.org +0,1333986264,7,Moving From Java To Ruby amp Beyond,rubysource.com +8,1333984497,10,Distributing or bundling multiple non Java binaries with a jar,self.java +2,1333973723,9,Do live_life lt 3 while 1 1 Desktop Wallpaper,imgur.com +13,1333971781,7,JSF2 Primefaces3 Spring3 amp Hibernate4 Integration Project,onlinetechvision.com +8,1333971349,8,Understanding NIO 2 File Channels in Java 7,java.dzone.com +3,1333941484,19,I have a Programming Comp on the 20th I know basic moderate Java Can anyone give me some Advice,self.java +4,1333953011,8,Binding Java EE Application Clients to Data Source,self.java +2,1333906779,13,Beta version of Jaybird 2 2 released with support for JDBC 4 1,firebirdnews.org +1,1333906495,6,Putting this method into a button,self.java +12,1333911367,24,I just finished Learn Java in 21 days I already watched thenewboston s tutorials except the Game Dev and mybringback s Where to now,self.java +0,1333870630,5,Generating Integers with specific properties,self.java +5,1333849305,8,How do I analyze stackdumps looking for assistance,self.java +4,1333820485,19,Jaybird 2 2 beta hopefully will be released this weekend with jdbc 3 0 and open libre office support,firebirdnews.org +0,1333808798,7,Working with Apache Commons StringUtils part 2,java-only.com +2,1333757068,10,Maven site tips Maven Fluido Skin and Javadoc class diagrams,kinoshita.eti.br +0,1333758390,5,Out putting more than once,self.java +25,1333727472,11,Is there a Java equivalent of Python module of the week,self.java +2,1333704386,7,What are your thoughts about Eclipse RAP,self.java +0,1333698576,4,Asynchronous Logging Using Spring,java.sys-con.com +3,1333698142,6,Repaint wont work in for loop,self.java +19,1333655806,10,Spring vs Java EE and Why I Don t Care,jandiandme.blogspot.com +10,1333619278,10,Cross build injection attacks how safe is your Maven build,branchandbound.net +8,1333642727,7,Interview with JSF Spec Lead Ed Burns,jaxenter.com +5,1333641363,15,Q How to access a database The text inside will be more descriptive by far,self.java +7,1333594219,12,Spectrogram of audio by Fourier transform through Libgdx for Android in Java,digiphd.com +0,1333568649,7,Working with Apache Commons StringUtils part 1,java-only.com +4,1333556716,9,Blocklisting Older Versions of Java Mozilla Add ons Blog,blog.mozilla.com +25,1333554058,8,How do you start your Java web projects,self.java +17,1333553774,6,Java concurrency examples Fork Join framework,ricardozuasti.com +6,1333508235,3,Reactor Pattern Implementation,self.java +5,1333503908,4,noob project need help,self.java +5,1333523990,9,Java Hibernate Two SessionFactory instances and possible problems experiences,self.java +0,1333504783,8,I need your help with a simple problem,self.java +5,1333504754,7,Java Book Advice Already know C C,self.java +0,1333460528,18,ELI5 How can I invoke an entry point in a DLL with the Pascal calling convention using JAVA,self.java +1,1333478982,3,LF Employment Opportunities,self.java +0,1333478982,3,LF Employment Opportunities,self.java +0,1333468484,13,Apple is looking for experienced Java devs relo paid permanent hires Cupertino CA,self.java +18,1333456183,8,New in Java 7 the NIO 2 API,mrbool.com +3,1333439418,5,PrimeFaces 3 3 FacesMessage Enhancements,blog.primefaces.org +0,1333402881,7,Addressing Security Concerns in Open Source Components,sonatype.com +9,1333414708,4,Contracting and Code Quality,self.java +0,1333407711,6,Im proud to be a programmer,self.java +13,1333396784,6,New in Java 7 Project Coin,mrbool.com +4,1333395639,6,JSF 2 0 JQuery JSF Integration,javaevangelist.blogspot.com +4,1333391987,5,Using Joda Time and Hibernate,java-only.com +7,1333369610,3,Java file browser,self.java +5,1333333346,9,Why Isn t Open Source Java eCommerce More Prominent,self.java +1,1333333233,14,SWT JFace ApplicationWindow addStatusLine setStatus Works OK BUT THEN setFont doesn t exist WTJF,self.java +11,1333322297,10,Effective Use of FindBugs in Large Software Development Efforts presentation,infoq.com +0,1333299576,6,Logout functionality in Java web applications,java-only.com +1,1333294384,10,Good examples of Swing UI design for non technical programmers,self.java +5,1333290757,5,Lazy JSF Datatable Pagination Primefaces,uaihebert.com +3,1333290504,7,Java EE Revisits Design Patterns Aspects Interceptor,devchronicles.com +7,1333262285,4,Design pattern tutorials help,self.java +5,1333285121,6,Testing Trying not to overdo it,markhneedham.com +1,1333206123,16,Eclipse Indigo 3 7 Fresh install Update 3 times Window builder Crash and burn Help appreciated,self.java +15,1333201457,9,workflow Best setup for developing in Java on linux,self.java +1,1333187657,7,GC overhead limit exceeded Understand your JVM,javaeesupportpatterns.blogspot.com +2,1333187480,14,What is more memory effiecient one 3 dimensional Array or 3 one dimensional Arrays,self.java +8,1333175898,8,EJB 3 1 Concurrency Management and Avoiding Synchronization,blog.avisi.nl +1,1333147282,11,having recursion problem with computing the negative sum of an array,self.java +2,1333146202,9,The Executable Feel Of JAX RS 2 0 Client,adam-bien.com +18,1333139607,8,Can I transition to a career in Java,self.java +3,1333138142,8,So I found this in my java textbook,imgur.com +0,1333137401,8,Seeking Java Developer with TS SCI clearance Virginia,self.java +0,1333136282,12,Need help with finding a minimum value in an array using recursion,self.java +0,1333129386,9,Critical Java hole being exploited on a large scale,h-online.com +19,1333114682,17,Sample Java EE 6 CRUD application with JSF JPA EJB and Bean Validation Live demo on OpenShift,jdevelopment.nl +2,1333084327,8,Shameless plug for my OSS project XML Wrappers,github.com +37,1333054733,10,Why does it seem like so many people dislike Java,self.java +0,1333074094,6,Java and Physical Peripherals Beginner here,self.java +0,1333049303,10,I have an exam today and need help with inheritance,self.java +0,1333034369,4,Classes within a file,self.java +2,1332968588,4,Having trouble with Recursion,self.java +6,1332964321,9,More dll help Accessing the methods in the DLL,self.java +22,1332987246,7,JavaDoc incremental searchbar for Firefox and Chrome,blog.mitemitreski.com +5,1332981885,6,Java keyword this as a parameter,self.java +0,1332978255,3,Arrays of objects,self.java +0,1332956642,8,Assistance with java would be very much appreciated,self.java +5,1332955259,4,Embedded DB inside JAR,self.java +2,1332942885,9,Tomcat Running but I can t reach my App,self.java +5,1332889390,8,How to load methods from dll into java,self.java +0,1332909836,4,Beginner Help Circumference Program,imgur.com +5,1332877605,15,I need to install a JAVA app in Tomcat 6 but need a little help,self.java +3,1332876917,7,My Java code don t release memory,self.java +19,1332893914,9,Which Java conference are you going to this year,self.java +3,1332892568,6,Help with java text adventure game,self.java +6,1332890988,12,Fuck everything about Java GUI coding Does anyone have a good tutorial,self.java +10,1332874017,2,Hibernate questions,self.java +1,1332804025,6,Change JLabel image depending on int,self.java +20,1332816106,4,Web development with Java,self.java +0,1332812993,6,i need help with a program,self.java +4,1332781747,12,Making OSGi deployments easier using feature xml files An Apache Karaf Demo,icodebythesea.blogspot.ca +11,1332779728,7,Any good books on learning by yourself,self.java +2,1332749320,11,Want to create an FTP client server X post from learningprogramming,self.java +10,1332761914,4,Introduction to Enterprise JavaBeans,dafreels.wordpress.com +23,1332756012,6,Is the Java Cookbook still relevant,self.java +2,1332688172,17,Cannot find a good Java Tomcat web host x post from web design Please tell me yours,reddit.com +15,1332687681,13,Here s a video about multiprocessor programming in Java Source included in link,youtube.com +6,1332627226,11,Making an OSGi bundle using Apache Karaf An Apache Karaf Demo,icodebythesea.blogspot.ca +9,1332550142,13,Making an OSGi bundle from a third party jar An Apache Karaf demo,icodebythesea.blogspot.ca +0,1332566349,14,How to Read Property file using Java Get Database connection parameters from property file,javasrilankansupport.blogspot.com +8,1332533279,12,Interviewing to be an entry level Java Developer on Monday any advice,self.java +0,1332541927,8,The order of Action and ActionListener in JSF,yigitdarcin.wordpress.com +2,1332534112,5,Getting Started with JAX RS,fisharefriends.us +1,1332531174,9,Oculus simple unused basic block detector through dynamic analysis,github.com +0,1332510398,9,How do you set a 10 Increase on Eclipse,self.java +2,1332450582,10,I can t work out why this won t work,self.java +15,1332442584,11,New Features in Fork Join from Java Concurrency Master Doug Lea,java.dzone.com +4,1332442230,5,Organize your named JPQL queries,eubauer.de +21,1332408117,6,How does Java generate random numbers,self.java +3,1332433616,3,Consulting Gig Website,self.java +5,1332427822,8,Upgrading To The Java EE 6 Web Profile,ninthavenue.com.au +6,1332394267,17,Alright r java how could one use an html page as an interface instead of Swing AWT,self.java +7,1332420411,10,JavaServer Faces Innovation in the path to Java EE 7,translate.google.com +3,1332419178,10,Automatically setting the label of a component in JSF 2,jdevelopment.nl +21,1332342279,13,What is Maven s popularity both in and out of the Java world,self.java +0,1332365866,6,Not receiving final data from stream,self.java +0,1332363331,10,Code runs successfully but getting an unwanted return Please help,self.java +5,1332332670,6,C for java developers Language Comparison,jroller.com +15,1332358666,18,My instructor said that ERROR handling in JAVA is a controversial issue Anyone has any insights about this,self.java +5,1332351993,8,Working on a 2d Fighting game need help,self.java +0,1332350867,11,need help with making a 4x4 grid code and details inside,self.java +10,1332334758,7,Filtering irrelevant stack trace lines in logs,nurkiewicz.blogspot.com +8,1332301717,5,What is causing these borders,self.java +0,1332301673,10,Yes homework help but it should be simple please help,self.java +3,1332281383,6,A good project for a beginner,self.java +7,1332281071,5,I just need some perspective,self.java +8,1332277403,18,Here s a video explaining how to use shutdown hooks in your java application Source included in link,youtube.com +0,1332244443,2,Favorite IDE,self.java +3,1332251808,2,Project Ideas,self.java +13,1332202104,10,What is the state of 3d graphics programming in java,self.java +13,1332194369,21,Here s a video talking about the the code behind a VNC type application written in Java Source included in link,youtube.com +7,1332150384,15,Fibonacci function An example of how to write concurrent programs without multi threading Java net,weblogs.java.net +15,1332109094,4,Recovering corrupted serialized ArrayList,self.java +13,1332109094,4,Recovering corrupted serialized ArrayList,self.java +2,1332102111,5,Javadoc Search Frame for Greasemonkey,userscripts.org +1,1332074404,7,Good CS year 3 Java Text Book,self.java +16,1332070867,11,Key to the Java EE 6 Platform NetBeans IDE 7 1,oracle.com +9,1332048097,3,Java programmer internship,self.java +1,1332015992,12,Finished a Huffman coding assignment for CS this is how I feel,imgur.com +0,1331995757,11,Reset non processed input components on ajax update in JSF 2,balusc.blogspot.com +0,1331939638,3,Basic inheritance question,self.java +6,1331937110,8,The Java EE 6 Example Galleria Part 1,blog.eisele.net +5,1331936511,10,JavaServer Faces enjoying Java EE renaissance under Oracle s stewardship,jaxenter.com +0,1331934182,2,Java basic,javatheking-akit.blogspot.com +1,1331931891,3,decimal accuracy issue,self.java +16,1331927549,17,Java Tip Use CharacterIterator to safely iterate over a String instead of using character index and length,docs.oracle.com +0,1331905262,7,The several flavors of random in Java,summa-tech.com +28,1331904389,5,Logging exceptions root cause first,nurkiewicz.blogspot.com +0,1331903983,4,toArray Vs toArray T,deathbycode.blogspot.com +14,1331903613,8,How to pinpoint high CPU Java VM Threads,javaeesupportpatterns.blogspot.com +1,1331881291,5,Good Java Compiler for mac,self.java +6,1331850176,9,A RichFaces Roundup What s New With 4 2,jsfcentral.com +8,1331833979,5,Scala Macros Oh God Why,blog.empathybox.com +2,1331830275,8,Question on Interface VS Inheritance VS Abstract Classes,self.java +9,1331821504,9,JavaServer Faces preps for new version HTML5 mobile explosion,searchsoa.techtarget.com +18,1331802527,7,Functional thinking Functional design patterns Part 1,ibm.com +6,1331764643,5,JButtons disabling out of order,self.java +2,1331776553,4,Problems executing jar files,self.java +2,1331773090,5,Need help with editing variables,self.java +1,1331765487,33,Can I make a exe file so that when I click on it it runs the main method the same way it does when I run my java file on the command line,self.java +6,1331664469,5,Java EE wins over Spring,bill.burkecentral.com +7,1331664770,5,Java EE 6 sample code,blogs.oracle.com +5,1331664172,3,Need a tutor,self.java +28,1331664083,9,Java EE 7 Looking ahead to a new era,tamanmohamed.blogspot.com +3,1331648693,5,Typesafe release Play 2 0,blog.typesafe.com +7,1331581740,6,JPA 2 Metamodels and Hibernates Any,javalabor.blogspot.com +33,1331563254,19,If floats and doubles should NEVER be used for precise values such as currency what are they useful for,self.java +1,1331580376,4,AES Encryption Error BadPaddingException,self.java +0,1331560827,4,Project Configuration with Spring,baeldung.com +2,1331541187,20,Please vote How critical is it for JSR 310 new Date and Time API to be implemented in Java 8,home.java.net +4,1331524717,6,Help Tridiagonal LU decomposition WITH pivoting,self.java +1,1331512670,6,Help creating my first makefile please,self.java +16,1331498341,12,Reducing Java Memory Usage and Garbage Collections with the UseCompressedOops VM Option,stuartleneghan.blogspot.com +12,1331481216,8,Displayin file copy progress in Java Swing applications,richjavablog.com +2,1331479815,10,I am looking for a complete idiots guide to jbehave,self.java +4,1331478927,9,Why is method overloading considered a form of polymorphism,self.java +3,1331463267,10,Two Implementations of the Chain Of Responsibility Pattern in Java,java.dzone.com +5,1331463056,11,Thinking functional programming with Map and Fold in your everyday Java,cyrille.martraire.com +9,1331437063,3,Problem with Eclipse,self.java +2,1331427821,4,Designing a Board Game,self.java +22,1331401839,3,Boxing with Java,tomhalligan.co.uk +21,1331422868,9,Why I m Moving Away from the Play Framework,whilefalse.blogspot.com +1,1331410656,9,Zend or Standard PHP when using REST with Java,self.java +1,1331382826,5,MMAP File OutOfMemoryError and pmap,javaeesupportpatterns.blogspot.com +16,1331382738,7,What Java Map class should I use,khangaonkar.blogspot.com +8,1331363873,6,Why aren t all objects serializable,self.java +1,1331335825,1,Buttonseption,i.imgur.com +1,1331333650,9,How would I persist a PriorityQueue in a databse,self.java +6,1331328131,8,Which Java IDE do you use and why,self.java +1,1331325583,9,Should Java be updated more often to stay popular,self.java +1,1331299726,4,Limitations of Apache ANT,self.java +3,1331293673,6,Building Memory efficient Java Applications pdf,domino.research.ibm.com +17,1331261572,33,Here is a video of some software I m working on for image compression Time lapsed MJPEG video of the evolution is generated by this program this is all done in pure Java,youtube.com +2,1331241701,9,Java Swing vs Java FX Help a newb choose,self.java +29,1331236390,14,From Java code to Java heap Understanding and optimizing your application s memory usage,ibm.com +1,1331232227,4,Form Wizards in Struts2,java-only.com +1,1331230024,10,Anyone able to help me out with this question beginner,self.java +24,1331218455,8,Barney s Ewok theory and Java EE 6,devchronicles.com +3,1331181593,6,Do not understand my error message,self.java +7,1331137842,3,GRASP design pattern,self.java +11,1331139681,5,PrettyFaces 3 3 3 Released,ocpsoft.org +10,1331139428,5,PrimeFaces 3 2 RC1 Unleashed,blog.primefaces.org +8,1331139164,11,How to create a new JSF 2 0 project in NetBeans,packtpub.com +0,1331069726,5,Where am I messed up,self.java +3,1331060823,8,JSF 2 2 milestone 1 has been released,java.net +26,1331058584,3,Why do this,self.java +0,1331042567,9,Simple tips to improve performance of Java database applications,javarevisited.blogspot.com +0,1331010172,4,Help with loops please,self.java +4,1331025652,6,Stateless view parameters in JSF 2,balusc.blogspot.com +35,1330987091,4,Programming Job Interview Questions,self.java +0,1330998502,12,How can I call a method on a value in an arraylist,self.java +9,1330995151,5,What software should I use,self.java +2,1330959134,4,Help with applets calculations,self.java +0,1330932023,22,If Oracle ever decides to replace Duke as the Java mascot I can t think of a more appropriate choice than this,41-media.tumblr.com +1,1330910858,10,Good approach to mix Java and PHP for a project,self.java +5,1330902530,15,Is there a website where I can paste some code and it will compile online,self.java +30,1330890792,24,I am working on a video codec and Java video player component Here is some footage of Star Wars Episode III playing in Java,youtube.com +6,1330859086,10,PrimeFaces is taking off and Extensions project is on board,ovaraksin.blogspot.com +6,1330840098,17,Need a really simple library to play sounds and music in Java Try TinySound x post gamedev,reddit.com +1,1330824592,5,Ideas for good practice programs,self.java +13,1330813735,7,Full ajax exception handler for JSF 2,balusc.blogspot.com +5,1330807846,5,Using RichFaces with JSF 2,ibm.com +7,1330798341,4,Question about file output,self.java +1,1330796751,5,Need help with DrJava project,self.java +3,1330793315,4,Question about garbage collection,self.java +8,1330792163,5,New JBoss integration testing framework,kamel-mahdi.blogspot.com +4,1330791415,3,Scalable Spring code,cakesolutions.net +6,1330787795,10,How To Self Invoke EJB 3 x with out this,adam-bien.com +22,1330782846,5,PrimeFaces vs RichFaces vs IceFaces,mastertheboss.com +1,1330782761,7,Portlet Development using JSF PrimeFaces and Spring,blogs.sourceallies.com +0,1330781731,6,NetBeans 7s Grid Bag Visual Editor,mrbool.com +4,1330774303,5,Thank you for your help,self.java +36,1330710735,10,Share a useful class from the standard Java Class Library,self.java +6,1330703432,5,Any J2EE open source code,self.java +5,1330685262,6,Byteman Carving up your Java code,slideshare.net +19,1330684648,12,How a Java version gets EOL d interesting for all Java users,openj.dk +1,1330673106,12,Java class isn t helping much best way to learn the language,self.java +0,1330656563,8,Need help passing a comparator as a parameter,self.java +0,1330652618,12,Need Super easy help with java Random number generating is all really,self.java +1,1330617717,13,How to stop and wait for GUI input as if from a JOptionPane,self.java +0,1330612251,4,Benchmarking a slow machine,vanillajava.blogspot.com +5,1330611797,11,A technology decision making process Java EE 6 vs Spring Framework,niklasschlimm.blogspot.com +2,1330610663,6,Too stupid to add a button,self.java +2,1330599415,4,The Artima Developer Community,artima.com +0,1330596443,11,Shift to Grails from Java J2EE is it a good choice,self.java +0,1330564449,15,My Friend would like to know if you can change the color of the buttons,self.java +2,1330540223,9,Deploying Swin applications on Linux with Maven and RPM,richjavablog.com +15,1330537149,7,GlassFish 3 1 2 Final is here,blogs.oracle.com +11,1330531336,12,Was Lindholm personally competent to offer an opinion about Java software licensing,self.java +10,1330494860,15,Once a piece of software is created how often does it have to be updated,self.java +0,1330487826,20,This is probably something simple but I don t know what I m doing wrong with JDesktopPane JInternalFrame Any help,self.java +13,1330457632,8,Eclipse Performance on KDE and Ubuntu 11 10,hwellmann.blogspot.com +0,1330447590,10,Taking a photo on an LG Quad core 4X HD,6.mshcdn.com +0,1330443464,6,Different types of variables in Java,anotherjavaduke.wordpress.com +19,1330440728,12,A FIXME in the Java 7 source code that actually affects me,self.java +4,1330414934,11,Aiming to be a Java Developer how do I get there,self.java +0,1330383257,15,How do i get the results of a loop to be stored in an array,self.java +1,1330409887,3,link list help,self.java +1,1330395949,7,Need help avoiding use of magic numbers,self.java +0,1330388609,3,Noob question here,self.java +3,1330379852,7,Distributed Configuration Setting System for web application,self.java +14,1330370064,5,Capturing mouse movement for entropy,self.java +1,1330362486,5,Regular expression derivatives in Java,maniagnosis.crsr.net +5,1330362398,7,Help request Using JButtons to change booleans,self.java +2,1330349609,5,Reference Counting Garbage Collection Java,objectechenica.blogspot.com +0,1330343579,27,Exactly how bad is it to use a LinkedList for random access And what s the penalty for using autoboxing I did some tests to find out,flavor8.com +25,1330322272,7,Which web application UI framework to learn,self.java +1,1330290785,10,Need some help figuring out how to map some values,self.java +13,1330267611,6,Handling completion of concurrent tasks Java,khangaonkar.blogspot.com +5,1330226870,6,Extract Zip While Maintaining Unix Permissions,self.java +8,1330222086,5,Java Heap space HotSpot VM,javaeesupportpatterns.blogspot.com +14,1330170559,5,Eclipse 3 7 SR2 released,jdevelopment.nl +16,1330157626,8,HeapAudit JVM Memory Profiler for the Real World,engineering.foursquare.com +0,1330139633,14,I have to write a java program that creates a square wave any ideas,self.java +4,1330138489,5,Best tutorials for semi beginners,self.java +0,1330136859,9,Homework help Why won t this program move shapes,self.java +0,1330136085,10,Proper use of skip String pattern in the scanner class,self.java +0,1330071312,7,Writing to a Text File in Java,self.java +0,1330037556,7,HELP Stuck while creating a while loop,self.java +0,1330054766,3,Java and Databases,self.java +0,1330020416,9,How can this IF be simplified New to Java,self.java +0,1330042541,4,Understanding the main method,self.java +10,1330035645,12,How to generate Emails SMS and other Messages from Templates in Java,wp.me +20,1330025052,7,Deploying Swing applications on Mac OS X,richjavablog.com +2,1330016228,4,Java Sequential IO Performance,mechanical-sympathy.blogspot.com +0,1330002967,9,Things to note down while overriding equals in Java,javarevisited.blogspot.com +5,1329969463,8,What Eclipse to Download and misc Java Qs,self.java +3,1329959389,4,Threading with an ArrayList,self.java +44,1329955892,7,Ladies and gentlement I present the OptionPaneOptionPaneMessageAreaOptionPaneLabelPainter,javadoc.fr +1,1329950839,4,Release your JPA entities,alexander.holbreich.org +8,1329950731,3,Tutorials on jconsole,self.java +0,1329945916,7,How to loop an animation in javascript,self.java +0,1329920688,13,Do you have defect id to burn the hours spent on code refactoring,sivalabs.blogspot.in +3,1329902148,9,Java Crypto Question Cipher fails to initiate Need Help,self.java +4,1329894249,5,What volatile means in Java,jeremymanson.blogspot.com +3,1329883556,11,How would I go about finding the mode of an array,self.java +1,1329853988,3,Need help homework,self.java +31,1329875054,8,Oracle gives Java 6 extended period of life,jaxenter.com +16,1329829781,6,Do I really need a Singleton,deathbycode.blogspot.com +18,1329831305,10,JTrouble a bunch of shell scripts to troubleshoot Java processes,github.com +12,1329829829,8,15 Best Practices of Variable amp Method Naming,codebuild.blogspot.com +0,1329829734,7,Setting up a Spring 3 development environment,niklasschlimm.blogspot.com +0,1329806013,6,Need some basic Java help please,self.java +3,1329788576,4,Java 6 or 7,self.java +15,1329753335,8,YourKit Java Profiler 11 EAP free beta starts,yourkit.com +2,1329740583,5,Integrating Spring Velocity and Tiles,squirrel.pl +1,1329678505,19,Now that Netbeans Does NOT have a Rapid Application Development Framework for DESKTOP Applications What do you use Suggestions,self.java +11,1329658294,3,Inject Dependencies Manually,deathbycode.blogspot.com +0,1329627122,9,I m a java noob that needs some help,self.java +1,1329644142,12,Java app that lets you schedule YouTube uploads via windows task scheduler,youtu.be +12,1329558187,11,Has anybody used JPA in a so called web scale app,self.java +9,1329565612,6,Deploying Java application as Debian packages,richjavablog.com +26,1329564733,27,Byteman allows you to insert extra Java code into your application either as it is loaded during JVM startup or even after it has already started running,jboss.org +0,1329548204,7,The evolution of Spring dependency injection techniques,nurkiewicz.blogspot.com +4,1329546872,4,Patching Java at runtime,armoredbarista.blogspot.com +8,1329523457,5,eclim eclipse functionality in vim,self.java +3,1329507886,3,A in Java,self.java +0,1329507746,3,Processing problems question,self.java +0,1329492755,7,Two dimensional ArrayList need help with constructor,self.java +7,1329475034,3,Java Frame Problem,self.java +82,1329415753,8,Ran across these today got a good laugh,code.google.com +26,1329394254,6,How to Analyze Java Thread Dumps,cubrid.org +0,1329347719,7,Any advice to new graduated financial engineer,self.java +13,1329317292,9,Oracle Java SE Critical Patch Update Advisory February 2012,oracle.com +24,1329315450,10,Explain Like I m Five Inteface vs Classes Abstract Classes,self.java +6,1329314250,7,Java Generics Subtyping using wildcard with extends,khangaonkar.blogspot.com +0,1329313899,7,Java Fooled by java util Arrays asList,markhneedham.com +2,1329281992,14,How to create a simple EJB3 Session Bean in Eclipse JBoss AS 7 1,theopentutorials.com +1,1329278323,2,Netbeans Help,self.java +13,1329252281,5,Deploying Swing applications on Windows,richjavablog.com +0,1329228572,3,Tricks with Enums,chaoticjava.com +1,1329199616,6,ELI5 Java Exceptions and Stack Traces,self.java +2,1329172574,6,Learning JPA with Hibernate and Spring,self.java +1,1329165241,8,Returning data back to parent frame from JDialog,self.java +0,1329153612,7,This method will only return false help,self.java +35,1329142710,9,Janino is a super small super fast Java compiler,docs.codehaus.org +0,1329138766,14,Why wait notify and notifyAll is defined in Object Class and not on Thread,javarevisited.blogspot.com +14,1329108174,13,In your opinion what is the best free online tool for learning java,self.java +0,1329092630,4,Joptionpane other stuff help,self.java +1,1329070046,5,Introduction to Java Server Faces,javabeat.net +0,1329038335,7,ArrayList contains and LinkedList get gets slower,anshuiitk.blogspot.com +3,1329044244,10,JAX RS 2 0 Early Draft Explained RESTful Web Services,blogs.oracle.com +33,1329039075,3,Singleton vs Static,deathbycode.blogspot.com +0,1329022966,3,Simple Program Problem,self.java +5,1328993215,5,N00b Java question Linked lists,self.java +3,1329008815,8,Neo4j App Performance Profile Management using New Relic,architects.dzone.com +1,1328995041,23,I m working on an RPG type of game and need to carry change variables in multiple classes How do I do it,self.java +0,1328984179,7,Need help on another simple java problem,self.java +16,1328959566,5,Automatically Unlocking with Java 7,javaspecialists.eu +5,1328959424,6,JSR 354 Money and Currency API,jcp.org +15,1328956623,6,Java Concurrency Part 2 Reentrant Locks,carfey.com +2,1328956424,12,Setting the Default Java File Encoding to UTF 8 on a Mac,blog.lidalia.org.uk +0,1328925299,7,Simple java problem that has me confused,self.java +13,1328901062,12,Is there a way to get Eclipse to shade every other line,self.java +9,1328896495,32,Hello r java I ve created a robot piano player would you like to try it out and tell me how it works for you standard jar file run with java jar,github.com +32,1328892122,5,High performance libraries in Java,vanillajava.blogspot.com +0,1328891171,5,Customizing Java Serializarion Part 1,javawithswaranga.blogspot.com +0,1328890694,7,The Top Java Memory Problems Part 1,blog.dynatrace.com +0,1328867673,4,Hosting a java file,self.java +0,1328833230,8,help java convert ASCII input to a word,self.java +10,1328812573,8,JSP and when to create the database connection,self.java +0,1328828703,46,My programming w java teacher told me that if I programmed a checkers game where you play vs a CPU in java by the end of the semester I would be exempt from the final exam I don t know too much about java Any tips,self.java +0,1328793656,7,Java calculate the difference between two dates,tripoverit.blogspot.com +13,1328795264,7,Java 7 Project Coin Decompiled Part II,java-n-me.com +16,1328794067,11,JSR 292 Goodness Fast code coverage tool in less than 10k,weblogs.java.net +1,1328739830,6,getting started Degree Certification or Experience,self.java +0,1328741759,7,Why does this simple code not work,self.java +2,1328705880,4,Curated java articles newsletter,self.java +2,1328719118,10,JavaDoc to a section or tag in a source file,self.java +46,1328709786,3,Understanding JVM Internals,cubrid.org +3,1328709134,12,25 Best Free Eclipse Plug ins for Java Developer to be Productive,fromdev.com +9,1328672306,8,Is there an Eclipse plugin that shades methods,self.java +0,1328659154,12,Can anyone explain this unsual usage of For loops used with Vectors,davidwinter.me +10,1328645073,5,Developer Productivity Report Developer Stress,zeroturnaround.com +2,1328624679,8,Find Java Memory Leaks at Runtime Act 5,blog.codecentric.de +17,1328624598,6,Logging Do s and Dont s,blog.lidalia.org.uk +4,1328607552,7,Why doesn t File support date created,self.java +6,1328577795,7,Being Blocked By Antivirus Software Specifically AVG,self.java +1,1328576913,3,Swing Timer help,self.java +7,1328555529,4,PrimeFaces 3 1 Released,blog.primefaces.org +8,1328549538,4,Flickering window JPanel painting,self.java +1,1328524598,16,How to allow users to input data and then use inputted date to return answers URGENT,self.java +0,1328475653,7,Assigning Variables in a Java Calculator Help,self.java +8,1328406756,4,SSL amp System properties,self.java +0,1328361419,9,java io FileWriter not case sensitive for file names,self.java +0,1328389089,8,First Java Assignment Question Command Line Expression Calculator,self.java +34,1328332629,7,javax cache The new Java Caching Standard,gregluck.com +29,1328276837,8,10 HotSpot JVM options Java programmer should know,javarevisited.blogspot.com +0,1328289098,3,TCP Server Problem,self.java +3,1328250766,4,Java Download System Freezing,self.java +37,1328261967,10,Made me chuckle because it definitely has happened to many,blackforestcowboy.soup.io +7,1328246759,6,Java Swing use designer or not,self.java +0,1328213640,13,Sun Microsystems Inc Sun Microsoft Corporation Microsoft Settlement Agreement and Mutual Limited Release,microsoft.com +1,1328195548,14,coded a simple bayes classifier need code review Thanks Counter java and Twainsorter java,github.com +3,1328169485,12,Okay Java community I m stumped Java optimization question with inner loops,stackoverflow.com +0,1328138984,6,I need a bit of help,self.java +9,1328135890,12,Anybody got any pointers for this code I m trying to write,self.java +1,1328119210,4,UML for Eclipse IDE,self.java +4,1328105888,4,Cumulogic Java PaaS Strategy,cloudcomputingdevelopment.net +0,1328061545,3,Question regarding arrayLists,self.java +4,1328067650,12,in 2d lists which is the row and which is the column,self.java +0,1328060414,5,JAVA Programming Help Compile Error,self.java +4,1328053702,3,Automagical dependency determination,self.java +32,1328024764,5,The Tragedy Of Checked Exceptions,tapestryjava.blogspot.com +23,1327980599,6,Looking for a Java Android Mentor,self.java +0,1327973986,9,Can someone please solve the Temperature equation or Help,i.imgur.com +1,1327970431,3,Java Interview Advice,self.java +0,1327967271,8,Need help with Java Lab Homework Please Help,self.java +0,1327964361,3,Relatively easy task,self.java +1,1327963899,3,JFrame JPanel help,self.java +0,1327953599,5,Question about constructors and methods,self.java +0,1327946824,5,Struts 2 example project needed,self.java +3,1327940061,3,JavaFX vs Java,self.java +7,1327938950,8,Best Java library for unconstrained non linear optimisation,self.java +0,1327918401,12,How do you remove or replace Integers in an Integer 2D ArrayList,self.java +0,1327906335,5,Help with parsing bidimensional arraylist,self.java +9,1327889588,3,Multithreaded chat program,self.java +6,1327880054,7,More Java EE 7 JSF 2 2,blogs.oracle.com +0,1327872632,2,ArrayList help,self.java +0,1327854307,34,Beginner here I wrote a program for class that takes a student s grades averages them and displays them in descending order Anything that I did that could be improved or made more efficient,self.java +0,1327853826,6,TIL In Memory Java DB HyperSQL,hsqldb.org +0,1327847555,9,Can someone please post a link for learning Java,self.java +0,1327800518,4,Trouble with Scanner class,self.java +0,1327811146,14,x post from r javahelp Finding all possible touching words in a 2D array,self.java +0,1327806448,11,Illegal start of expression with methods also no main detected wtf,self.java +2,1327751682,11,Web Application java php zend or java service with php zend,self.java +2,1327766030,6,Framework vs Libraries Whats the difference,self.java +0,1327764284,9,Is using break statement in a loop bad stlye,self.java +0,1327762133,4,Buttons in a method,self.java +1,1327738428,5,Question on generic method parameters,self.java +0,1327729481,5,Need help with adding text,self.java +7,1327698714,11,What is the convention for using _ and in variable names,self.java +5,1327620337,6,Updating JDK 6 to JDK 7,self.java +2,1327618171,11,Can anyone explain Serial Files for storing simple data in Java,self.java +3,1327612211,6,Full WebApplication JSF EJB JPA JAAS,uaihebert.com +9,1327562761,9,Can someone explain pass by value in Java please,self.java +35,1327522670,6,Question to senior level Java programmers,self.java +1,1327543875,12,Need some help with a dictionary method and timer in a GUI,self.java +7,1327541302,10,Clean code clean logs logging levels are there for you,nurkiewicz.blogspot.com +1,1327533193,8,Setting to gray scale using a picture class,self.java +3,1327525382,3,JUnit Testing DAOs,self.java +1,1327511627,9,Why is the main method the way it is,self.java +3,1327492773,18,Experimenting with Apache Karaf 2 2 5 Garbage Collection policies using IBM Java 6 on AIX 7 1,icodebythesea.blogspot.com +4,1327462629,16,Is it worth buying this book for 10 or is it too outdated Java 5 0,self.java +11,1327450574,10,I feel like I m skimming the surface of Java,self.java +2,1327441270,6,Help with a LongInt ADT implementation,self.java +0,1327435618,9,Can someone explain what i have to do here,self.java +0,1327433523,11,Hello I am new to programming And I need your help,self.java +6,1327368231,12,What s the most simple but still reliable resource for learning Java,self.java +1,1327387361,5,Hashmap 101 Build your own,whileonefork.blogspot.com +0,1327382331,5,Demonstrating when volatile is required,vanillajava.blogspot.com +0,1327375797,17,Can someone please explain the difference between binary insertion and selection sorting and how each one works,self.java +0,1327358312,6,Help needed with a small program,self.java +4,1327331381,7,Interview with Brian Goetz Language Architect Java,oracle.com +24,1327311670,13,Why ConcurrentHashMap is better than Hashtable and just as good as a HashMap,codercorp.com +0,1327298568,21,What is wrong here It only prints this data is written to a file 1 2 4 5 7 8 10,self.java +0,1327290042,8,In need of a crash course Java review,self.java +0,1327289909,5,Question regarding parsing delimiters etc,self.java +0,1327281109,3,Environment Crashing help,self.java +6,1327273122,10,What s new in JSF 2 2 Jan 2012 update,jdevelopment.nl +0,1327262318,7,Just a few questions from a noobie,self.java +0,1327252711,9,A Java based Tetris game i made in highschool,self.java +12,1327235165,8,Unsigned Integer Arithmetic API now in JDK 8,blogs.oracle.com +54,1327212493,9,10 Eclipse Navigation Shortcuts Every Java Programmer Should Know,rayfd.wordpress.com +2,1327196298,4,Proof of Concept Projects,self.java +6,1327164001,4,Regular server application JavaEE,self.java +4,1327168982,7,Dear redditors I need a small challenge,self.java +2,1327142728,7,I need information regarding Spring Struts Hibernate,self.java +1,1327156702,10,JDK 7 GC behavior To free or not to free,stefankrause.net +0,1327127681,6,How to use effectively Java Interfaces,java-only.com +0,1327120926,5,What is peoples recommended IDE,self.java +0,1327095639,8,Trying to create config file for java gui,self.java +2,1327080973,10,What is on the internet relay chat for this subreddit,self.java +3,1327067781,6,Why String is immutable in Java,javarevisited.blogspot.com +3,1327030884,11,Programs to work on in order to sharpen my java skills,self.java +5,1327018938,8,Hotspot Performance Techniques Optimizing your code for Hotspot,wikis.oracle.com +1,1327015399,10,Considering taking a Java class with almost 0 programming exp,self.java +0,1326990485,9,Last step here I pray What is this Class,self.java +2,1326984487,7,Creating Your First Spring Web MVC Application,java-tv.com +54,1326982122,9,Java 7 How to write really fast Java code,niklasschlimm.blogspot.com +0,1326980084,8,How do I run a program with Eclipse,self.java +19,1326973334,8,Open Source Java is Stronger than Ever Infographic,siliconangle.com +2,1326969334,4,JavaOne 2011 Rockstars announced,t.co +2,1326876085,4,Help needed work offer,self.java +10,1326835962,7,Building a project that uses dll s,self.java +0,1326834008,9,Looking to write a easy calculator program in java,self.java +10,1326784748,13,I m looking into starting 3D for games what tool should I use,self.java +0,1326764309,2,Java help,self.java +6,1326753614,8,Easily disable sorting in PrimeFaces 3 s DataTable,jdevelopment.nl +32,1326726790,7,Why ConcurrentHashMap does not support null values,anshuiitk.blogspot.com +2,1326723988,6,InfoQ Oracle and the Java Ecosystem,infoq.com +26,1326650291,5,Functional Thinking for Java Developers,infoq.com +11,1326623930,9,Garbage collection with Automatic Resource Management in Java 7,javawithswaranga.blogspot.com +0,1326618044,8,Anyone wanna help solve my possible math issue,self.java +18,1326622888,9,Using a memory mapped file for a huge matrix,vanillajava.blogspot.com +6,1326606426,17,1 week 2 days into learning java Am I way off or just a return type away,self.java +0,1326601760,3,String cleanse help,self.java +0,1326569197,8,Program not working Could not find main class,self.java +3,1326562698,8,Java s Generic Erasure causing trouble bugfix help,self.java +8,1326535199,5,Unit testing a complex application,self.java +30,1326558109,7,When to use volatile keyword in Java,khangaonkar.blogspot.com +11,1326489017,3,Interactive Code Explorer,self.java +7,1326473014,6,Project coin JDK7 in Code Example,niklasschlimm.blogspot.com +14,1326471607,8,Morphia a type safe java library for MongoDB,code.google.com +37,1326394394,13,Java program that s smaller then the the paragraph it prints out help,self.java +3,1326404723,5,Integrating Spring amp JavaServer Faces,coderphil.wordpress.com +1,1326402482,7,Java Netbeans Help Can t hide fileChooser,self.java +12,1326375822,7,Atomicity Visibility and Ordering in Java Concurrency,jeremymanson.blogspot.com +1,1326399007,5,Building stairs with a loop,self.java +45,1326381284,8,A neater way to use reflection in Java,java.dzone.com +6,1326367873,4,Help avoiding Method Chaining,self.java +1,1326315292,3,Play Framework Thoughts,leftnode.com +26,1326309043,4,Excellent introduction to Hadoop,youtube.com +0,1326307508,18,Now that Netbeans 7 1 has Killed Java Desktop Applications with Swing what s the best Swing IDE,netbeans.org +1,1326224122,5,Excelsior JET yea or nay,self.java +2,1326217802,3,System currentTimeMillis accuracy,self.java +7,1326199051,5,Model View Controller semantics question,self.java +7,1326192120,10,Which Java Games Library would you recommend for my Project,self.java +7,1326145480,11,Would anyone be interested in a Java Swing sub reddit community,self.java +13,1326143407,9,Any fun and clear programs to start learning Java,self.java +6,1326133235,3,Directed graph tool,self.java +5,1326127089,6,Check page header status with Java,self.java +0,1326031601,12,JAR has no classpath App dies This is beyond me like seriously,self.java +41,1325978738,16,Any good programming tips for which may seem obvious to you but all developers should know,self.java +4,1325999166,4,Eclipse project opening question,self.java +1,1325944278,6,Apache Struts update closes critical holes,h-online.com +15,1325939173,3,Java best practices,jdevelopment.nl +6,1325928517,8,Skype Bot for Fun and Profit in Java,dow.ngra.de +2,1325924515,2,Embedded Java,beginwithjava.blogspot.com +7,1325913265,18,Godamn NATs Ive been trying to listen for UDP behind a NAT Router How do I do that,self.java +6,1325910802,10,Catching Exceptions and doing nothing with them is this acceptable,self.java +0,1325847546,6,XPathGen create XPaths for DOM Nodes,adrianmouat.com +14,1325841595,17,After 5 rebuilds over 20 hours effort I have a problem dragging and dropping in a JTree,self.java +14,1325841595,17,After 5 rebuilds over 20 hours effort I have a problem dragging and dropping in a JTree,self.java +5,1325808992,6,Passing action methods into Facelets tags,jdevelopment.nl +29,1325779719,4,NetBeans 7 1 Released,netbeans.org +22,1325728810,10,Best way to implement password authentication in a Java program,self.java +8,1325698485,30,What is the most straightforward method to take a human readable date string such as Wednesday Janurary 4 2012 and take it to an iso or unix formatted string int,self.java +9,1325693900,5,Java amp 5 1 Sound,self.java +12,1325687426,6,PrimeFaces 3 0 is Unleashed JSF,blog.primefaces.org +1,1325629771,6,Gettings started with Java XML Eclipse,self.java +17,1325627240,9,Please xplain Eclipse and Git like I was 5,self.java +0,1325585614,17,Caching files may significantly increase application performance This article tells how to cache a file in Java,cacheonix.com +0,1325579085,13,I m pretty sure there are better uses for my limited Java knowledge,reddit.com +2,1325541116,14,Can you help me with this horribly repetitive code and make compressed and elegant,pastebin.com +16,1325474760,10,Where can I learn about advanced usage of Java Annotations,self.java +0,1325459582,3,Mobileandembedded Java net,java.net +0,1325439894,32,An American Lady teacher Mary Herberth explains all the essential concepts of Java in a single class class as in both Java class and school class in an amazing and naughty way,theladyteacher.blogspot.com +11,1325357602,5,USB Accelerometer with Java API,self.java +19,1325276986,14,2012 Java Predictions A bright future for Java and its cohorts mostly Martijn Verburg,jaxenter.com +0,1325266050,6,Core Java Interview Question Part 3,de-tutorials.com +28,1325234798,11,Would there be any interest in a reddit java IRC channel,self.java +0,1325250885,25,I know this isn t really the right place but JavaHelp doesn t get much attention so Correct way to go about this xpost JavaHelp,reddit.com +7,1325242242,3,Your favorite IDE,self.java +7,1325217985,3,Classes vs Enums,self.java +5,1325202161,7,Help needed on making a Java program,self.java +4,1325188277,9,Look what 2011 washed in The return of Java,sdtimes.com +4,1325174495,10,Concurrent Caching at Google video in memory caching Guava MapMaker,infoq.com +1,1325101553,3,Static help please,self.java +0,1325077917,3,Need a job,self.java +1,1325030226,4,sometimes I hate java,quickmeme.com +1,1325001357,9,Help with a random guessing game More details below,snipt.org +0,1324979240,4,Is Oracle Killing Java,e27.sg +2,1324963196,3,Basic netcode help,self.java +39,1324852707,12,Everything I Ever Learned about JVM Performance Tuning At Twitter presentation video,infoq.com +2,1324852374,3,Java Screen Recorder,self.java +15,1324775905,10,Google Guava 11 0 with Murmur3 and checked math functions,code.google.com +0,1324772093,9,Using xsd s and xjc to automatically generate domain,self.java +2,1324746788,15,Noob Drag and drop Working But I m uncomfortable with the design Can you help,self.java +13,1324708583,2,Programming Challenges,cstutoringcenter.com +1,1324685471,5,Help with initializing a window,self.java +0,1324675120,4,HELP lt NOOB QUESTION,self.java +4,1324662027,9,Best resource to learn Swing from the ground up,self.java +8,1324612048,11,Where can I learn JAVA and OOP like i am 5,self.java +3,1324588200,12,I m a C expert who needs to do some Java development,self.java +2,1324580045,12,Preventing a compiler error with a class not implementing all interface methods,self.java +7,1324563939,11,java lang OutOfMemoryError Java heap space what is this error from,self.java +0,1324550061,5,SVN Trunk Branch and Tags,self.java +1,1324542086,8,JDBC and MS SQL 2008 JRE vs JDK,self.java +64,1324506543,12,Eclipse users what are some eclipse tricks which speed up your development,self.java +2,1324501555,9,Automatic to Object conversion in JSF selectOneMenu amp Co,jdevelopment.nl +2,1324494074,8,Crosswalk resolve the Web with Java and Factual,blog.factual.com +1,1324480939,18,Giving a presentation on Source control to a Java Dev Team tommorrow Anything you think I should Include,self.java +33,1324472139,5,Spring Framework moves to GitHub,blog.springsource.org +1,1324424344,3,C or Java,self.java +0,1324438230,2,Any Ideas,self.java +3,1324424592,6,Getting started in developing in java,self.java +0,1324421812,12,Getting an illegal start of expression error that I don t understand,self.java +0,1324413987,8,How do I write a program in Java,self.java +0,1324395043,13,How do I make the printf stay on the same line when formatting,i.imgur.com +2,1324321712,3,Help For Ideas,self.java +2,1324318300,8,Seeking advice on breaking into Java EE industry,self.java +24,1324280322,9,Modular Java IRC Bot My first Open Source project,self.java +5,1324241970,14,Whats the worst but very simple mistake you ve ever made while writing Java,self.java +16,1324231332,4,Good books on Java,self.java +8,1324166976,5,I need designs for interfaces,self.java +0,1324151894,5,Need help writing a program,self.java +30,1324065717,6,JRE 6 Update 30 now available,java.com +4,1324061631,10,Java Virtual Machine Launcher Could not find the main class,self.java +14,1324052428,12,Part 2 of the Spring to Java EE Migration tutorial is up,oracle.com +0,1324040795,8,Drools Developers get PAID MORE as demand QUADRUPLES,blog.athico.com +0,1324024703,7,No more Oracle Java in Linux Distros,self.java +17,1323960717,7,Java IDE plugins What do you use,self.java +28,1323902484,15,How I feel about Java sometimes don t get me wrong I DO love it,memegenerator.net +0,1323910714,15,A brief introduction to Apache Karaf Archives Kars Karaf is a Java OSGi runtime environment,icodebythesea.blogspot.com +1,1323862676,10,Todo application Spring and Backbone js with no xml configuration,github.com +16,1323845740,20,So which IDE is the best and why Im a beginner and only know of a few I prefer Eclipse,self.java +6,1323844897,4,issue with array printing,self.java +1,1323839944,7,Need help with a random line generator,self.java +2,1323830518,6,Java specific job boards Any recommendations,self.java +0,1323830111,6,Im a newb help with button,self.java +7,1323820059,6,Is it ok to do this,self.java +11,1323817323,11,I think my teacher will like this How about you guys,i.imgur.com +16,1323794465,6,Spring Framework 3 1 goes GA,blog.springsource.org +14,1323772892,4,Java Life Rap song,youtube.com +1,1323678437,6,An Actor framework for Java Concurrency,techcrux.blogspot.com +143,1323644782,4,Stacktrace or GTFO PIC,dl.dropbox.com +0,1323628758,7,Can someone explain the difference between and,self.java +17,1323617361,12,Clone this GitHub repository and follow instructions to ask for Java help,github.com +34,1323571483,6,Have you ever laughed at code,self.java +0,1323550632,12,Fluent VB6 Program writer here wanting to get into writing android apps,self.java +26,1323549578,4,Java Swing simple guide,zetcode.com +4,1323545714,13,What steps should I take to independently learn more and more about programming,self.java +18,1323508517,4,Careful with that PrintWriter,squirrel.pl +0,1323506257,8,Update Java to thwart active cross platform exploit,reviews.cnet.com +1,1323505900,11,Implementing the Factorial Function Using Java and Guava Kerflyn s Blog,kerflyn.wordpress.com +0,1323471393,3,Compile error help,self.java +0,1323453374,8,Bad code plagues business applications especially Java ones,arstechnica.com +0,1323451247,7,C wins developers but Java still reigns,infoworld.com +0,1323449977,11,Java apps have most flaws Cobol apps the least study finds,computerworld.com +0,1323442832,10,Simplifying the Data Access Layer with Spring and Java Generics,javaworld.com +44,1323442164,12,Oracle Java patent at stake in Android case rejected by US authorities,computerworlduk.com +0,1323406229,2,Freelance work,self.java +0,1323406229,2,Freelance work,self.java +1,1323398467,4,Good SMTP Server rentals,self.java +1,1323387236,9,Drools planners Is there a step by step tutorial,self.java +0,1323370795,4,Video poker in java,self.java +52,1323367889,5,Nice lesser known Java libraries,self.java +2,1323349038,8,How to reference the object you ve executed,self.java +10,1323342099,2,JUnit Tutorial,vogella.de +4,1323336050,10,JDBC Interview Questions amp Answers for Java Developers Part 1,a2ztechguide.com +0,1323268433,5,Implementing a HashMap of ArrayLists,self.java +14,1323231260,19,This is how I feel whenever I m trying to read Enterprise Java code that has stuff like ObjectFactoryCreatingFactoryBean,youtube.com +0,1323230052,3,Java Chat Client,self.java +7,1323210572,11,Understanding Google App Engine GAE Java API Part 1 Landscape Overview,cloudspring.com +4,1323206615,8,Efficient Java Matrix Library EJML 0 18 Released,self.java +2,1323204727,16,Anyone have any thoughts on my final project outline I m looking for some honest feedback,self.java +0,1323195215,4,I m going loopy,self.java +6,1323194681,19,Is it possible to break up a grid into multiple panels of different sizes Better explanations w pictures inside,self.java +0,1323148230,14,Hey r java How do I output individual words from a string of text,self.java +5,1323137926,4,Make my own compiler,self.java +1,1323127174,6,Issue Understanding Multidimensional Arrays in Java,self.java +3,1323118782,10,How do you clear GUI elements from a java applet,self.java +1,1323118736,9,Big surprise on netbeans wiki about look and feel,wiki.netbeans.org +23,1323112375,5,Tips on Java job search,self.java +2,1323111029,6,How to make java embedded devices,self.java +22,1323101765,6,Java decompiler anything newer than Jad,self.java +12,1323065544,6,Java tops for hackers warns Microsoft,theregister.co.uk +1,1323061139,17,What are some examples of code that made you feel you were the God of java code,self.java +1,1323053442,6,Typecasting problem to sort from LinkedList,self.java +1,1323007916,8,How to Stop a loop with a button,self.java +0,1323005472,6,If statement also returning else code,self.java +1,1322972470,5,Float variables followed by F,self.java +0,1322926869,23,Very simple but very fun to play How can I make it so you can play again without having to click run again,imgur.com +0,1322941947,9,can someone help me with a do while loop,self.java +5,1322906020,13,Apache Shiro Java security framework that performs authentication authorization cryptography and session management,shiro.apache.org +1,1322905725,4,Announcing Tapestry 5 3,tapestry.apache.org +5,1322879356,20,Eclipse Java problem How do I include a file I ve created with a Serializable FileOutputStream in a Jar file,self.java +6,1322867214,15,Why won t the text in the console appear in the JFrame new java person,imgur.com +3,1322844622,4,The Modern Java Ecosystem,arantaday.com +0,1322803678,10,New and learning java instantiating a variable inside a loop,self.java +0,1322796490,6,Binary Search Tree help for assignment,self.java +10,1322781258,2,Understanding Interfaces,self.java +1,1322764440,8,Connecting 2 clients over the internet SPI firewall,self.java +0,1322728212,2,Circular movement,self.java +14,1322678503,9,Yammer switches from Scala to Java explains why long,gist.github.com +1,1322679107,4,High school java help,self.java +0,1322676326,2,disgruntled student,self.java +30,1322668180,5,Where do you guys hide,self.java +17,1322648718,9,ZeroTurnaround releases YAZLJ Yet Another Zip Library for Java,zeroturnaround.com +0,1322611255,4,Need more Java help,self.java +3,1322591947,13,This class is a nice kick start for working with XML and XPath,self.java +2,1322584591,6,Hot tips on using eclipse effectively,javagyan.com +2,1322582233,11,StringBuffer stops working half way through What am I doing wrong,self.java +19,1322579090,9,tutorial for Java 7 s java util concurrent phaser,javaforu.blogspot.com +2,1322577555,7,Ending a robot program with a keystroke,self.java +0,1322513013,7,Need some help with a Uni project,self.java +0,1322504646,6,Card game stops working mid program,self.java +1,1322493475,5,10 years eclipse at JugMk,blog.mitemitreski.com +1,1322492079,4,Troubles with transparent icons,self.java +1,1322469640,4,We still like Spring,cakesolutions.net +10,1322428518,7,can you use html in a JTextArea,self.java +10,1322424946,17,How to Properly Transport a Symmetric Key Using TCP Between a Simple Server and Client in Java,self.java +0,1322363852,5,Java Homework Help File objects,self.java +0,1322358221,5,Converting from integer to currency,self.java +0,1322350499,6,Help with assignment intro to java,self.java +0,1322286516,14,Can anyone help me figure outs whats wrong with my java code lwjgl slick,lwjgl.org +0,1322283156,6,Going from Command line to GUI,self.java +0,1322222240,10,Gurus of r java I need some String Array help,self.java +2,1322188217,5,ActionEvent question for GUI programs,self.java +3,1322170639,6,Java Web Start Bugs Offline Edition,squirrel.pl +7,1322156972,12,A java apprentice trying to migrate from System out println to swing,self.java +25,1322124534,3,Java 7 updates,javagyan.com +3,1322076984,13,I created a program to output Pascals Triangle in Java Some help please,self.java +7,1322093119,6,How extensive and useful is BlueJ,self.java +6,1322089497,3,Java Variable Viewer,self.java +6,1322089147,6,Am I on the right track,self.java +1,1322087095,8,Ok guys im stumped What do I do,self.java +12,1322076811,12,Where is the cheapest best place to host a tomcat java site,self.java +1,1322068236,5,Simple Java GUI Calculator WIP,gist.github.com +1,1322016843,4,First time coder error,self.java +7,1322016354,12,If you could learn anything relating to Java what would it be,self.java +0,1322000695,7,Two questions random numbers and image pieces,self.java +0,1321949678,6,Help Creating a random number chooser,self.java +2,1321928006,28,I can choose to learn what I want in my Java Programming Class and I want to focus on exploitation Can you point me in the right direction,self.java +2,1321925534,10,Either I m nuts or LiveLab is explanation in comments,pastebin.com +0,1321925520,6,Little help with a homework project,self.java +2,1321912717,14,Google Chrome keeps wanting me to update Java even though i have updated it,self.java +1,1321903630,12,Help javax Swing Removing a g2d drawString after passing a certain point,self.java +36,1321889051,6,10 Tips for Proper Application Logging,javacodegeeks.com +0,1321884646,9,Newbie Getting Information from a webpage to a Class,self.java +4,1321829804,11,Red Hat Let OpenShift cloud compile your Java apps The Register,theregister.co.uk +3,1321825440,13,WWW World Wide Wait A Performance Comparison of Java Web Frameworks Devoxx 2011,prezi.com +1,1321823260,6,Help 2D RPG using javax Swing,self.java +1,1321762019,6,Looking for a web crawler library,self.java +1,1321680437,7,What s your layout manager of choice,self.java +0,1321673430,8,Can anyone help me with a simple query,self.java +1,1321628613,6,URGENT Need help with class diagrams,self.java +11,1321640592,8,Can not download java is it just me,i.imgur.com +2,1321638198,21,SendGrid cloud based email and Websolr Apache Solr in the cloud now available on the CloudBees Platform as a Service ecosystem,cloudbees.com +0,1321633617,2,Netbeans Question,self.java +0,1321595362,5,Any recommendations for jMonkey tutorials,self.java +3,1321587884,8,Wheezy s openjdk is treating files as folders,self.java +3,1321587884,8,Wheezy s openjdk is treating files as folders,self.java +0,1321584292,1,SI,gamershell.com +20,1321558518,29,Can you guys give an example of code you worked on that was huge and was reduced to either a few lines of code or single line of code,self.java +0,1321557690,5,I need some help please,self.java +3,1321548670,7,Grid Bag Layout has got me stumped,self.java +8,1321542350,15,As someone with a PHP background what should I be aware of when learning Java,self.java +0,1321497247,8,Can someone please help me figure this out,self.java +6,1321476099,8,Greplin Opensources Java Library for Managing Distributed Systems,tech.blog.greplin.com +4,1321458780,17,So I need to make a crossword puzzle but I m getting hung up on finding overlaps,self.java +0,1321455529,6,I am so lost on java,self.java +0,1321400758,3,Maintaining Information hiding,self.java +1,1321389193,3,Understanding MediaTracker class,self.java +1,1321387656,9,Can someone explain the output of this program please,gist.github.com +4,1321385434,16,A bit of help Trying to move a 2D character with the keyboard Just starting out,self.java +0,1321383517,5,Why Java isnt for startups,tonigemayel.com +4,1321371363,3,Robot class help,self.java +7,1321354234,7,Need help reading and casting Serializable objects,self.java +1,1321303658,12,NOW HIRING Java jobs in Utah with relocation assistance salary to 120K,jobsbyerin.com +0,1321301884,9,The Latest Edition of Java magazine is available online,oraclejavamagazine-digital.com +2,1321237777,12,Having an issue with JFrames I could just be misunderstanding it also,self.java +0,1321198534,4,Converting strings to KeyCodes,self.java +0,1321148911,5,My Accomplishment for the Weekend,pastebin.com +1,1321146306,6,Program to out put key strokes,self.java +14,1321124502,5,Java Decompiler in Eclipse JadClipse,wp.me +0,1321103389,13,askjava does this for loop work as a timed repeating block am curious,self.java +2,1321049406,7,Would anyone be interested in making apps,self.java +0,1321045221,8,Noob Need to convert for into if loop,self.java +8,1321025462,16,Need some critiques for this Java MP3 SPI code I wrote X Post from r learnprogramming,self.java +2,1321024545,6,Need help with user defined ArrayList,self.java +19,1321024117,6,How many monitors do you use,self.java +0,1321022332,5,Help creating a Budget class,self.java +0,1320990770,10,Why does this return 1 4 I don t understand,self.java +0,1321016547,10,Struggling to view my project as a OO programming view,self.java +10,1321009476,4,Reporting tools for Java,self.java +2,1320990820,5,Another why question about projects,self.java +0,1320989773,12,What is the best way to determine what uses Size and length,self.java +2,1320948716,6,Private vs public and get methods,self.java +2,1320972100,7,I need really entry level java help,self.java +4,1320930569,9,Questions about Swing specifically threads and updating the EDT,self.java +6,1320929801,4,Exporting A Jar file,self.java +2,1320927594,9,Anyone know about the Java job market in DC,self.java +2,1320888127,4,Java Heap Memory Analyzer,wp.me +2,1320887820,4,JDK7 Mac OSX preview,jdk7.java.net +1,1320883123,8,I need some help with Combo box arrays,self.java +2,1320855889,2,JTextField Problem,self.java +58,1320804146,16,Oracle breaks FTP in Java 7 on Windows and thinks it s a low priority problem,enterprisedt.com +1,1320800642,4,Jtextfield and Jbutton question,self.java +0,1320788973,4,Class and object help,self.java +6,1320700237,5,JAR issue Really need help,self.java +1,1320677299,9,Introduction to Functional Programming using Java Poker Game Kata,monospacedmonologues.com +11,1320660457,7,Ten Hints for Testing Eclipse Plug ins,sourceforge.net +1,1320596272,4,Unity3d cool recent updates,unity3d.com +1,1320589991,2,JAVAMAIL ERROR,self.java +0,1320537133,21,Noob JAVA question I just started a programming course and need help with this but can t find anything on Google,self.java +8,1320515614,5,How do I debug tomcat,self.java +10,1320489215,20,I wrote an engine for finding database records representing the same entity and the customer let me open source it,code.google.com +43,1320462941,9,Another language for the JVM this time from Eclipse,eclipse.org +1,1320441892,6,The Java Life Rap Music Video,youtube.com +3,1320426811,7,Bunch of arrays vs bunch of objects,self.java +26,1320426417,3,Goodbye Apache Harmony,markmail.org +0,1320368672,8,What software should I use for Java scripting,self.java +99,1320331671,2,Thanks Eclipse,i.imgur.com +5,1320328799,42,hey r Java nice meeting you I got my first fulltime job and I m to work with Oracle ADF Do you know any great tutorials to learn to use the framework I ve already worked with JBoss and Java Server Faces,self.java +2,1320326687,13,Having trouble with linking up two methods and fields sorry if badly formatted,self.java +2,1320307599,6,Eclipse Celebrates 10 Years of Innovation,eclipse.org +5,1320277081,4,Problem with corrupt java,self.java +2,1320239053,2,API Specifications,oracle.com +3,1320234586,17,Apache Karaf Child Instances what are they and why should I use them Java OSGi runtime instances,icodebythesea.blogspot.com +0,1320214249,5,I need help with arrays,self.java +2,1320202688,19,Hey r java I m a beginner with Java and I need help developing a dashboard application in J2EE,self.java +6,1320198535,5,Debugging Java Deadlocks with VisualVM,thebinaryidiot.com +13,1320184404,16,Node js the exciting web development platform from a Java programmer point of view Java net,weblogs.java.net +2,1320177885,4,OpenCSV and Netbeans help,self.java +5,1320177011,16,How do I allow interaction with a help window while an otherwise modal dialog is open,self.java +6,1320166441,4,Test Driven Development Resources,self.java +14,1320162320,7,Rethinking Best Practices with Java EE 6,java-tv.com +0,1320137551,2,implements Serializable,self.java +0,1320117721,8,reading a shared mailbox using javamail via imap,self.java +5,1320113717,5,Job interview for Java JSP,self.java +3,1320094663,6,Help with synchronized keyword and threads,self.java +0,1320048638,7,Turn strenuous Java homework into pure epicness,self.java +3,1319988827,12,Portal Servers and Portlets How does a user know about applications available,self.java +3,1319918296,13,Software Tutorials Correctly posting blog posts to a Blogger blog using the BloggerAPI,tutorials.davidherron.com +0,1319913066,3,Help using bouncycastle,self.java +1,1319869836,7,Is the wording on this question confusing,rsbuddy.com +1,1319846977,26,Am I using the BigDecimal class correctly I could really use someone to double check my code to make sure I m not making rookie mistakes,self.java +19,1319814977,17,Could someone tell me why the method readInt is causing a 400 ms latency on my server,self.java +5,1319809961,7,I ve implemented new Java web framework,self.java +3,1319792397,9,XML Trace for Unit Tests to Weblogic server logs,self.java +1,1319764448,12,Assigning an element in an array an int value and a string,self.java +31,1319742345,19,Simple Aparapi demo running on an Nvidia GTX560m system It is almost 8x faster than a core i7 CPU,i.imgur.com +4,1319735635,14,Unreachable code after a double for loop Not sure what s causing the break,self.java +9,1319733778,6,Can reddit settle this for me,self.java +3,1319731844,11,XWiki SAS offers free professional hosting for JUGs around the world,xwiki.com +7,1319720563,6,Java Discrete Event Simulation Framework advice,self.java +0,1319716035,17,How do I get a job Explain like I don t know anything or give an algorithm,self.java +17,1319671993,9,Java 7 update to fix problems with Apache Lucene,h-online.com +1,1319663158,9,Next steps in learning Java need lessons AND assignments,self.java +1,1319661147,13,What needs to be done for this code to be more Java esque,self.java +0,1319644613,5,Which is faster and why,self.java +0,1319644613,5,Which is faster and why,self.java +10,1319635546,4,Using sound with Java,self.java +0,1319576152,6,Creating A Simple Console Based Menu,pastebin.com +2,1319547799,9,Practical Test Doubles Adding Stubs to TestLink Java API,kinoshita.eti.br +4,1319538628,5,Java Snake Program JUnit Testing,self.java +0,1319513288,7,I can t solve the damn minimum,self.java +1,1319494396,40,Ask rJava I apologize if this is the wrong place total noob I m setting up a glassfish server on Scientific Linux in vmware after increasing available memory to 4Gb I get Too small initial heap for new size specified,self.java +1,1319490078,9,Very new to Java I have a simple problem,self.java +1,1319476775,8,Why is a double preferred over a float,self.java +2,1319474303,4,Elastic Memory for Java,examville.com +0,1319468396,3,Java job Interview,self.java +1,1319412177,5,Second question today Path finder,self.java +3,1319398488,7,Good program to draw pictures with transparency,self.java +26,1319315107,14,Getting into Java I would love it if you answered some of my questions,self.java +2,1319324993,6,The Current State of Java Monitoring,gladwell.me +9,1319280483,8,5 Reasons to use Guava crosspost from proggit,insightfullogic.com +2,1319240888,7,New at Java still hit another roadblock,self.java +7,1319240075,10,Provenance create a Maven dependencies list for unknown jar files,github.com +0,1319234501,2,Java Projects,self.java +6,1319233203,10,Little helpers in java util Objects for equals and hashCode,download.oracle.com +2,1319211413,10,Need help selecting a TCP IP library crosspost r androiddev,self.java +6,1319191633,14,Am I the only one who pronounces JUnit like 50 cent does G Unit,self.java +2,1319172505,7,programmer looking for an open source project,self.java +8,1319143360,6,Understanding Java RMI Internals Developer com,developer.com +25,1319142340,9,The Definitive Set of HotSpot Performance Command line Options,marxsoftware.blogspot.com +0,1319140571,8,Someone to walk me through a homework assignment,self.java +0,1319114414,4,Any suggestions for me,self.java +5,1319109681,24,What s new in Apache Karaf 2 2 4 A look at some of the new features and enhancements to the OSGi runtime environment,blog.nanthrax.net +7,1319089999,5,Using PowerMock to Mock Constructors,captaindebug.com +5,1319066659,14,Future of mobile doesn t include Java See author s commentary toward the bottom,theglobeandmail.com +2,1319065955,4,JcomboBox with action listener,self.java +3,1319061940,13,Possible to make a jar launcher for a program that is an exe,self.java +19,1319057683,6,Creating a GUI for your program,self.java +1,1319049315,15,Stack Overflow Probably the best place in the verse to get your Java questions answered,stackoverflow.com +5,1319047545,3,Dynamic Programming Question,self.java +1,1319046561,6,Apache TomEE Certified Web Profile Compatible,infoq.com +0,1319038853,19,more help with simple java programs thanks in advance for any help this subreddit is a life time saver,self.java +2,1319036274,11,Can someone explain the concept of dynamic programming for this question,algorithmist.com +15,1319015492,3,AKKA concurrency framework,akka.io +0,1319015396,8,Programming Without a Call Stack Event driven Architectures,eaipatterns.com +0,1318997867,6,Need help with Android App development,self.java +0,1318992251,15,How do you sort an array of a object using one of the Objects fields,self.java +5,1318975805,17,Savoir interview by O Reilly Media on SOA and Apache Services Great chat on Enterprise Java projects,savoirtech.com +1,1318965122,6,Need help with Simple Java Assignment,self.java +5,1318943842,11,Suggestions for or experience with a very basic distributed computing framework,self.java +2,1318916722,4,Client Server program problem,self.java +0,1318908395,10,Just started learning Java about 30 mins ago need help,self.java +24,1318886820,11,Oracle Java SE Critical Patch Update Pre Release Announcement October 2011,oracle.com +3,1318881052,8,Java Does Not Need Closures Not at All,squirrel.pl +1,1318846739,13,Open datatypes structures for storing arrays of data and coordinates on a grid,self.java +0,1318843651,6,Comparing the structure of tree s,self.java +3,1318821986,8,nextInt not recognizing integers in a text file,self.java +3,1318821667,8,GTUG Using the Google Collections Library for Java,youtube.com +5,1318790305,7,Determining contents of a package at runtime,self.java +10,1318815101,7,Java Remote Desktop Administration Source and tutorials,codeproject.com +21,1318813433,6,Programmer s Notebook Uncaught Exception Handlers,stuffthathappens.com +3,1318812416,30,This tutorial explains Eclipse JFace Data Binding which can be used to synchronize data between different objects This tutorial is based on Eclipse 3 7 Indigo and Java 1 6,vogella.de +6,1318803694,11,Apache Karaf 2 2 4 Released A Java OSGi runtime environment,karaf.apache.org +2,1318741297,13,Why is JOptionPane nice wrt using a single thread but ProgressMonitor isn t,self.java +16,1318705518,11,Moderator and community meta chat for r java 15 10 2011,self.java +4,1318649915,3,Problem with arrays,self.java +0,1318642386,11,Anyone willing to help with a beginner question from my assignment,self.java +0,1318640072,4,Trouble with static references,self.java +3,1318617411,9,Serialization of Java built ins Will versioning kill us,self.java +16,1318606447,9,For those who don t know about this still,self.java +0,1318605407,8,How would I solve for x in java,self.java +31,1318599312,7,Real Time Programming Collaboration With Eclipse WOW,vimeo.com +3,1318588763,11,Using Java for HPC Optimizing BLAS style matrix operations in Java,opengamma.com +4,1318565781,5,Confused about compiling with java,self.java +7,1318542710,17,after many years of Java I d like to try something new what should I look at,self.java +2,1318524520,14,i really need a tutor but i have no time pennies for pay problem,self.java +6,1318524202,5,java vs perl at wikivs,wikivs.com +3,1318485081,5,Drawing an image to Jframe,self.java +10,1318477014,4,Java resources for beginners,self.java +0,1318470754,4,Help Creating Generic Array,self.java +1,1318467097,9,Minimalist CPU Any cheap ASIC IC flashed to JeOS,self.java +2,1318465169,12,Using Java to load data from an XML file into an object,self.java +13,1318449261,6,A question about a java game,self.java +7,1318427326,15,Just found this little hidden gem inside the upcoming commons mail 1 3 release MimeMessageParser,svn.apache.org +17,1318387593,5,How To Mitigate Slow Talkers,self.java +19,1318353972,5,Programming Task Roman Numeral Converter,self.java +4,1318345314,13,Ever wanted to send emails to Tomcat and receive them in a Servlet,raysforge.net +5,1318337661,9,Jpropel light a Java implementation of C s LINQ,github.com +36,1318325086,12,Would anyone else be interested in an r Java programming task puzzle,self.java +76,1318299661,6,Should we just create r javahomework,self.java +3,1318287523,7,Representing a Grid for a Board Game,self.java +0,1318273955,10,Is it advisable to learn Java through the Slick library,self.java +8,1318247761,6,Custom text file format in java,self.java +2,1318210686,7,Putting a button anywhere on the screen,self.java +1,1318239108,14,Rock solid Java Cloud Platform Auto scales Easy to deploy Runs ANY Java app,jelastic.com +3,1318237187,4,jar as Windows Serivce,self.java +4,1318214239,3,in for java,self.java +4,1318199688,13,Can somebody explain me why my MouseClick method doesn t work Code inside,self.java +0,1318185549,10,How can I Guice ify Jersey in a unit test,stackoverflow.com +3,1318108961,4,Weird Java socket problem,self.java +3,1318134229,7,Help with creating and executing jar files,self.java +4,1318114196,5,Streams and char data type,self.java +1,1318108671,11,Anyone Have a 2d Side Scolling Engine They Want to Share,self.java +0,1318049772,5,Need help structuring a method,self.java +0,1317999429,11,I m having a problem adding a box to the frame,self.java +0,1317999429,11,I m having a problem adding a box to the frame,self.java +0,1317990392,4,Writing XML with Java,self.java +30,1317955188,12,Time zone database used by Java shut down due to IP litigation,blog.joda.org +44,1317931756,14,I thought this was cool How to dynamically write compile and execute Java classes,stackoverflow.com +4,1317880839,4,4 Java clouds review,infoworld.com +22,1317853751,10,Oracle s Plans for Java Unveiled at JavaOne R Java,adtmag.com +3,1317835227,16,Holy Crap Writing to files in a actual process must be a pain in the ass,self.java +9,1317759439,5,Oracle Joins the NoSQL Club,infoq.com +5,1317779604,15,Why should you not initialize an ArrayList in the field and not in the constructor,self.java +0,1317758500,20,new programmer in need of help my algrebra skills are rusty i can t wrap my brain around this problem,self.java +5,1317747063,10,Looking for a good tutorial or guidance with Java Sound,self.java +10,1317737728,7,What s new in JSF 2 2,jdevelopment.nl +0,1317723341,18,Just started at British Gas as a IS apprentice Required to learn Java Any sites you can reccomend,self.java +8,1317689855,5,Help with high quality Java,self.java +3,1317643720,8,Potential resource leaks now flagged in Eclipse JDT,thecoderlounge.blogspot.com +8,1317575700,7,Need help with solitaire encryption java project,self.java +0,1317521813,5,Help with basic Blackjack assignment,self.java +6,1317508717,8,Need help with java sql selection using dates,self.java +4,1317480289,6,Writing to file max 2 MB,self.java +0,1317442281,8,I need help with a basic java program,self.java +0,1317426229,12,Why does my Eclipse show no error when I make a mistake,i.imgur.com +1,1317401287,5,Error 1723 can anyone help,self.java +5,1317346069,15,Hey I am wanting to learn java as my first programming language for developing games,self.java +3,1317313847,3,Java threads question,self.java +40,1317342214,11,Don t use Java in a nuclear facility see Section 3,java.com +3,1317336143,8,My computer needs to go back to school,self.java +7,1317320813,15,Browser developers are trying to mitigate a BEAST vulnerability the Java plugin can t handle,h-online.com +1,1317289063,2,Java Applets,self.java +18,1317246103,3,Guava 10 Released,code.google.com +2,1317243803,8,Java Dev Contract or Employee pros cons preferences,self.java +0,1317236068,11,A bit of n00b help on an open source Java crawler,self.java +1,1317222992,9,Anyone on reddit frequently use 3G graphics gaming probably,self.java +1,1317210780,5,10 Fresh jQuery Image Slides,webdesignfact.com +10,1317153767,9,In Relation To So what s happening with Seam,in.relation.to +6,1317177974,9,Hey r java I need help learning to program,self.java +125,1317177322,6,I Hate People Who Do This,imgur.com +3,1317149463,3,Thread priority question,self.java +4,1317144540,8,Any good XMLRPC implementations other than apache s,self.java +0,1317079852,10,Something small but difficult that I can t figure out,self.java +1,1317017944,8,Problem with negative rationals for Rational number class,self.java +21,1317012021,4,My First Java Game,self.java +1,1316989062,4,interesting junk code request,self.java +10,1316908887,5,installing JDK without admin rights,self.java +0,1316859039,4,Alternative test approach Quickcheck,theyougen.blogspot.com +10,1316754131,11,NetBeans Java Desktop GUI and Java DB Derby Combining All Together,javaguicodexample.com +5,1316748823,6,Control Windows command prompt with Java,self.java +5,1316706033,6,Putting all other threads to sleep,self.java +0,1316730515,11,Is there any basic difference between Arrays copyOf and array clone,self.java +0,1316720228,6,Eclipse Juno IDE for Java Developers,eclipse.org +0,1316712273,19,How do i write to the first null entry in an array then stop rather than keep on going,self.java +3,1316669094,5,xPost Finding the appropriate Library,reddit.com +8,1316614291,7,A newbie struggling with JDBC need help,self.java +0,1316581829,8,Need Help With Moving Shapes in a JFrame,self.java +0,1316572326,15,I need help figuring out how to run a java file I wrote on mac,self.java +1,1316558947,5,Making array of polygons help,self.java +0,1316539008,13,Why is there no sorting method for arrays in the standard java api,self.java +6,1316529102,5,Object Serialization Question and Thaughts,self.java +0,1316484343,7,Yo guys quick question Help a newbie,self.java +0,1316452513,3,Not Enough Upvotes,reddit.com +8,1316369636,1,ConcurrentModificationException,self.java +8,1316360679,9,Working on adding JDBC 4 1 methods to Jaybird,firebirdnews.org +0,1316305954,6,Simple java help with updating balances,self.java +53,1316280100,5,Handy Java libraries you use,self.java +39,1316231513,9,James Gosling narrowly escapes death at Reno Air races,nighthacks.com +26,1316200137,13,What programming task is a lot harder than it should be in Java,self.java +0,1316225773,6,help with novice java question please,self.java +0,1316196815,10,jre 6 u27 vs jre 7 What s the difference,self.java +0,1316187428,5,Building module based java application,self.java +0,1316158488,8,Could not find or load main class Error,self.java +2,1316153454,2,Bad Timer,dzone.com +1,1316123142,14,Need advice on writng a pluggable app Serviceloader Netbeans Lookup Guice or something else,self.java +0,1316118523,9,Spring Roo open source RAD system for Java development,springsource.org +44,1316087538,19,AMD I don t always write GPU code in Java but when I do I like to use Aparapi,blogs.amd.com +0,1316108424,23,I just found the perfect Java learning website for me I knew it was the right place when I read this particular page,java2s.com +0,1316097049,12,Will Windows 8 browser not supporting plug ins really effect Java Newbie,self.java +4,1316076580,5,Am I learning poor practices,self.java +0,1316074587,5,Java and the Japanese Language,self.java +0,1316046265,7,Need help fixing error in my code,self.java +0,1316040107,6,How to hire java GUI expert,self.java +0,1316026540,21,Rate my API 1 being total crap and 10 being as good as could be Any constructive criticism would be wonderful,github.com +1,1316014703,5,Question about Queries and Threads,self.java +0,1316012672,11,Java Test Blackbelt need pointers and tips for an experienced developer,self.java +0,1315987824,15,OpenNTF have another XPages comp running Last guy who won had 0 knowledge of XPages,self.java +8,1315959327,3,Simple Java help,self.java +0,1315953592,4,Java Help Needed beginner,self.java +0,1315945223,5,Need some Java help beginner,self.java +6,1315908798,16,Cross post from r haskell Frege a haskell like pure lazy functional language for the JVM,code.google.com +22,1315905989,8,A Programmer s Day puzzle for Java Developers,zeroturnaround.com +2,1315880465,12,Refactoring to Modules In OpenJDK AWT and Swing depend on each other,refactoring2modules.blogspot.com +1,1315876898,5,Disable jbutton on application open,self.java +3,1315876252,22,I am using windows builder with Eclipse I am unsure what class I should use to put a image on a jpanel,self.java +46,1315864262,5,Java Infrequently Answered Questions IAQ,norvig.com +3,1315853356,7,Java For Thirty Days Trying an Experiment,self.java +4,1315837491,2,JSP webhost,self.java +48,1315809904,14,Hibernate should be to programmers what cake mixes are to bakers beneath their dignity,vimeo.com +3,1315799298,7,Starting out Java and need your help,self.java +0,1315619753,9,Can someone help me I m reposting this here,reddit.com +0,1315634012,12,How do you output to a text field in a web browser,self.java +3,1315629180,4,How to repaint continuously,self.java +4,1315589795,8,Blog entry on why Java is not dead,self.java +4,1315589795,8,Blog entry on why Java is not dead,self.java +43,1315529451,10,Lambda syntax for Java 8 decided xpost from r Programming,mail.openjdk.java.net +7,1315512789,7,Java Bytecode For Discriminating Developers ZeroTurnaround com,zeroturnaround.com +31,1315511128,2,Java concurrency,ibm.com +7,1315443355,11,Troubleshooting Eclipse dock icon replaced with unix executable file called java,self.java +1,1315432555,10,Can anyone recommend the best way to store output JSON,self.java +2,1315409336,7,Having trouble saving data from AD Query,self.java +9,1315396656,10,Hazelcast 1 9 4 Distributed Cache Map List Queue Released,hazelcast.com +2,1315323173,6,From Make to Ant to Maven,commandlinefanatic.com +0,1315268582,22,Help me with a simple BlueJ assignment that I can t get my head around This is still too new for me,self.java +8,1315251450,7,Broken Swing resizing makes items go glitchy,self.java +4,1315232682,5,Help building program in Eclipse,self.java +3,1315167403,12,Functional thinking Coupling and composition Exploring the implications of natively coupled abstractions,ibm.com +3,1315068045,7,Can t access images from jar file,self.java +5,1315026717,9,Know any good video tutorials on JAVA for beginners,self.java +5,1314981609,29,Any Google prohibition against employees going to JavaOne no longer applies to Father of Java James Gosling So will he show up at JavaOne 2011 Does it really matter,blog.devx.com +14,1314940002,19,So I started with Java about three days ago and this is the extent of my abilities Any suggestions,i.imgur.com +1,1314960030,11,luaj how to provide for sockets x post from r lua,reddit.com +2,1314950789,7,Need a small pointer on a project,self.java +12,1314744007,10,Hey Java SR does anyone know where I could find,self.java +0,1314681655,12,Java 7 s new Files API Possibly the most immediately useful feature,drdobbs.com +12,1314660841,6,Article Unit Testing for Java EE,oracle.com +18,1314647262,5,Play Framework now on Heroku,blog.heroku.com +1,1314586014,30,My dad asked me to quiz him on Java for his upcoming interview This is what I came up with Help me make it better x post from r programming,bit.ly +7,1314547345,4,Conditional Breakpoints in Netbeans,thebinaryidiot.com +14,1314507648,9,Looking for a good Java Programming book any suggestions,self.java +0,1314488748,8,Need help with java converting int to unicode,self.java +0,1314480631,9,How do I format text in a java printout,self.java +0,1314378913,10,How can I get access to the high res photo,self.java +2,1314223935,7,Diagrams More than What Meets the Eye,blog.architexa.com +1,1314137557,4,3d java game software,self.java +6,1314059857,4,Using Eclipse Package Format,self.java +4,1314005484,13,Ant task for packaging SWT Java applications into a single cross platform Jar,mchr3k.github.com +5,1313970449,3,What to do,self.java +8,1313958717,9,Is San Fran Ca good for Java Developer Jobs,self.java +1,1313840497,3,Newcomer needs help,self.java +18,1313787290,10,hib Generic DAO implementation extendable detailed search remote service interface,code.google.com +3,1313722171,7,Help with dialog boxes for new programmer,self.java +18,1313679475,8,Need a recommendation for a free Java decompiler,self.java +13,1313670163,5,Top Java Developers offers advice,java.sun.com +5,1313585814,11,What should a Junior Java Developer expect to make in salary,self.java +19,1313573856,22,My contract is coming to an end my boss wants me to show me how to use the code I ve written,self.java +9,1313476484,2,Scanner question,self.java +1,1313466189,20,Two problems Applet runs in Eclipse but not in browser Don t know how to use Firefox s Java console,self.java +3,1313418515,12,Want Chronon the time travelling debugger for IntelliJ Then vote for it,community.chrononsystems.com +12,1313396217,11,TIL The Bluetooth Special Interest Group screwed up in a way,en.wikipedia.org +9,1313362446,17,Interview in a few days for a Java Developer role entry level need a few refreshers please,self.java +0,1313298445,6,Question on the java garbage collecter,self.java +1,1313221839,7,need java code on text to speech,self.java +1,1313168371,9,Push messages that automatically launch a Java mobile application,javaworld.com +1,1313154636,8,Identifying which Java Thread is consuming most CPU,dzone.com +1,1313109989,4,NetBeans First Patch Program,netbeans.dzone.com +1,1313066319,8,Improved and Better Exception Handling from Java 7,code-on.blogspot.com +33,1313031102,6,I made an Eclipse poster PIC,i.imgur.com +1,1312982324,12,How to avoid traps and correctly override methods from java lang Object,javaworld.com +1,1312958329,9,Sindi IoC container for Scala version 0 1 released,github.com +4,1312923922,11,Call for papers for the Jenkins User Conference on Oct 2nd,jenkins-ci.org +1,1312904363,9,Here is a Java 7 gem I found interesting,download.oracle.com +53,1312901794,11,An oldie but a goodie Java is Pass by Value Dammit,javadude.com +1,1312898938,9,A quick summary of new Java 7 coding extensions,commonitman.com +0,1312890715,11,Features from Java 7 that you will love being a developer,code-on.blogspot.com +2,1312860032,7,Ensuring Continuous Availability JVM Hotswap LiveRebel what_else,self.java +12,1312829581,14,Going to JavaOne this year Check out the Jenkins User Conference on Oct 2nd,jenkins-ci.org +1,1312728384,7,Comparing Java 7 Async NIO with NIO,vanillajava.blogspot.com +0,1312727547,6,Java applet multi file upload download,self.java +1,1312692468,6,Java 7 Too Little Too Late,artima.com +0,1312661399,5,Force JLabel Icon to repaint,self.java +10,1312618838,7,Java 8 gears up for the cloud,infoworld.com +1,1312568120,5,Oracle Java s worst enemy,infoworld.com +7,1312546356,4,Auto update an app,self.java +5,1312480535,6,How To Listen on a Directory,self.java +0,1312453997,11,Learning Java Detailed explanation in setting up and running first program,self.java +0,1312397106,9,Help me r java you re my only hope,self.java +36,1312384922,26,Online java source navigation For quick access to those open source projects you don t have the source for where has this been all my life,mavenjava.com +1,1312177604,7,Detecting low memory in Java Part 2,techblug.wordpress.com +21,1312120659,8,Java puzzlers Java random numbers and Java documentation,ileriseviye.org +0,1312025041,3,Erasure vs reification,beust.com +4,1312000357,17,Java without the GC Pauses Keeping Up with Moore s Law and Living in a Virtualized World,infoq.com +21,1312000281,7,Java 7 Ships With Severe Bug Slashdot,developers.slashdot.org +0,1311994881,17,Java SE 7 A triumph for Oracle not astroturfing it s not my title and note the,internetnews.com +4,1311974002,9,Don t Use Java 7 Are you kidding me,blog.eisele.net +10,1311966831,8,dW Secure your code against the finalizer vulnerability,ibm.com +7,1311924787,4,Doing OLAP with Java,drdobbs.com +2,1311921772,12,Java Standard Edition 7 is done but feels like an interim release,itwriting.com +1,1311875920,4,JDK 7 Release Notes,oracle.com +7,1311874267,18,Java 7SE includes features that if used for any commercial or production purpose require a separate payable license,oracle.com +63,1311867338,5,Java 7 is now available,oracle.com +2,1311860306,18,Help me r java you re my only hope Has anything changed in Java related to the clipboard,self.java +3,1311845900,5,Best text book for beginners,self.java +1,1311845606,4,Java Classpath Explained PIC,geekandpoke.typepad.com +1,1311827758,13,Introducing Mule Query Language a LINQ Inspired Language for the JVM and Web,theserverside.com +72,1311782646,9,Just found this tutorial site through Google Definitely bookmarked,dickbaldwin.com +9,1311777317,5,Not Cool Oracle Not Cool,imgur.com +13,1311752023,7,Useful tips and best practices Java Programming,javagyan.com +8,1311746536,3,Functional thinking Immutability,ibm.com +0,1311649038,5,Java Help with rounded button,self.java +21,1311617618,10,Do you really get classloaders A presentation by Jevgeni Kabanov,parleys.com +2,1311612156,5,OSCON Live 9 to 5,ubergizmo.com +0,1311587200,4,Java and Memory Leaks,vanillajava.blogspot.com +5,1311563088,4,Neuron Network Java applet,umasscrc.org +6,1311563088,4,Neuron Network Java applet,umasscrc.org +0,1311526292,5,Generate JavaDoc with UML diagrams,gochev.blogspot.com +1,1311525271,9,Help Trouble putting a main menu into my game,self.java +38,1311501704,8,Scoop Oracle scrubs site of embarrassing Java blog,news.cnet.com +2,1311497864,16,Amusing Bug SWT StyledText control scrolls text with lots of commas 5x slower than normal text,github.com +6,1311485309,7,JetBrains introduces the new JVM language Kotlin,infoq.com +1,1311390429,6,Need help programming DB for game,self.java +2,1311356569,4,Plotting points in Program,self.java +2,1311340032,3,Stop hating Java,andrzejonsoftware.blogspot.com +8,1311288565,24,I want to map web service returns to previously built java classes Should I be looking at JAXB or Axis Or something else entirely,self.java +6,1311287562,15,Hello Reddit I need help on how to go from the console to 2D 3D,self.java +1,1311227908,6,Book Review Java The Good Parts,marxsoftware.blogspot.com +0,1311226356,8,ActiveJDBC new Java ORM and an ActiveRecord implementation,mkblog.exadel.com +0,1311154969,17,SCJD OCMJD SE 6 Certification Training Lab Sample Assignment and Essay Mock Exam Questions Simulator Software Book,self.java +1,1311137842,5,Java 7 SE approved Meh,service-architecture.blogspot.com +0,1311112416,6,A Detailed Study on Understanding Code,blog.architexa.com +5,1311089811,4,JDK 8 Proposed features,searchcrone.com +48,1311089281,6,Java SE 7 approved and sealed,blogs.oracle.com +1,1311083910,16,Can or is the Object held within a JMS ObjectMessage the same instance as when published,stackoverflow.com +4,1310997300,14,Ulam numbers it s taking too long for integer that are greater than 500,self.java +0,1310937621,8,What s your funniest repository check in comment,self.java +0,1310929777,11,Professional Game Artist looking to get into Java need your help,self.java +12,1310847268,6,An LRU cache with Google Guava,blog.ericwryan.com +13,1310823327,7,Chain Calls in Java a better solution,vpatryshev.blogspot.com +13,1310789801,8,The Java parade What about IBM and Apache,radar.oreilly.com +12,1310755198,24,Just stumbled on this from a friend s post on gPlus has anyone really been far even as decided to use for java dev,compilr.com +1,1310751442,6,Eclipse syntax highlighting not working correctly,self.java +6,1310733535,13,is having a while on loop inside a thread s run method dangerous,self.java +0,1310732582,4,Google s Java Jam,linuxinsider.com +1,1310720553,10,burek for breakfast QotD Claus Riegen on SAP joining OpenJDK,robilad.livejournal.com +0,1310658822,5,Who leads the Java parade,radar.oreilly.com +2,1310644598,6,Java All about 64 bit programming,vanillajava.blogspot.com +0,1310600965,9,Running Gerrit on top of the Glassfish app server,ppires.wordpress.com +10,1310592566,12,Code Visibility one factor of code quality that you shouldn t forget,blog.architexa.com +1,1310591537,23,Have Oracle and Google settled See second 54 of this video Is it just me or those are a bunch of Nexus ones,oracle.com +16,1310562150,9,Judge It s possible Google knew of Java violation,javaworld.com +12,1310547702,6,Use or to Compare Java Enums,marxsoftware.blogspot.com +3,1310547525,6,NetBeans 7 x Java 7 Refcard,blogs.oracle.com +1,1310535351,6,Hibernate Object Mapping for NoSQL Datastores,infoq.com +1,1310505753,7,Problem exporting a runnable jar with GImages,self.java +1,1310524540,11,Eclipse problem Why can t I get images into my project,self.java +2,1310511935,5,JBoss Application Server 7 released,jboss.org +0,1310497120,6,Java Hanging Thread Detection and Handling,javaworld.com +0,1310485903,2,Java Calculator,self.java +0,1310414793,5,Node X a netty glue,github.com +0,1310395948,7,I learn very fast need some advice,self.java +1,1310377861,2,Maven Evaluation,methodsandtools.com +66,1310336055,10,This is how I ve spent most of my Sunday,i.imgur.com +0,1310334160,7,Problem with persistence of variables in threads,self.java +6,1310288213,7,Rod Johnson Clarifies His Thoughts on OSGi,theserverside.com +7,1310237715,11,So what s the best way to go about learning Java,self.java +0,1310233028,9,Java Application Performance Possible Causes of High CPU Consumption,javaworld.com +4,1310232999,6,Java Hanging Thread Detection and Handling,javaworld.com +3,1310204994,11,google singleton detector Find singletons and global state in Java programs,code.google.com +37,1310144303,7,Seven reasons you should use Java again,radar.oreilly.com +0,1310165719,2,Help coding,self.java +2,1310136475,15,Homage to Java 7 Seven reasons why Nuxeo uses Java for open source ECM awesomeness,blogs.nuxeo.com +10,1310107476,6,JDT Eclipse Java 7 Support BETA,wiki.eclipse.org +2,1310104509,13,How to call a call a webservice directly from Java without webservice library,technology.amis.nl +2,1310079484,7,Turn Excel Calculator into Clean Java Applet,self.java +5,1310073384,14,The new fork join framework in JDK7 hasn t been met with universal acclaim,coopsoft.com +3,1310067954,6,Fixing a code to count words,self.java +16,1310064526,7,Seven Java projects that changed the world,radar.oreilly.com +0,1310063929,7,Cross platforming from Java to XCode Considerations,self.java +26,1310061443,15,Oracle coughs up Java 7 release candidate A non revolution five years in the making,theregister.co.uk +8,1310029320,10,File and Directory Operations with Java 7 s Files Class,marxsoftware.blogspot.com +0,1310018214,6,Akka and the Java Memory Model,blog.typesafe.com +0,1310007726,6,Help figuring this mortgage calculator out,self.java +6,1309983137,6,Question about event handlers and queuing,self.java +7,1309972039,6,The most powerful JVM language available,intermediatejava.com +0,1309962527,8,Formatting numbers in Java Eclipse Need some help,self.java +10,1309959738,9,Can You suggest some good tutorials to learn Java,self.java +6,1309929579,6,Eclipse Jubula Automated Functional Testing Tool,infoq.com +0,1309923694,7,What s Cool In IntelliJIDEA Part I,arhipov.blogspot.com +2,1309922724,7,JRebel 4 0 Release Instrumentation HotSwap Integration,infoq.com +4,1309882610,7,highj Haskell style type classes in Java,code.google.com +10,1309882333,15,Using JPA to persist the Tour de France Java Object Graph to relational database tables,technology.amis.nl +11,1309861575,9,Low GC in Java Use primitives instead of wrappers,vanillajava.blogspot.com +0,1309801506,8,JavaFX 2 0 Beta Getting Started Part 2,tutortutor.ca +23,1309791476,13,Twitter Shifting More Code to JVM Citing Performance and Encapsulation As Primary Drivers,infoq.com +4,1309762863,10,Trying to compile my first java program into a JAR,self.java +2,1309752730,5,A Second Look at Neo4j,sujitpal.blogspot.com +4,1309750294,3,Managing Jar Hell,codepimpsdotorg.blogspot.com +6,1309705498,20,CDK 1 4 0 the changes the authors and the reviewers an open source Java library for Chemoinformatics and Bioinformatics,chem-bla-ics.blogspot.com +15,1309684898,3,The Java Magazine,blogs.oracle.com +1,1309638175,3,JPA Access Annotation,java.dzone.com +21,1309637955,2,Eclpse Indigo,eclipse.org +3,1309633303,7,A Periodic Zone Refresh Mixin for Tapestry,tawus.wordpress.com +4,1309610522,8,Cross site request forgery protection for Apache Tapestry,google-melange.com +3,1309608639,1,6u26,oracle.com +1,1309580942,2,Java option,mindprod.com +3,1309561367,6,Need help with JCombo Box JList,self.java +4,1309461240,4,GUI Action listener class,self.java +2,1309459857,10,How to save an applet and use locally on Mac,self.java +3,1309441228,3,Java Text Display,self.java +6,1309438614,3,Java GUI Layouts,self.java +3,1309434583,9,Microsoft Releases Java Friendly Interop Bindings for WCF Services,infoq.com +6,1309399602,13,Where can I find a good explanation of threading particularly wait and notify,self.java +9,1309378092,10,50 Articles on Code Architecture Agile and Large Codebasses poll,blog.architexa.com +2,1309377972,11,How to tame java GC pauses Surviving 16GiB heap and greater,java.dzone.com +2,1309377972,11,How to tame java GC pauses Surviving 16GiB heap and greater,java.dzone.com +3,1309374889,11,Reading properties files N V pairs style and XML a review,drdobbs.com +7,1309364938,9,Does anyone use a VM for developing Java apps,self.java +9,1309320047,3,Favorite Webinars Podcasts,self.java +8,1309276546,18,I m a newbie to java and trying to teach myself Why won t this little script work,self.java +12,1309235282,7,Music Components in Java The Synthesizer Core,drdobbs.com +1,1309200316,5,ODBC JDBC Bridge Driver help,self.java +3,1309127200,20,I would like to start learning java I have a web based background php python javascript Where should i start,self.java +8,1309121478,16,eclipse 3 7 on the new mac 8 good features amp 1 bad my plugin list,selikoff.net +25,1309015767,9,Speed up your eclipse as a super fast IDE,beyondlinux.com +5,1308975728,5,JPA and UUID Primary Keys,thebinaryidiot.com +0,1308918250,6,Reddit now with SQL injection attacks,self.java +1,1308860060,8,Understanding Java Server Faces 2 0 Part 2,ramkitech.blogspot.com +13,1308851138,4,Java s Forgotten Forbear,spectrum.ieee.org +15,1308850322,6,Java 7 Objects Powered Compact Equals,marxsoftware.blogspot.com +1,1308842264,8,Having issues installing JRE would appreciate some help,self.java +13,1308839213,5,Fun with Java2D Java Reflections,jhlabs.com +8,1308828499,11,Importing an existing SSL key certificate pair into a Java keystore,blog.jgc.org +0,1308823580,5,JDK 7 Thread Cloning Vulnerability,weblog.ikvm.net +4,1308801563,7,Even better AtomicInteger and AtomicLong in Java,gridgain.blogspot.com +8,1308776466,21,All of the useful methods in the Date class are deprecated What alternative class should be used with the same functionality,self.java +1,1308765409,7,Oracle s patents case against Google weakening,itworld.com +0,1308760390,7,Spring Framework founder Java needs cloud accommodations,infoworld.com +17,1308745731,9,Google disputes possible 6 billion Java lawsuit price tag,javaworld.com +6,1308723406,10,Spring 3 1 M2 Testing with Configuration Classes and Profiles,blog.springsource.com +0,1308718554,8,Benchmarking Appserver remotely ab nohup ec2 and more,kkpradeeban.blogspot.com +43,1308707877,7,New styled JavaDoc in Sun s blue,download.java.net +8,1308690349,6,Solutions on Dealing with Large Codebases,blog.architexa.com +13,1308688545,4,Fun with Java2D Strokes,jhlabs.com +6,1308682015,22,This is my first substantial java programming endeavor could I get critiques on the coding style as well as the javadocs documentation,self.java +7,1308673525,12,Is it good or bad practice to place example code within javadocs,self.java +2,1308649073,7,Accessing Package Version Information in Java Code,marxsoftware.blogspot.com +42,1308632523,4,Making Really Executable Jars,skife.org +6,1308607242,9,What project would you like to port in Java,self.java +8,1308602047,22,Anyone have project ideas to fill out a C V just for fun or projects you haven t had time for yet,self.java +1,1308575452,7,javafx 2 0 great progress some thoughts,aappddeevv.blogspot.com +14,1308565049,8,Java development on a Mac OS X Opinions,self.java +7,1308553280,8,Understanding Java Server Faces 2 0 Part 1,ramkitech.blogspot.com +3,1308469079,13,Building cross platform desktop app win linux what GUI API toolkit to use,self.java +0,1308397955,6,How would you secure confidential data,self.java +2,1308395755,3,Finding an IDE,self.java +8,1308334151,27,Hibernate OGM birth announcement Hibernate OGM stands for Object Grid Mapping and its goal is to offer a full fledged JPA engine storing data into NoSQL stores,in.relation.to +6,1308334053,7,Are Java and Net becoming legacy platforms,javaworld.com +0,1308311417,5,Rapid Prototyping with Spring Roo,self.java +10,1308291459,11,Is it an alright practice to insert html into javadoc comments,self.java +25,1308285999,5,Java Performance synchronized vs Lock,blog.rapleaf.com +0,1308268926,12,Hi would anyone be willing to help me with my java assignment,self.java +7,1308252454,11,A diagram depicting the governance model of the Apache Maven project,markmail.org +3,1308241911,11,out of work looking for work overwhelmed by recruiters any advice,self.java +6,1308231437,8,Silent network install of Java 6r23 and newer,adminarsenal.com +4,1308201614,6,VMware unfurls fresh Spring Java vFabric,theregister.co.uk +1,1308185359,6,Taking the pain out of JNI,nerds-central.blogspot.com +5,1308185274,5,OrientDB Pure Java NoSQL Datastore,java.dzone.com +10,1308182653,4,What s Up JavaDoc,blogs.oracle.com +11,1308177307,10,I m looking for a good online Java certification course,self.java +12,1308157685,8,So what fun can I do with Robot,self.java +9,1308154123,11,Mocha Doom A proper port of the classic game to Java,self.java +3,1308138782,7,Java standards process to get an upgrade,javaworld.com +1,1308136108,5,Java Enums can implement Interfaces,selikoff.net +2,1308132066,8,Hands on Tutorial on EJB 3 1 Security,packtpub.com +10,1308066652,5,Java SE 8 Modularity Requirements,osgithoughts.blogspot.com +4,1308065713,8,Defining the Future for Virtualized and Cloud Java,blog.springsource.com +1,1308036625,5,Java Should Have Extended Enums,java.dzone.com +2,1308032248,5,Method Size Limit in Java,eblog.chrononsystems.com +4,1308030797,7,Don t Rely on Autoboxing in Java,squirrel.pl +0,1308024896,7,Java web services WS Security with CXF,ibm.com +4,1307985101,40,Not trolling I m just wondering Everyone says that Java s the most popular programming language but aside from Open Office I can t really think of any popular apps that run on Java Can someone explain this for me,self.java +1,1308005378,10,i just got a job as a student programmer but,self.java +11,1307984137,4,Java Lambda Syntax Alternatives,theserverside.com +7,1307942791,15,How can I parse this date string 2010 10 06T19 44 26 000 07 00,self.java +13,1307891356,8,Java EE 6 A Better Development Experience Awaits,jaxenter.com +4,1307891334,8,Non blocking NIO Server Push and Servlet 3,blog.maxant.co.uk +6,1307860271,4,Why I choose Java,johnwaterwood.wordpress.com +4,1307858060,7,Message Driven Beans in Java EE 6,hascode.com +1,1307854310,8,How to improve JPA performance by 1 825,java-persistence-performance.blogspot.com +21,1307852078,12,Zero downtime Deployment and Rollback in Tomcat a walkthrough and a checklist,javacodegeeks.com +19,1307730547,7,Spring to Java EE A Migration Experience,ocpsoft.com +13,1307728867,6,What matters to the Eclipse community,java.dzone.com +11,1307687644,6,Music Components in Java Creating Oscillators,drdobbs.com +6,1307683103,8,Survey Finds That Java Coding Productivity Remains Poor,devx.com +12,1307682356,6,Spring Framework 3 1 M2 released,blog.springsource.com +26,1307642622,11,Moving to OpenJDK as the official Java SE 7 Reference Implementation,blogs.oracle.com +1,1307647302,12,Java HotSpot Cryptographic Provider signature verification vulnerability en Java sztuczki i kruczki,java.zacheusz.eu +10,1307595447,6,Java EE 6 Server Comparison Introduction,hwellmann.blogspot.com +4,1307562288,13,What is the best read for a first time programmer to learn Java,self.java +21,1307555193,8,Oracle fixes 17 bugs in Java security update,infoworld.com +1,1307547231,9,Oracle Java SE Critical Patch Update Advisory June 2011,oracle.com +10,1307536962,5,Hibernate hard facts Part 7,blog.frankel.ch +1,1307531257,8,Java 7 JSR Passes While Transparency Concerns Prevail,theserverside.com +2,1307510311,12,Dr Mindbender Or How I Learned To Stop Worrying And Love Hibernate,summa-tech.com +4,1307507511,21,jclouds 1 0 0 is out We finally released the 2 years cooking open source cloud library for java and clojure,anyweight.blogspot.com +3,1307505176,4,Oracle upgrades JDeveloper IDE,javaworld.com +1,1307504573,7,Hey Null Don t Touch My Monads,warpedjavaguy.wordpress.com +4,1307453532,7,Inner Class vs final variable vs GC,self.java +20,1307445825,8,Java SE 7 passes in the zombie JCP,jroller.com +10,1307445283,15,JavaFX 2 a Completely New Client Layer for the JavaSE Platform Now in Public Beta,infoq.com +3,1307417998,12,Java development 2 0 Cloud storage with Amazon s SimpleDB Part 2,ibm.com +3,1307400064,9,The Java sound API How to play music samples,drdobbs.com +13,1307391716,4,Looking to learn java,self.java +6,1307332347,25,Beans and properties A few words on beans and properties in Java prompted by the JavaFX 2 0 API and my work on Joda Beans,jroller.com +6,1307332347,25,Beans and properties A few words on beans and properties in Java prompted by the JavaFX 2 0 API and my work on Joda Beans,jroller.com +9,1307296064,11,Martin Lippert on the newly released SpringSource Tool Suite 2 6,infoq.com +1,1307200785,9,Firebird Eclipse DTP Plugin Version 1 0 2 released,firebirdnews.org +7,1307196217,4,Rebooting JavaFX Part 1,javaworld.com +10,1307164284,9,Understanding GC pauses in JVM HotSpot s CMS collector,blog.griddynamics.com +2,1307162892,8,Roll your own high performance Java collections classes,julianhyde.blogspot.com +0,1307136988,12,Trying to add integers from a txt file and output the sum,self.java +25,1307106782,14,Interested in learning to code for Android The tutorial at r learnandroid is up,learnaboutandroid.blogspot.com +5,1307057895,7,Head First Java 2005 still valid Recommendations,self.java +8,1306997145,11,Soot An OSS framework to analyze transform and or optimize bytecodes,drdobbs.com +18,1306989822,6,Functional thinking Thinking functionally Part 2,ibm.com +9,1306989595,8,Announcing Phonemic 1 0 Cross Platform Speaking Library,java.dzone.com +1,1306871483,7,Looking for help using Sphinx4 in Processing,self.java +0,1306823418,5,Using JavaFX Properties and Binding,download.oracle.com +1,1306725286,8,Orika simpler better and faster Java bean mapping,code.google.com +10,1306640135,7,JavaFX 2 Beta Time to Reevaluate JavaFX,marxsoftware.blogspot.com +0,1306563066,22,Build better web applications with jQuery UI and jQuery plug ins Improving the look and feel of your web pages and applications,ibm.com +2,1306561942,6,Is JavaFX 2 0 Cross Platform,fxexperience.com +0,1306505932,9,And the bartender says to the two dimensional array,self.java +8,1306496343,5,Jersey 1 7 is released,blogs.oracle.com +8,1306476054,10,Jolokia is an HTTP JSON bridge for remote JMX access,jolokia.org +8,1306471492,10,Java Web Application Security Part III Apache Shiro Login Demo,raibledesigns.com +12,1306471382,6,JavaFX 2 0 Beta is Available,fxexperience.com +4,1306445580,11,ActiveMQ not ready for prime time by Lift Web Framework author,goodstuff.im +7,1306414807,11,What are good governance practice for builds within multiple agile teams,self.java +10,1306411894,7,Requirements of a Standard Java Module System,infoq.com +3,1306353887,8,A two dimensional array walks into a bar,self.java +0,1306313679,4,help with java coding,self.java +31,1306299513,5,The Tragedy Of Checked Exceptions,tapestryjava.blogspot.com +4,1306297276,7,OpenJDK Bylaws Delay JDK 8 Project Slightly,infoq.com +12,1306206378,6,Terracotta swallowed up by Software AG,blog.terracottatech.com +17,1306185072,8,Introducing CoffeeDOM a JDOM fork for Java 5,cdmckay.org +5,1306167958,8,Looking for a way of doing speech recognition,self.java +10,1306133166,18,Java non blocking servers and what I expect node js to do if it is to become mature,blog.maxant.co.uk +30,1305987431,14,Spark A small web framework for Java HTTP Request Response management w o Servlets,sparkjava.com +9,1306000569,10,Easily collect trace from Java programs with the InTrace plugin,github.com +5,1305905794,37,my pacman clone in java swing processing collaborators needed I have one ghost as of now any tips to improve graphics gameplay much appreciated i managed to sneak in an a star implementation of pathfinding too D,code.google.com +9,1305900649,3,Typesafe Hibernate Queries,benjiweber.co.uk +27,1305897560,11,JetBrains Release IntelliJ IDEA 10 5 With Full Java 7 Support,infoq.com +4,1305816168,8,JApplet or JFrame Which is better more used,self.java +1,1305811187,6,jvm crashes with 6u25 tiered compilation,jojava.blogspot.com +7,1305748375,6,Just ran into a compiler oddity,self.java +12,1305719024,4,Hadoop A Soft Introduction,javacodegeeks.com +2,1305706320,9,Automatically skip over non editable cells in a JTable,self.java +1,1305679288,4,What s your IDE,self.java +0,1305671273,12,Custom font question Does it have to load everyime the page refreshes,self.java +1,1305656349,4,Miranda Methods in Java,lists.xcf.berkeley.edu +8,1305632937,7,Running Java in the Cloud with Cloudbees,cloudcomputingdevelopment.net +9,1305626079,12,LiveRebel 1 0 A New Hope Instant JEE Hot Updates to Production,zeroturnaround.com +12,1305520035,8,On Memory Leaks in Java and in Android,chaosinmotion.com +1,1305497526,9,Ant build script automatic version numbers major minor revision,stackoverflow.com +18,1305418460,7,How I visualize the bellcurve Java Applet,umasscrc.org +10,1305353321,10,Juergen Hoeller on Spring 3 1 and Spring 3 2,infoq.com +2,1305299361,6,How do I prepare for certification,self.java +2,1305290557,11,A question related to composing web services in Netbeans and BPEL,self.java +3,1305218580,13,Easy Steps to create a Java based Web Application with Struts2 and jQuery,jgeppert.com +7,1305185353,5,Software Transaction Memory in Java,multiverse.codehaus.org +61,1305179701,9,How Garbage Collection differs in the three big JVMs,blog.dynatrace.com +7,1305096243,3,Open type systems,beust.com +1,1305065154,12,Need to implement an audio CD player in our Java app suggestions,self.java +2,1305041557,24,Java SE The Road Ahead This keynote of the Devoxx 2010 conference presents an overview of the state of Java SE 7 and beyond,java-tv.com +0,1305040840,4,How GWT helped DayZipping,googlecode.blogspot.com +30,1305020434,8,Oracle hands Hudson over to the Eclipse Foundation,javaworld.com +7,1304963728,22,The final word on final or how to increase the quality of your code with the simple application of the final keyword,vertigrated.com +2,1304849630,5,Java new release 6u25 G1,oracle.com +0,1304849539,13,GWT and the Google Plugin for Eclipse 2 3 Final Release Now Available,googlewebtoolkit.blogspot.com +1,1304758027,12,Help needed for undergrad project visualization of data mining tree web service,self.java +7,1304660837,7,Designing large applications for Google App Engine,googlecode.blogspot.com +0,1304660555,12,Spring Cache V3 1 initial thoughts on their generic cache API design,devwebsphere.com +10,1304532427,6,Functional thinking Thinking functionally Part 1,ibm.com +7,1304483691,14,Using MongoDB Redis Node js and Spring MVC in a single Cloud Foundry Application,blog.springsource.com +0,1304481757,7,Oracle Google move to streamline Java lawsuit,javaworld.com +1,1304454987,5,Working with XML in Java,blog.knolif.com +17,1304398906,6,Can the Java Applet Be Salvaged,marxsoftware.blogspot.com +2,1304384261,6,Java gui jlist and jtextfield question,self.java +0,1304350320,7,Interview and Book Excerpt ActiveMQ in Action,infoq.com +1,1304325970,6,Apache CXF Web Services for Java,methodsandtools.com +8,1304175952,9,Introduction to Ceylon Series of articles by Gavin King,in.relation.to +0,1304122030,13,Sort of a chicken and egg OO problem how would you solve it,self.java +0,1304080146,3,Problems with static,self.java +6,1304011236,4,Delaying Garbage Collection Costs,javaspecialists.eu +25,1303985382,7,All I Want for Java 8 is,marxsoftware.blogspot.com +5,1303968222,30,Introducing the Ceylon Project a prototype language for the Java Virtual Machine which attempts to combine the strengths of Java with the power of higher order functions and declarative programming,infoq.com +0,1303961702,7,Really really stupid question about initializing arrays,self.java +1,1303955290,6,Resources for Facelet pattern based design,self.java +0,1303879351,6,Determining MIME type by file extension,thebinaryidiot.com +11,1303813408,11,Survey How do you update your Java EE app in production,surveymonkey.com +13,1303801741,8,Introduction to Programming in Java An Interdisciplinary Approach,introcs.cs.princeton.edu +0,1303694310,11,What do you think r java INI files or PROPERTIES files,self.java +2,1303667212,3,Cannot access interface,self.java +17,1303553229,7,Introduction to Efficient Java Matrix Library EJML,java.dzone.com +5,1303535303,7,New amp Cool in NetBeans Platform 7,blogs.sun.com +12,1303521320,10,Thinking in Clojure for Java Programmers Part 2 Macros FTW,devblog.factual.com +27,1303312249,4,NetBeans 7 0 Released,netbeans.org +3,1303302695,11,Use mirah to develop your unit tests and basic swing code,mirah.org +22,1303282509,7,The Top Java Memory Problems Part 1,blog.dynatrace.com +6,1303200770,12,Helping Java and Ruby on Rails play nice on the database level,codedependents.com +1,1303157070,11,Take home test due tomorrow and I m completely lost Help,docs.google.com +5,1303142385,5,An IDE and workflow question,self.java +15,1303060418,7,Google Open Source Blog Josh Bloch Interview,google-opensource.blogspot.com +16,1303060418,7,Google Open Source Blog Josh Bloch Interview,google-opensource.blogspot.com +7,1302957556,10,3 Reasons why I prefer JMX over a Web Console,rgladwell.wordpress.com +18,1302902720,3,Dear Java Killers,blog.efftinge.de +6,1302886664,5,Apache Camel gets a GUI,pcworld.com +4,1302841413,8,One Thing I Really Hate About the JVM,whiley.org +0,1302820307,7,Need help making a basic area program,self.java +0,1302814692,7,Java File Save and File Load Objects,beginwithjava.blogspot.com +4,1302799779,3,Q Copying Objects,self.java +2,1302752548,9,What s a good pseudo curses like UI library,self.java +3,1302761530,9,The Open Java API for OLAP is growing up,lemire.me +17,1302761299,9,A new free Java maganize is coming from Oracle,blogs.oracle.com +5,1302734259,12,Web framework Play releases version 1 2 more async features WebSockets etc,groups.google.com +10,1302724971,7,Greplin opensources Lucene Utils and Bloom Filters,tech.blog.greplin.com +10,1302712423,5,Ceylon A new JVM language,in.relation.to +2,1302708174,6,Q variable declaration and for loops,self.java +1,1302707794,10,Need help getting height of an image possible inheritance problem,self.java +3,1302696739,12,Testing Databases with JUnit and Hibernate Part 1 One to Rule them,blog.schauderhaft.de +7,1302694657,14,Gavin King unveils Red Hat s top secret Java Killer Successor The Ceylon Project,blog.talawah.net +51,1302689297,6,Twitter Moves from Ruby to Java,allwelike.com +20,1302676298,13,Oracle complains about Sun s Java Release Cycles OpenJDK will become more important,kai-waehner.de +1,1302674907,13,Aggregating Tweets with Play and Elastic Search Module New Release 0 0 6,geeks.aretotally.in +2,1302573066,11,I d like to find the answer to this recurring problem,self.java +26,1302555509,9,Twitter Search use Java projects Lucene and jBoss Netty,engineering.twitter.com +3,1302550717,3,Multi object arrays,self.java +11,1302481503,2,Debugging woes,self.java +0,1302464095,5,Highschooler has AP CS question,self.java +22,1302446725,12,Do you use a GUI builder or do you design by hand,self.java +1,1302404813,4,istack Incessant j Stack,github.com +3,1302281054,14,Jerome Dochez Discusses Early Plans for Java EE 7 Planned to Ship in 2012,infoq.com +0,1302237681,13,Client Side Data Encryption for Amazon S3 Using the AWS SDK for Java,aws.typepad.com +0,1302226285,16,Can someone help with this code a bit I have no clue what s going wrong,self.java +0,1302187007,15,Getting the most out of LiquiBase Tool supported Data Modeling and Change Management Part 3,blog.mgm-tp.com +23,1302152994,8,Official Java 7 for Mac OS X Status,javacodegeeks.com +10,1302131567,9,Finding path to my command line tools from Java,self.java +0,1302117764,14,Try Catch Block Exception Handling Date Class I AM LOST Any help would B,self.java +25,1302096963,17,Cliche Cliche is a small Java library enabling really simple creation of interactive command line user interfaces,self.java +2,1302084206,7,Antonio s take on Java EE adoption,blogs.sun.com +6,1302083104,6,Junit Tests The Myths Around Coverage,xebee.xebia.in +7,1301987849,10,Automated Acceptance Tests and Requirements Traceability in Java with Concordion,methodsandtools.com +5,1301975609,16,Best way to distribute java software with command line executables and is that really that bad,self.java +2,1301957334,4,Drawing a sine wave,self.java +36,1301892024,18,aima java Java implementation of algorithms from Norvig And Russell s Artificial Intelligence A Modern Approach 3rd Edition,code.google.com +10,1301877891,9,Any good websites with java examples of medium complexity,self.java +9,1301870733,7,To curly or not to curly bracket,self.java +2,1301843924,10,Implementing a custom loading bar how would you do it,self.java +10,1301824800,6,Seam 3 0 0 Final Released,in.relation.to +0,1301809368,2,JDK7 Previwed,pequenoperro.blogspot.com +5,1301808905,8,Responding to Recent Java 7 Blog Post Comments,marxsoftware.blogspot.com +3,1301769979,1,RESTeasy,jboss.org +6,1301769427,14,Pure Java war capable of hosting git repos and exposing them with git ssh,github.com +0,1301760823,5,On Java Json and complexity,jillesvangurp.com +0,1301759985,16,Several ways to connect Java applications with a mysql database directly and through a php server,blog.knolif.com +5,1301700279,5,ASK Any mp3 editing packages,self.java +0,1301663600,9,What Gosling Could Do for Google and Vice Versa,linuxinsider.com +39,1301651490,8,JDK 7 New Interfaces Classes Enums and Methods,marxsoftware.blogspot.com +12,1301643657,8,Java and 3D gaming is there a future,self.java +0,1301625401,4,Weird Java problem Help,self.java +9,1301588936,13,anyone around Philly desperately need a job we desperately need another Java dev,self.java +0,1301582991,7,ASK Java Work Part Time From Home,self.java +1,1301496821,11,Thinking functional programming with Map and Fold in your everyday Java,cyrille.martraire.com +5,1301455406,6,Apache Velocity Read Templates from JAR,thebinaryidiot.com +5,1301444444,5,Tutorials materials to learn Java,self.java +3,1301427294,7,Maven check for updated dependencies in repository,stackoverflow.com +18,1301413163,7,NetBeans 7 0 RC 1 is out,blogs.sun.com +16,1301391520,10,JDK 7 Reflection Exception Handling with ReflectiveOperationException and Multi Catch,marxsoftware.blogspot.com +0,1301379818,6,Bringing Ruby s ActiveRecord to Java,blog.rapleaf.com +0,1301379450,6,Does distort my line in sound,self.java +1,1301375812,4,James Gosling Joins Google,infoq.com +23,1301348006,4,James Gosling joins Google,nighthacks.com +1,1301336443,11,Need some help coding a very simple ASCII reader in Java,self.java +34,1301335227,22,Two monks took their argument to Java master Kaimu They asked him Is null a value or the absence of a value,thecodelesscode.com +10,1301324457,13,Java Linux and using the desktop s stock icons in a Swing GUI,onyxbits.de +0,1301273996,11,Play Elastic Search Module New 0 0 5 Release with Screencast,geeks.aretotally.in +26,1301227665,6,JDK 7 The New Objects Class,marxsoftware.blogspot.com +27,1301205798,5,JDK 7 The Diamond Operator,marxsoftware.blogspot.com +0,1301197128,3,Complete noob here,self.java +6,1301091134,10,Test your business logic in a remote or embedded container,jboss.org +8,1301091073,4,Fast Code eclipse plugin,fast-code.sourceforge.net +5,1301075068,10,IKVM 0 46 released OpenJDK 6b22 source partial IPv6 support,weblog.ikvm.net +21,1301054549,13,The story of how fuzzy queries in Lucene 4 x became 100x faster,blog.mikemccandless.com +0,1301036263,13,RIM announces Java and Android runtimes for the Playbook beta of native SDK,itwriting.com +1,1301035710,5,The Closing Down of Java,weiqigao.com +3,1301016436,11,Debugging from dumps Diagnose more than memory leaks with Memory Analyzer,ibm.com +18,1300999260,8,The impact of Garbage Collection on Java performance,blog.dynatrace.com +0,1300994677,10,Update Java and you may get annoying McAfee scanner too,networkworld.com +0,1300892443,10,Invalid keystore format and keytool genkey issues during Jar signing,baselogic.com +3,1300865348,8,JRebel 4 0 M1 HotSwap Class 1 EJBs,zeroturnaround.com +81,1300852089,4,What the hell Java,imgur.com +2,1300815539,8,LEGO Java III Apache Camel Routing and Testing,canoo.com +0,1300781604,11,Does anyone know if importing Java jar files only is possible,self.java +8,1300768092,7,Java EE 7 specification gets unanimous approval,infoworld.com +0,1300757615,23,What s in store for Java developers when they adopt each of the cloud delivery models and either public or private cloud scenarios,developer.com +4,1300749159,6,Understanding Struts and Spring code visually,blog.architexa.com +9,1300736187,4,Framework less Dependency Injection,draconianoverlord.com +8,1300625556,7,URLrewrite add filters rules in web xml,tuckey.org +0,1300590872,22,I m going through Stanford s cs106a course and cannot figure out what i ve done wrong in this homework Any help,self.java +0,1300566887,22,What happened at The Server Side Java Symposium See an organized list of live blog posts by Scott Selikoff and Jeanne Boyarsky,selikoff.net +0,1300450652,5,Professional Java Application Programming Services,jspwebdevelopment.com +0,1300439728,15,xpost from IWTL How to make a turn based multiplayer card game on the web,self.java +9,1300436927,17,An implementation of yield as seen in python in Java Makes iterators a lot easier to write,chaoticjava.com +10,1300436927,17,An implementation of yield as seen in python in Java Makes iterators a lot easier to write,chaoticjava.com +8,1300432450,9,Developers still skeptical of Oracle s stewardship of Java,theserverside.com +3,1300409257,8,How To Embedding a GEF Editor in Eclipse,blog.architexa.com +20,1300369112,17,sorry but this is the Spring RTS Engine and has nothing to do with java enterprise applications,springrts.com +0,1300366694,6,Java in Flux Utopia or Deuteranopia,blogs.oracle.com +3,1300324402,6,Hey guys brand new to Java,self.java +4,1300311661,7,Java EE 7 specification gets unanimous approval,techworld.com.au +51,1300269847,9,Fresh up your Eclipse with super awesome color themes,eclipsecolorthemes.org +4,1300248690,15,Oracle s Java EE 7 Plans Include Adding Cloud and HTML5 Support to the Platform,infoq.com +4,1300218511,3,Java Reference Books,self.java +2,1300203795,8,Listening for Shift and Control keys by themselves,self.java +3,1300129772,5,Not All Singletons are Evil,alexruiz.developerblogs.com +0,1300055423,3,Recursion help needed,self.java +1,1299971457,9,Java interface implementation error that is driving me crazy,self.java +14,1299939371,5,Eclipse JPA Diagram Editor Project,wiki.eclipse.org +15,1299939018,5,Apache Tomcat 7 0 11,tomcat.apache.org +3,1299938908,4,Bouncy Castle 1 46,bouncycastle.org +7,1299911012,17,Offline Java docs in Windows CHM format so handy I keep them on a global shortcut key,allimant.org +1,1299906216,11,Dependency Injection in Yeti the ML derived language for the JVM,chrisichris.wordpress.com +1,1299859828,6,What exactly does JComponent getRootPane return,self.java +17,1299826066,8,Simple Java XML Parser SJXP 2 0 Released,thebuzzmedia.com +0,1299820532,7,A quick and easy question about strings,self.java +6,1299803858,10,A simple intro to creating a MVC framework Using GEF,blog.architexa.com +0,1299795039,3,need some help,self.java +0,1299770823,7,Where should I continue to learn java,self.java +0,1299683957,6,Working easier with DataSources in SmartGWT,blog.bigpixel.ro +9,1299678967,7,Linked lists arrays and iteration with enums,self.java +7,1299643981,10,Anyway to look at source code for java library classes,self.java +1,1299632144,17,I ve been working on this for a few days it s time to ask for help,self.java +1,1299606887,6,JBOSS SEAM Stateless Scope Conversation Stateful,stackoverflow.com +9,1299605030,8,Anyone using Greenfoot to teach their child ren,self.java +2,1299587382,10,GlassFish Embedded Server a blog a screencast and a doc,blogs.sun.com +27,1299567264,5,Design Patterns in the JDK,javacodegeeks.com +1,1299511845,8,Testing the layered arquitecture with Spring and TestNG,carinae.net +32,1299497865,12,Java Reference Objects How I Learned to Stop Worrying and Love OutOfMemoryError,kdgregory.com +0,1299477478,6,Publish on Facebook WALL using Java,hiteshagrawal.com +0,1299440035,12,How course requirement for Java compares to traditional Oracle certs and Spring,selikoff.net +14,1299438239,4,Maven 3 0 3,maven.apache.org +2,1299436910,8,Maven Lucene Plugin 1 0 Documentation and Usage,paritoshranjan.wordpress.com +0,1299312123,9,JIT vs Google V8 Can the JVM Get Faster,self.java +15,1299250240,8,What is a good beginner book for Java,self.java +5,1299229002,7,Nginx Proxy to Jetty for Java Apps,sacharya.com +0,1299225547,7,MS Access and Java App Help Requested,self.java +14,1299223717,3,org json JSONArray,self.java +2,1299187596,10,Immanix a Java library to process XML using parser combinators,jawher.wordpress.com +2,1299186249,7,Diver Dynamic Interactive Views For Reverse Engineering,diver.sourceforge.net +9,1299186149,7,Eclipse Helios SR2 Now Available for Download,eclipse.org +7,1299184697,10,Learning modern Java I need resources for an experienced developer,self.java +1,1299184498,1,JBPM5,kverlaen.blogspot.com +0,1299184095,8,JPA Performance Benchmark JPAB where are the versions,jpab.org +19,1299064769,11,Survey Finds Many in Java Community Worried About Oracle s Leadership,readwriteweb.com +0,1299031082,6,Quick question for a Java expert,self.java +18,1299012223,6,Oracle making Java Solaris certifications pricier,networkworld.com +11,1298970568,10,Kiwidoc A fresh way to browse search javadoc android docs,kiwidoc.com +9,1298911654,5,GlassFish 3 1 is here,blogs.sun.com +12,1298905058,3,BeanShell back again,jojava.blogspot.com +4,1298903689,6,Unit Testing in Java Broad Assertion,softwaretestingmagazine.com +3,1298665946,9,Is there a good JSP editing plugin for Eclipse,self.java +3,1298566739,11,Oracle Announces the JDK 7 Developer Preview but Licensing Concerns Persist,infoq.com +1,1298533986,6,JUnit 4 Cleanup test on timeout,self.java +2,1298531738,8,Prevalence of Non Java JVM Languages on JVM,marxsoftware.blogspot.com +3,1298528539,9,Implementing Ajax Authentication using jQuery Spring Security and HTTPS,raibledesigns.com +25,1298489342,15,The JDK 7 Developer Preview a k a Milestone 12 builds now available for download,blogs.sun.com +14,1298463019,8,Java Bytecode Fundamentals Using Objects and Calling Methods,zeroturnaround.com +7,1298445506,8,Java development 2 0 Climb the Elastic Beanstalk,ibm.com +0,1298390022,8,Core Java1 by nageswara rao Book Review Bookchums,bookchums.com +4,1298297574,6,Are IdGeneratorStrategy Identity values ever reused,self.java +5,1298244713,4,Speech Recognition in Java,self.java +6,1298189821,9,Anti Aliasing in Java 2D is an Expensive Operation,thebuzzmedia.com +2,1298188847,10,Contracts for Java Another Entrant in Java Programming by Contract,marxsoftware.blogspot.com +18,1298153993,9,Oracle and IBM carve up open source Java leadership,theregister.co.uk +0,1298148642,13,How much Java should I know before applying to a beginning programming position,self.java +0,1298030155,9,Money gone people gone Oracle s open source blowback,dzone.com +0,1298011718,8,Oracle gives 21 new reasons to uninstall Java,theregister.co.uk +4,1298011313,13,Big distributed and fast Ehcache sucks up search Java for the NoSQL generation,theregister.co.uk +14,1298007238,7,Infamous Java Floating Point Bug Finally Fixed,java.dzone.com +3,1297978337,5,Hibernate 3 6 1 Final,in.relation.to +0,1297971854,4,Tomcat 6 0 32,tomcat.apache.org +1,1297971748,5,Java SE 6 Update 24,oracle.com +1,1297971266,11,Firebird usage with SchemaSpy Java based Graphical Database Schema Metadata Browser,firebirdnews.org +15,1297969672,7,Are there any good Java developer podcasts,self.java +3,1297963570,22,If Oracle ever decides to replace Duke as the Java mascot I can t think of a more appropriate choice than this,i.imgur.com +4,1297951328,17,The Basement Coders Developer Podcast Episode 33 Java is a Dead End from Stockholm s JFokus Conference,basementcoders.com +3,1297947070,9,Quality Analysis Evening with the Java User Group Lausanne,blog.martinig.ch +0,1297820635,22,This one has had me puzzled for about 1 5 hours Probably something stupidly simple but I can t figure it out,self.java +30,1297811113,7,JRE Version 6 Update 24 now available,java.com +7,1297798818,5,Tapestry in 10 minutes video,blog.markwshead.com +1,1297792546,10,Using a JFrame as a console window for a program,self.java +0,1297635926,7,How do I insert objects into arrays,self.java +0,1297626855,9,How do you get a method from another class,self.java +0,1297614214,5,Questions about actionPerformed ActionEvent e,self.java +14,1297606965,9,Chronon time travelling debugger beta now available for download,chrononsystems.com +2,1297556152,32,Java web services Understanding and modeling WSDL 1 1 Learn how WSDL 1 1 defines web services and how WSDL documents can be modeled in the Java language for verification and transformation,ibm.com +0,1297532286,13,Java Kicks Rails Butt Are Java developers everything that s wrong about Java,java.dzone.com +28,1297501945,11,Not Dead Yet The Rise and Fall and Rise of Java,redmonk.com +4,1297358489,10,Single signon between java app and iis server Please help,self.java +12,1297353953,11,Oracle Releases Hotfix for the Double parseDouble Bug in Record Time,infoq.com +3,1297275825,13,Cogitations and Speculations Posts on the Rise and Fall of JVM Dynamic Languages,marxsoftware.blogspot.com +39,1297273025,11,Contracts for Java annotating your code with preconditions postconditions and invariants,code.google.com +5,1297255631,6,Erjang A JVM based Erlang VM,infoq.com +5,1297255631,6,Erjang A JVM based Erlang VM,infoq.com +3,1297255063,6,Java and Oracle One Year Later,marxsoftware.blogspot.com +0,1297252964,6,Using Java 6 Processors in Eclipse,java.dzone.com +0,1297220688,5,Need some help starting out,self.java +0,1297202749,4,I hate my IDE,i.imgur.com +10,1297142658,10,Pros and cons Applet Java Web Start or something else,self.java +24,1297013923,6,Using Java 6 processors in Eclipse,kerebus.com +7,1296998877,9,WherAmI Locating the installation directory of your Java application,onyxbits.de +0,1296977779,10,Determining Level of Java Debug in Class File via javap,marxsoftware.blogspot.com +2,1296932165,8,New to Java advice on 2D graphics options,self.java +1,1296902358,6,Tynamo federated authentication use cases Tapestry,tynamo.org +15,1296846637,8,Is it worth switching from Netbeans to Eclipse,self.java +24,1296869458,7,Google open sources Contracts for Java cofoja,google-opensource.blogspot.com +0,1296868226,12,Please Help Working on a project for my AP Computer Science class,self.java +6,1296837377,5,Rating OpenJDK new Governance proposal,webmink.com +0,1296833053,13,Can anyone tell me how to check JDK version Not Java Version JDK,self.java +32,1296776888,5,Finished open source Java game,self.java +5,1296773498,14,Starting out in Java No previous coding experience Sites suggestions to help me out,self.java +3,1296732535,6,Proposal Dependency Catalog for Maven Eclipse,rgladwell.wordpress.com +0,1296710291,6,4 ways to traverse Java map,javahowto.blogspot.com +0,1296646170,12,How to Encrypt username and password for JNDI in Tomcat Server xml,scribblejava.wordpress.com +0,1296610735,9,Get a Job Sr Software Engineer Java Orem Utah,jobsbyerin.blogspot.com +17,1296584597,8,Stuart Marks on Java 7 Diamond Operator Usage,stuartmarks.wordpress.com +4,1296572895,2,Java Swing,self.java +35,1296509540,6,Visualising Garbage Collection in the JVM,redstack.wordpress.com +3,1296502256,10,Oracle Nominates SouJava to Replace Apache on the JCP EG,infoq.com +0,1296493872,8,Java Is Code Smell Ruby Is Clean Code,codecleaning.com +0,1296300564,7,HowWhy not to write Factorial in Java,funcall.blogspot.com +10,1296250800,6,Java cert misses the mark now,self.java +0,1296248635,3,How do I,docs.codehaus.org +0,1296160429,10,Question How do I implement Iterable in a Linked List,self.java +7,1296138892,10,Sonatype Blog Using the Maven Release plugin Things to know,sonatype.com +0,1296126096,9,Good book online resource for learning about the JVM,self.java +0,1296105109,15,This interface is the definition of the interface implemented by all implementations of this interface,download.oracle.com +6,1296094013,8,Java Kicks Ruby on Rails in the Butt,eclipse.sys-con.com +0,1296089299,7,Get a Job Java Developer Bay Area,jobsbyerin.blogspot.com +58,1296032118,7,How not to write Factorial in Java,chaosinmotion.com +2,1296011163,12,JSF 2 fu Best practices for composite components Implement extensible custom components,ibm.com +0,1295990020,12,Java s File Names and Class Names Why is Java so Picky,beginwithjava.blogspot.com +10,1295951698,4,Ant A Critical Retrospective,ebuild-project.org +0,1295950044,7,Daily Dose Rymer s Future of Java,java.dzone.com +8,1295942132,4,The Java Ecosystem Infographic,readwriteweb.com +12,1295941027,13,Why The Future of Java is with Large Customers not Innovative Young Developers,readwriteweb.com +10,1295904305,11,trying to learn jsp What is the best book to get,self.java +0,1295837572,11,Implementing drag and drop with Java Has anybody done this before,javaworld.com +8,1295754029,19,Java development 2 0 Big data analysis with Hadoop MapReduce How mountains of data become gold mines of information,ibm.com +4,1295683787,13,Oops No copied Java code or weapons of mass destruction found in Android,zdnet.com +15,1295675967,6,InfoQ OpenJDK Mac OSX Port available,infoq.com +3,1295637439,5,GUI Java Object Property Editor,self.java +0,1295482837,9,Doug Lea Discusses the Java 7 Fork Join Framework,infoq.com +16,1295435583,12,my dopewars clone in java swing any feedback code reviews comments appreciated,code.google.com +0,1295420169,4,Welcome to my world,gist.github.com +0,1295403674,5,Writing mobile apps in Java,self.java +9,1295392816,10,Is it possible to use Apache Harmony to play Minecraft,self.java +0,1295387407,8,Anyone mind helping me with a JLayeredPane issue,reddit.com +4,1295376227,6,Apache Tomcat 6 0 30 Released,tomcatexpert.com +37,1295336331,5,JDK 7 is Feature Complete,infoq.com +0,1295205786,3,Tutorials on iTunes,self.java +0,1295170062,2,Code Blocks,beginwithjava.blogspot.com +0,1295075747,13,Can someone explain to me in depth if possible the need for recursion,self.java +0,1295057535,10,job shift requires portlet maintenance not sure where to start,self.java +1,1295022026,11,well at least now I know it s written in Java,i.imgur.com +16,1294906322,16,Huge war over whether Java is pass by value or pass by reference repost from proggit,theserverside.com +0,1294847121,18,Help Me ObiRedditKenobe How to transition from a BA in foreign policy to a masters in programming computers,self.java +1,1294844302,28,Start a new Java class on Thursday haven t done Java in over a year Any good texts or sites you guys know of to refresh my memory,self.java +0,1294827829,11,Twaves How ZeroTurnaround follows team app and business activity using Twitter,zeroturnaround.com +11,1294737349,8,Sonatype introduce new Maven IDE based on m2eclipse,java.dzone.com +9,1294691978,8,Martin Odersky on the Future of Scala video,infoq.com +0,1294618469,13,Use Vector or something else to make an array is of variable length,self.java +1,1294283945,9,Dunno if this should go here or r android,self.java +3,1294238300,3,JBoss 6 released,pcworld.com +2,1294214737,5,Should I Still Learn Java,beginwithjava.blogspot.com +1,1294198144,8,How to access a website via Java program,self.java +0,1294094560,6,Core Java Developer Salt Lake City,jobsbyerin.blogspot.com +46,1294057956,3,Java Bytecode Fundamentals,arhipov.blogspot.com +0,1294046810,7,JLabel setText is not changing the text,self.java +26,1294007446,8,Joshua Bloch on how to design an API,lcsd05.cs.tamu.edu +6,1293902638,8,Spring Property Annotations version 0 1 8 released,rgladwell.wordpress.com +7,1293674203,14,With the Spring 3 Formatter SPI you can build custom formatting capabilities and annotations,developer.com +47,1293640600,15,libphonenumber Google s common Java library for parsing formatting storing and validating international phone numbers,code.google.com +0,1293612579,4,The Do While loop,eh4.com +1,1293332479,4,Leading Zeroes in Literals,self.java +0,1293152304,19,Convert a JPA based Java EE Web application to OSGi with Blueprint object injection in WebSphere Application Server V7,ibm.com +0,1293031979,11,Substance project lead annoyed moves to github java net is dead,pushing-pixels.org +4,1293012217,15,All Activities Gitorious Spring got a social code platform allow user to pull and push,git.springsource.org +37,1292991567,14,Java concurrency bug patterns for multicore systems Six lesser known Java concurrency bug patterns,ibm.com +1,1292961544,8,BigDecimal Blues doing calculations within a financial application,self.java +2,1292957085,5,Tapestry5 2 Live Service Reloading,java.dzone.com +0,1292941773,3,Question on Java,self.java +13,1292840711,12,The way the vendor describes it this garbage collector sounds really great,artima.com +0,1292822475,5,Great Java Alternative for MediaWiki,jimenezconsult.com +4,1292806588,6,The Deal Stephen Colebourne s Weblog,jroller.com +5,1292798305,35,Best way place to learn Java for someone who knows C pretty well Don t need to know how a for loop or if statement works but I want to know syntax best work environment,self.java +7,1292787826,14,Gradle 0 9 released new incremental builds build composition daemon IDEA plugin and more,docs.codehaus.org +0,1292775579,8,java noob need a little bit of help,self.java +7,1292731911,9,Java web services The state of web service security,ibm.com +4,1292724502,7,InfoQ HyperGraphDB Data Management for Complex Systems,infoq.com +2,1292711920,15,How to Design a Good API amp Why it Matters Joshua Bloch presentation Nov 2006,infoq.com +7,1292711365,8,Recent Joshua Bloch interview on Java and Programming,infoq.com +2,1292682905,5,Help overloading default classloader please,self.java +4,1292682905,5,Help overloading default classloader please,self.java +0,1292622740,8,Java SE 6 update 23 is now out,oracle.com +0,1292606825,3,Java Optimization Question,self.java +11,1292543847,22,Google donating the WindowBuilder Java GUI designer and CodePro Profiler to Eclipse Foundation Donated code is worth over 5 million says Google,developer.com +19,1292529440,11,Thinking in Clojure for Java Programmers Part 1 A Gentle Intro,blog.factual.com +1,1292517846,8,Integrating ActiveMQ With Tomcat Using Local JNDI TomcatExpert,tomcatexpert.com +1,1292506964,5,Patch a Java class file,androguard.blogspot.com +1,1292455478,4,Question about layout managers,self.java +6,1292446254,4,Java s loose threads,code.technically.us +38,1292430118,8,Google contributes WindowBuilder amp CodePro Profiler to Eclipse,dev.eclipse.org +17,1292325366,15,Oracle and Myriad Group mobile software company and Google ally sue each other over Java,fosspatents.blogspot.com +2,1292300065,7,Apache pulls out of Java Community Process,blogs.techrepublic.com.com +1,1292262663,15,Remember why we don t have Java 7 Bill the Plumber The anti Apache side,bill.burkecentral.com +0,1292217337,12,So I m thinking about un installing java Give me your thoughts,self.java +2,1292191887,5,Review of Language Implementation Patterns,the-reviews.appspot.com +7,1292090719,15,I work in Atlanta kind of a hub of Java jobs What other places exist,self.java +0,1292085671,6,OSX Eclipse JOGL Help setting up,self.java +31,1292028124,9,What Java web development stack feels right to you,self.java +6,1291958053,6,we don t want skinner wars,self.java +29,1291953180,4,IntelliJ IDEA 10 Released,blogs.jetbrains.com +54,1291922446,8,Apache Resigns from Java Community Process Executive Committee,networkworld.com +6,1291921451,10,Spring Framework and Magnolia CMS Creating Complex Java based Websites,developer.com +2,1291762151,5,Refactoring Netbeans GUI Builder code,self.java +20,1291755920,40,The way we look at it now Oracle is preventing us from demonstrating the compatibility of Apache Harmony Magnusson said Oracle is now ensuring that we can t prove compatibility although it our sincere intention and desire to do so,devx.com +0,1291739841,3,Beginner java help,self.java +0,1291692945,10,Converting a csv spreadsheet to mysql db on a timer,self.java +0,1291656651,8,Issue with Connector x post from r apache,reddit.com +3,1291649793,7,4 Reasons Why Maven Nested Modules Suck,rgladwell.wordpress.com +18,1291532102,9,Whats the quickest way to get started learning Java,self.java +0,1291497427,10,Writing a research paper about Java for my English class,self.java +29,1291487520,12,James Gosling on Apple Apache Google Oracle and the Future of Java,youtube.com +3,1291456431,3,Dump your JVM,androguard.blogspot.com +0,1291394736,12,Streamline Your Java Web Applications Using Java Server Faces and Managed Beans,informit.com +33,1291394360,4,practice your JAVA skills,webster.cs.washington.edu +23,1291211306,8,Hudson may fork to escape from Oracles control,hudson-labs.org +9,1291190950,11,The ugly story of what s up with Oracle and Hudson,hudson-labs.org +0,1291047387,6,Another Look at Java Matrix Libraries,chasethedevil.blogspot.com +7,1291043696,9,Creating a Project to Manage Database Change with Liquibase,discursive.com +0,1290535297,9,Java Is A Dead End For Enterprise App Development,blogs.forrester.com +0,1290459551,10,Open to your thoughts on the multi port server approach,self.java +0,1290451864,6,what am i doing wrong here,self.java +24,1290448195,29,Oracle puts Java 7 and 8 features up for Java Community approval providing a clear indication of what the next two major versions of Java are likely to include,developer.com +0,1290405094,4,Larry Ellison Prostitutes Java,holdenweb.blogspot.com +1,1290381013,10,Showing the source code unescaped view of a Java String,wp.me +1,1290295484,15,New Lombok features in next version Scala like val keyword Delegate Getter lazy true Log,groups.google.com +0,1290239971,8,What you are saying about the Java crisis,itwriting.com +0,1290199449,8,Project Ideas Data Structures amp Algorithms in Java,self.java +0,1290187291,14,Generic Application Error I just want to know where the nearest wholesale club is,bjs.com +8,1290115063,7,Java Style for the C C Programmer,self.java +14,1290131089,10,A talk with Brian Goetz on the future of Java,zenbi.nl +0,1290091832,10,Two tiny vim macros to help with beans propertyChange events,self.java +3,1290049081,12,Silicon Valley Java User s Group live streaming feed from every meeting,ustream.tv +17,1290038148,12,The Java crisis what are Oracle IBM Google and Apache fighting over,guardian.co.uk +1,1290035284,15,Extend the JDBC and LDAP based implementations of Spring Security to address multi tenant environments,developer.com +32,1290000147,9,Oracle Announces JSRs for Java 7 and Java 8,infoq.com +0,1289982751,6,JRebel 3 5 Open Source Galore,zeroturnaround.com +0,1289981787,6,A little help I m new,self.java +14,1289981147,7,Java 7 and Java 8 JSRs Released,marxsoftware.blogspot.com +15,1289897049,7,Apache strikes back in Oracle Java standoff,theregister.co.uk +0,1289894401,7,Oracle Responds to the Apache Software Foundation,infoq.com +0,1289845491,5,Need help with beginner Java,self.java +24,1289818753,5,Apple Reveal Further OpenJDK Details,java.dzone.com +0,1289797239,6,Need help with Beginner Java Assignment,self.java +0,1289770177,3,REST Architecture Simplified,blog.architexa.com +6,1289678518,8,Share your coding style Comment on others style,self.java +2,1289663360,9,The Java crisis and what it means for developers,itwriting.com +31,1289662496,13,Google We didn t infringe on Java Oracle s smoking code was rigged,zdnet.com +2,1289662227,14,Java Developers Don t Throw Out Your Mac Yet Apple Will Contribute To OpenJDK,java.dzone.com +27,1289640452,3,Apple Joins OpenJDK,blogs.sun.com +57,1289570278,10,Oracle and Apple Announce OpenJDK Project for Mac OS X,apple.com +11,1289565302,17,I just learned about in Java Is there anywhere I can learn about cool stuff like that,self.java +16,1289544850,9,The Story of a Tweet Oracle s Premium JVM,blogs.sun.com +0,1289532547,21,Hey Guys I posted this question on Stack Overflow earlier but I didn t get any answers Could you help please,stackoverflow.com +1,1289514553,7,Dealing with Complex Code Where to Start,blog.architexa.com +0,1289416269,8,Apache Foundation threatens to resign from the JCP,blogs.apache.org +9,1289404038,20,Red Hat is not in the same open source boat as Apache when it comes to Oracle s Java licensing,blog.internetnews.com +26,1289403730,8,Apache drops the hammer on Oracle over Java,zdnet.com +0,1289349515,4,JOB Java Opportunity NYC,self.java +2,1289342351,8,Spring Property Annotations version 0 1 7 released,rgladwell.wordpress.com +4,1289339597,7,Understanding Code Visually Three Ways that Work,blog.architexa.com +8,1289333420,7,Apache declares war on Oracle over Java,computerworld.com +28,1289324003,16,And the fight back begins Apache Bares its Teeth Threatens to Vote Against Java SE 7,java.dzone.com +8,1289251093,14,Advice wanted I use JMonkeyEngine for my game should I move over to Ardor3D,self.java +0,1289194440,6,What language to learn after Java,self.java +0,1289191583,7,Premium JVM thoughts amp Open JVM proposal,jroller.com +14,1289053066,5,Scott McNealy Predicts Java Forking,java.dzone.com +56,1289044627,6,Oracle plans free and premium JVMs,theregister.co.uk +2,1289012566,15,Sneaking unsigned values from Jython through Java to C and back again Stack Overflow Question,stackoverflow.com +0,1288968035,13,What are the best resources for learning to make complete applications with SWT,self.java +4,1288905930,6,Better diagrams in 5 easy steps,blog.architexa.com +10,1288827932,12,What do people use to search Maven repositories that doesn t suck,self.java +0,1288822293,9,An Eclipse Tool Focusing on the Needs of Developers,dzone.com +1,1288783916,12,Annotation based API for injecting property values into Spring 2 5 components,code.google.com +0,1288783623,5,Yet Another Generic DAO yagdao,altuure.com +46,1288773039,3,Is Swing Dead,jroller.com +0,1288742880,8,Oracle vs Google reminds me of Matrix Revolutions,blog.jonasbandi.net +17,1288715303,7,Introducing the Simple Java API for ODF,robweir.com +3,1288438066,5,GWT 2 1 is out,ongwt.com +4,1288361249,12,Question Is Java always so cpu intensive or is it just Minecraft,self.java +5,1288327410,10,Oracle Claims Google Copied Java Code Not So Fast Though,osnews.com +1,1288327410,10,Oracle Claims Google Copied Java Code Not So Fast Though,osnews.com +23,1288323585,9,Java Is Under Siege Will Oracle Let It Burn,gigaom.com +21,1288286521,7,Oracle Google directly copied our Java code,itworld.com +10,1288216661,13,Take a Deep Breath Then Vote for Eclipse Our View on the JCP,dev.eclipse.org +0,1288187967,8,JSF 2 Client Behaviors as a reusable JAR,cimafonte.it +0,1288139818,3,Amateurish Debugging Questions,self.java +16,1288126523,8,Babylon 5 amp the Great War of Java,jroller.com +0,1288119259,3,Enhanced foreach loop,self.java +0,1288113613,8,Java conflicts brew between Oracle and JCP insiders,infoworld.com +0,1288110448,7,Essentials of JAVA Programming Hands on Guide,examville.com +13,1288105597,7,Dear Oracle Get a Clue Ian Skerrett,ianskerrett.wordpress.com +0,1288071604,12,Apple dropping Java Two observations about the whole Apple deprecating Java thing,chaosinmotion.com +23,1288036659,12,More Java Mac with good argument to decouple desktop Java from backend,subfurther.com +9,1287997326,6,Thoughts on an Apple Java divorce,blogs.tedneward.com +2,1287901965,7,Looking for feedback on Java based CMS,self.java +14,1287880602,7,Ten Tips for Using Java Stack Traces,marxsoftware.blogspot.com +10,1287838118,5,H2 release 1 2 144,h2database.com +35,1287777209,4,Doug Lea quits JCP,gee.cs.oswego.edu +30,1287748936,12,James Gosling responds to Steve Jobs comments on Apple s Java discontinuation,nighthacks.com +12,1287722656,8,Email from Steve Jobs regarding recent Java announcement,flickr.com +0,1287696949,7,Difference between inheritance and interface in java,self.java +0,1287641587,11,I would just like to say Apache Wicket is freaking awesome,self.java +12,1287658925,10,Still having the totally GridBag experience Here s the remedy,onyxbits.de +0,1287658628,3,Apple deprecates Java,alblue.bandlem.com +57,1287657830,6,Apple deprecates Java on OS X,developer.apple.com +0,1287593735,11,Filling jsp combobox with arraylist from DB get java lang NullPointerException,self.java +13,1287614612,13,Ensure a bright future for Java Vote Bob Lee for the JCP EC,blog.crazybob.org +19,1287583563,7,IBM Java defection leaves Apache sourcers shellshocked,theregister.co.uk +3,1287558273,5,Have you checked the Java,blogs.technet.com +6,1287547428,8,Java surpasses Adobe kit as most attacked software,theregister.co.uk +5,1287451332,12,Here are the 10 most notable new features in Maven 3 0,developer.com +15,1287446645,8,What open source projects should I participate in,self.java +0,1287332125,7,Java extensions boost development of parallel apps,itworld.com +0,1287248961,8,How to declare and print variables in Java,eh4.com +0,1287002312,3,Canadian Address Parsing,self.java +12,1286994933,13,Ask r java Is there any library to edit office files in Java,self.java +0,1286987811,8,InfoQ IBM junta se no desenvolvimento do OpenJDK,infoq.com +2,1286953578,11,GWT 2 1 RC1 Brings Features Initially Scheduled for 2 2,infoq.com +15,1286917905,9,Red Hat hails IBM s move to Oracle OpenJDK,blog.internetnews.com +16,1286896154,7,Oracle and IBM join together on OpenJDK,blogs.computerworld.com +17,1286883051,10,Deterministic Parallel Java Brings Safety and Modularity to Parallel Programming,hpcwire.com +5,1286875194,8,Adam Bien Java Developer of the Year 2010,in.relation.to +1,1286843914,3,IBM Joins OpenJDK,infoq.com +1,1286843022,7,IBM and Oracle to Collaborate on OpenJDK,blogs.sun.com +2,1286833946,8,Legitimate issues with Java Java puzzlers youtube talk,self.java +37,1286824274,12,IBM joins the OpenJDK community will help unify open source Java efforts,sutor.com +0,1286811106,5,Java 4 Ever video trailer,firstdigest.com +7,1286735007,17,I am the mighty overlord of all that is JavaRanch and I am not a furry fetishist,coderanch.com +0,1286664170,9,Looking to get into Java for Browser Automation Bots,self.java +0,1286597673,15,Do you think the popularity of Minecraft will lead to increased interest in Java programming,self.java +0,1286571877,12,Hey guys I m new to java and would love some guidance,self.java +23,1286558319,4,Maven 3 0 Released,infoq.com +11,1286492782,6,Async HTTP Client 1 2 0,codemeself.blogspot.com +0,1286443999,6,Text not Printing to JText Area,self.java +0,1286421279,4,Need help more inside,self.java +4,1286405455,12,Java and eventually Android with a C background How best to go,self.java +0,1286378816,9,Simple way to get a Maven jar dependency graph,self.java +20,1286294935,5,Play 1 1 Release notes,playframework.org +0,1286213074,2,Red5 development,self.java +29,1286197138,8,Everyone but Oracle demands Java independence The Register,theregister.co.uk +0,1286135300,12,How to stop Java socket from accepting null input and interrupting typing,self.java +25,1286026585,5,JavaOne 2010 Upcoming Java Features,artima.com +16,1285911308,10,Oracle versus the JCP as Java s future is debated,itwriting.com +0,1285896380,6,Passing data between 2 concurrent threads,self.java +0,1285847218,5,Java One From Far Away,weblogs.java.net +0,1285816998,2,Homework Help,self.java +5,1285757926,6,What are your experiences with jmonkey,self.java +0,1285780385,8,Open a browser window inside a Java Application,self.java +21,1285770324,12,Why I m going to stop bundling the JRE with my games,catnaplab.com +7,1285754218,6,Why do some people dislike Java,self.java +6,1285740137,10,InfoWorld review Top Java programming tools IDEA eclipse netBeans JDeveloper,infoworld.com +4,1285706857,5,Call for applets Ultrastudio org,ultrastudio.org +1,1285664975,5,JPA Criteria API by samples,altuure.com +4,1285649651,12,One object two synchronized methods Are they both synchronized together or separately,self.java +16,1285625437,3,Introduction to JUnit,methodsandtools.com +6,1285593087,7,Doug Lea Upcoming java util concurrent resyncs,cs.oswego.edu +2,1285529384,7,How to embed Jetty Server for JUnit,developers-blog.org +2,1285495515,6,Gstreamer vs JavaFX for Java Video,self.java +3,1285350683,4,Great feature for Eclipse,self.java +2,1285314690,4,Maven Love and Hate,java.dzone.com +4,1285269818,11,Java benchmarks thoughts on Vogar Caliper benchmarks from an android developer,elliotth.blogspot.com +23,1285257034,13,The seven most notable Tomcat 7 features and enhancements with working code examples,developer.com +5,1285228441,10,Sun Didn t Like Google s Handling of Android Either,marxsoftware.blogspot.com +2,1285191861,8,Any examples or help with 2 legged OAuth,self.java +21,1285172817,8,Java Creator James Gosling Why I Quit Oracle,eweek.com +9,1285166014,5,Backwards Incompatible Java two features,jroller.com +1,1285156789,7,A Response to Ineffectual Java NG Proposals,blog.fogus.me +14,1285136832,6,Oracle stamps authority on Java roadmap,theregister.co.uk +12,1285135942,5,The Next Big JVM Language,jroller.com +3,1285098630,9,Star Wars The Old Republic powered by Oracle Java,blog.internetnews.com +2,1285043322,8,Should Java have some kind of Fractional type,self.java +32,1285050682,9,Oracle to Discontinue JavaFX Script Will Use Java API,java.dzone.com +2,1285042739,6,Spring AspectJ Hazelcast Method Caching Aspect,briandupreez.net +13,1285015636,10,Are java certifications worth the money to take the tests,education.oracle.com +0,1284946356,4,Easy java problem Help,self.java +3,1284773845,25,Ask Java Is a web application name always the first portion of the URL s path Can there ever be paths before the webapp name,self.java +23,1284725381,9,Google Relaunches Instantiations Developer Tools Now Available for Free,googlewebtoolkit.blogspot.com +7,1284704432,4,Spring 3 and JSON,java.dzone.com +3,1284678239,16,JPA 2 0 introduced criteria queries typesafe queries that are more object oriented than JPQL queries,developer.com +1,1284656742,7,Open source project for freshman CS student,self.java +1,1284656742,7,Open source project for freshman CS student,self.java +4,1284499357,10,Has anyone used PrimeFaces on top of JavaServer Faces JSF,self.java +1,1284475714,7,long binary data via JMX or JMS,self.java +1,1283978472,10,Spring 3 OXM Castor JAXB JibX and xmlBeans And XStream,briandupreez.net +33,1283966081,4,Re thinking JDK 7,blogs.sun.com +4,1283938324,7,Getting back into Java after 4 years,self.java +42,1283931484,13,Here is why I use Java Tell me where I am going wrong,self.java +2,1283920081,5,Looking for Java educational videos,self.java +9,1283891404,11,Wanted Java tutorials that just show you how to build things,self.java +8,1283692049,12,How to get a java swing program to work in a browser,self.java +1,1283634546,6,JDesktopPane Tiling Cascading algorithm for JInternalFrameS,onyxbits.de +1,1283627670,18,Just starting to use JAVA can I get some helpful fingers to point me in the right direction,self.java +28,1283567369,11,Java It s not Dead Folks It s Doing Just Fine,readwriteweb.com +0,1283449151,6,Interactive Keyboard Input In Java KeyListeners,beginwithjava.blogspot.com +0,1283422669,10,How to get Generic Metadata from a Class at Runtime,altuure.com +0,1283350435,13,Question How does one run multiple Java 1 6 JRE s on OSX,self.java +4,1283275075,23,If your unit test assertions have gotten hard to read use the matcher objects provided by the Hamcrest and fluent FEST Assert libraries,developer.com +0,1283112938,3,OpenJDK bug tracker,bugs.openjdk.java.net +25,1283092043,6,The Impact of a Googless JavaOne,marxsoftware.blogspot.com +11,1283056595,6,Google backs out of JavaOne conference,infoworld.com +8,1282895927,9,ProgramD AIML bot platform in Java Create personal assistants,code.google.com +8,1282868269,7,Unicode surrogate programming with the Java language,ibm.com +0,1282851569,6,Making the Mac Speak in Java,catsonkeyboards.blogspot.com +1,1282851439,5,Calling System Commands in Java,beginwithjava.blogspot.com +12,1282700349,5,Using Game Controllers with Java,beginwithjava.blogspot.com +17,1282548899,10,5 Minute Guide to Clustering Java Web Apps in Tomcat,richardnichols.net +5,1282531839,7,More Collision Detection Bouncing the Right Way,beginwithjava.blogspot.com +8,1282190319,6,Stopping Jonathan Livingston Seagull with Java,beginwithjava.blogspot.com +25,1282068930,10,5 things you didn t know about Java Database Connectivity,ibm.com +0,1282035571,11,A Look at the Latest Trends in Men s Designer Clothes,ezinearticles.com +14,1281986578,9,Shuttleworth Oracle s Java Lawsuit An Extremely Unsophisticated Move,itmanagement.earthweb.com +11,1281961126,5,Quite the firestorm James Gosling,nighthacks.com +30,1281952798,6,Headius Thoughts on Oracle v Google,blog.headius.com +0,1281867294,1,alarms,onlineclock.net +1,1281747830,6,Greenfoot s Greenroom What a Bonanza,catsonkeyboards.blogspot.com +0,1281728887,5,Multiple Constructor Methods in Java,beginwithjava.blogspot.com +12,1281676472,9,Oracle Sue Google for Java Patent Infringement in Android,scribd.com +7,1281588532,13,Set up Hibernate second level cache with EhCache to get better read performance,developer.com +0,1281563658,9,Java s Inner Classes The Keys to the Kingdom,beginwithjava.blogspot.com +0,1281383001,7,Looking for a smart automated test system,self.java +26,1281325319,6,Java Row Major Order Still Matters,bozosort.com +2,1281146909,8,Java Web services WS Security without client certificates,ibm.com +10,1280978531,7,JVM Language Summit Numbers big and fixed,blogs.sun.com +1,1280785328,5,File copy in Java Benchmark,baptiste-wicht.com +1,1280777312,12,Interview with Mark Thomas Tomcat 7 Committer amp amp Release Manager TomcatExpert,tomcatexpert.com +0,1280738170,4,A Java performance puzzle,self.java +0,1280476394,6,Functional Programming Concepts in JDK 7,java.dzone.com +20,1280420051,7,Is Tomcat 7 in your future TomcatExpert,tomcatexpert.com +0,1280394261,5,Everytime you redeploy JRebel Ad,zeroturnaround.com +11,1280321213,12,Java IO Faster Than NIO Old is New Again The Buzz Media,thebuzzmedia.com +26,1280316395,5,Discover Java VisualVM 1 3,baptiste-wicht.com +9,1280296127,13,The Java Scripting API invoke scripts from your Java programs and vice versa,ibm.com +8,1280246023,12,javadoc search frame Javadoc incremental search for Mozilla Firefox and Google Chrome,code.google.com +6,1279897605,22,Learn the essentials of BlackBerry development so you can decide if and how the BlackBerry platform fits into your mobile development strategy,developer.com +10,1279786759,11,Permgen problems and Running Eclipse on Java 1 6 update 21,slavus.net +4,1279700977,15,What libraries would you use to stream data from one JVM to another and back,self.java +18,1279653692,8,Accelerated 2D rendering for Linux lands in JDK7,linuxhippy.blogspot.com +0,1279646940,15,Does anybody know how to enter username password information directly from Java program without browser,self.java +7,1279640657,6,Basic Tomcat clustering for Grails applications,tomcatexpert.com +1,1279624042,7,Tip Profile an OSGi application with VisualVM,baptiste-wicht.com +2,1279598389,20,Developer friendly query languages and API sets are the heart of criteria queries features in JPA 2 0 and Hibernate,developer.com +11,1279539476,10,Modern day web development with Maven Mercurial and Spring MVC,java.dzone.com +3,1279369295,8,Everyone out of the Pool Tapestry goes singleton,tapestryjava.blogspot.com +0,1279286475,6,OSGi Simple Hello World with service,baptiste-wicht.com +1,1279244670,10,Crazy way to overcome hard coded Window drive letter problem,stackoverflow.com +2,1279104608,9,Could somebody recommend a good java call graph generator,self.java +0,1279070079,19,With the UML plugin for NetBeans you can create platform independent UML models and reverse engineer them for Java,javaboutique.internet.com +2,1279051089,7,Gosling Praises Azul Open Source Initiative Javalobby,java.dzone.com +18,1279051054,5,A tour of Eclipse Helios,ibm.com +3,1279042268,23,JPA 2 0 Cache vs Hibernate Cache Get a breakdown of the different caching approaches and capabilities of JPA 2 0 and Hibernate,developer.com +0,1279009392,6,Profile your applications with Java VisualVM,baptiste-wicht.com +24,1278961893,8,Space Invaders 101 An Accelerated Java 2D Tutorial,cokeandcode.com +18,1278775977,5,JavaTM SE 6 Update 21,java.sun.com +2,1278700921,16,Portlets vs servlets for request processing How they differ and why portlets are better at it,developer.com +4,1278591555,4,Modular Java Book Review,baptiste-wicht.com +29,1278577043,9,Hibernate ditches Maven moves to Gradle as build system,community.jboss.org +17,1278519883,11,jsoup Java HTML Parser with best of DOM CSS and jquery,jsoup.org +14,1278456365,30,As some in the Java community speculate about whether NetBeans should be folded into Eclipse Oracle aims to grow its Java developer ecosystem by investing in both Eclipse and NetBeans,developer.com +3,1278430459,10,Your opinion on Java language object initialization vs object constructor,self.java +0,1278416345,6,Integrate Play Framework in IntelliJ Idea,baptiste-wicht.com +17,1278328376,5,Getting started with Play Framework,baptiste-wicht.com +2,1278286466,9,A Norwegian Java promotional video Microsoft net vs Java,feber.se +0,1278135012,8,Anyone have problems with Java in win7 x64,self.java +10,1278100929,17,Tomcat 7 includes new CSRF and memory leak protections but don t call the release stable yet,developer.com +0,1277895336,4,JR Operations and Capabilities,baptiste-wicht.com +0,1277871895,14,Dear r java I would like to learn Java and I need your advice,self.java +29,1277855071,6,Yikes this reddit needs some love,self.java +0,1277846643,24,Django has a killer feature that makes it worthwhile for Java shops to leave the comforts of the Java language its automatic admin interface,developer.com +0,1277472014,9,CVE 2010 1622 Spring Framework execution of arbitrary code,springsource.com +54,1277469317,4,Java 4 Ever Trailer,jz10.java.no +0,1277391795,5,Artifactory REST API Artifactory Confluence,wiki.jfrog.org +21,1277317537,27,Eclipse Helios gets released with 39 projects and Mike Milinkovich suggests merging Eclipse and NetBeans communities Oracle new NetBeans owner is an Eclipse Foundation member after all,developer.com +8,1277219961,6,Hudson Your Escape from Integration Hell,methodsandtools.com +19,1277158001,14,Java technology Articles online tutorials and other technical resources on Java standards and technologies,ibm.com +0,1276877328,9,Is this excessive typing or am I just dumb,self.java +4,1276693242,8,5 things you didn t know about JARs,ibm.com +0,1276455261,4,SCJP 1 6 Exam,self.java +17,1276391540,10,What is the easiest way to get started in java,self.java +16,1276295738,4,Eclipse Helios 201006 RC4,eclipse.org +0,1276295539,15,Living On The Edge with Early Access Tomcat 7 and Java SE 6 update 21,cld.blog-city.com +0,1276295539,15,Living On The Edge with Early Access Tomcat 7 and Java SE 6 update 21,cld.blog-city.com +0,1276263265,3,NetBeans Developer FAQ,wiki.netbeans.org +6,1276214274,4,Using subversion with Java,self.java +0,1275987554,8,websites offering simple and free poker hand calculators,pokerhandsorder.info +4,1275986897,11,Jazoon Reports Java SE and SDK 7 Java and Flex Talks,blog.martinig.ch +0,1275948377,5,Twittch Poke the Bear comic,twittch.com +0,1275914901,8,First Version of Java Lambda Syntax Sparks Debate,infoq.com +1,1275789891,5,Simple problem for a beginner,self.java +16,1275769326,13,How to determine where a java class is being loaded from henryranch net,henryranch.net +1,1275598443,9,Learn How to Boost your Java Performance with Ehcache,java-tv.com +9,1275575316,10,The BlueJ folks have been busy On a New Road,nighthacks.com +12,1275481422,6,Java 7 Translucency and shaped windows,baptiste-wicht.com +13,1275432772,9,GWT at Google I O 2010 Session videos available,googlecode.blogspot.com +0,1275430641,7,Extract Excel by annotation POI based aslv2,code.google.com +14,1275388202,9,11 Lesser Known 3rd Party Libraries For Every Project,codedependents.com +22,1275350210,9,Java 7 Oracle pushes a first version of closures,baptiste-wicht.com +2,1275314259,6,Happy 15th On a New Road,nighthacks.com +2,1275313756,3,Java NIO Buffers,tutorials.jenkov.com +14,1275302228,9,Java 7 Add public defender methods to Java interfaces,baptiste-wicht.com +22,1275262556,13,Oracle have finally made Java download a simple one click affair well done,java.com +0,1275168182,7,Java JVM Processor Affinity A Quick Hack,scalabiliti.com +11,1275075219,7,Oracle pushes first version of closures implementation,squirrelsewer.blogspot.com +24,1274888699,3,Exploring Google Guava,jnb.ociweb.com +8,1274858277,11,Improve the speed of your Maven builds with maven cli plugin,baptiste-wicht.com +17,1274790618,7,Tomcat 7 is just around the corner,oudmaijer.com +7,1274779775,6,Guice AOP Lightweight non distributed Cache,code.google.com +18,1274678465,7,Insert Java statements into a binary class,theholyjava.wordpress.com +14,1274498230,8,jmonkeyengine 3 0 alpha 1 released game on,jmonkeyengine.com +0,1274466353,6,Webstart Changes Between 6u17 to 6u20,java.dzone.com +0,1274450884,14,Envers Entity Versionning From Hibernate 3 5 Envers is included as a core module,jboss.org +5,1274092727,6,Java Concurrency Part 2 Manipulate Threads,baptiste-wicht.com +4,1273873773,9,Writing Portable HTML5 WebSocket Application using the Atmosphere Framework,jfarcand.wordpress.com +0,1273865339,23,Triangle JVM Hack Night for all JVM language hackers in the RTP NC area Scala Groovy Nice Clojure Beanshell JRuby Jython Rhino whatever,meetup.com +8,1273858193,23,Want to Help a fellow developer out I have an interview in an hour Ask me some tough quetsions Heres the job description,self.java +24,1273749188,6,Closures in Java 7 Not Likely,davidflanagan.com +0,1273686427,16,Code analysis software company scanned Java based open source projects and ranked them by code quality,developer.com +0,1273610125,18,With all of these pom files everywhere I guess I have to convince myself Ant is dead salute,self.java +0,1273487488,6,Develop a modular application The modules,baptiste-wicht.com +0,1273400414,10,Taking out the trash and other cliches dhanji s posterous,dhanji.posterous.com +28,1273364954,7,caliper Google s microbenchmark framework for Java,code.google.com +0,1273358773,16,interesting queries of jboss 4 2 2 GA s server log 1MB with no web apps,code.google.com +4,1273353988,6,Call a javascript function from Java,coderanch.com +0,1273316030,7,Java Concurrency amp 8211 Part 1 Threads,baptiste-wicht.com +0,1273185910,12,SpringSource buys GemStone to add Java data management tools to its suite,developer.com +13,1273141931,13,5 things you didn t know about the Java Collections API Part 2,ibm.com +0,1273090659,8,Tip When you can t throw an exception,ibm.com +5,1273061490,10,Better exception handling in Java 7 Multicatch and final rethrow,baptiste-wicht.com +0,1273003926,5,The ABCs of JDBC ResultSets,java.dzone.com +22,1272775747,9,Discussion with Josh Bloch on the Future of Java,infoq.com +0,1272695985,8,Has Anyone Else Noticed JBoss 5 1 SUCKS,self.java +6,1272512365,11,Experiences in migrating a complex Java application to OSGi pt 2,nagarro.com +0,1272456416,14,Find closest pair of point with Plane Sweep Algorithm in O n ln n,baptiste-wicht.com +0,1272407669,20,VMware leverages Spring for a new cloud based Java application platform called VMforce which will talk to Salesforce com applications,developer.com +12,1272401204,13,5 things you didn t know about the Java Collections API Part 1,ibm.com +0,1272279413,10,How to write correct benchmarks using a simple benchmark framework,baptiste-wicht.com +0,1272130616,6,First beta of Maven 3 released,developer-b.com +4,1271980665,32,Jonathan Bruce tells Java developers and architects that Type 4 JDBC drivers are the source of many problems in in the modern Java ecosystem and Type 5 JDBC drivers are the solution,developer.com +0,1271855738,6,Passing Parameters Between Builds in Hudson,blog.quibb.org +18,1271844729,16,Java 7 New I O features Asynchronous channels multicast random access with JSR 203 NIO 2,baptiste-wicht.com +1,1271843410,8,Tattletale Betraying your project s naughty little secrets,jboss.org +4,1271842752,7,JBoss JIRA instance compromised Change your passwords,jboss.org +14,1271673243,10,Java 7 5 or So languages updates from Project Coin,baptiste-wicht.com +0,1271650042,6,Wicket best practices Components vs Pages,blog.worldturner.com +0,1271642384,8,Dynamic Columns in JSP Model with Struts Framework,venishjoe.net +12,1271295057,7,Unpatched Java Exploit Spotted In the Wild,krebsonsecurity.com +15,1271242127,4,Java 7 More concurrency,baptiste-wicht.com +1,1271210419,8,JOGL unsatisfiedLinkError no JOGL in java library path,self.java +4,1271154080,4,Jazz Desktop Application Framework,jazz.coderight.nl +16,1271040109,11,Who is preventing the release of Java 1 7 Stack Overflow,stackoverflow.com +4,1270933690,6,Java founder James Gosling leaves Oracle,computerworld.com +0,1270916124,9,Why IntelliJ IDEA is better than Eclipse and NetBeans,self.java +60,1270898768,7,James Gosling Father of Java Leaves Oracle,nighthacks.com +1,1270890343,6,Quick explanations of common Java exceptions,rymden.nu +0,1270865103,6,BufferedImage to bitmap using JAI IIO,blogs.windwardreports.com +0,1270749158,22,C programming language is back at number one on the TIOBE Index as more and more developers turn their backs on Java,developer.com +13,1270638581,4,Java 7 More dynamics,baptiste-wicht.com +0,1270348593,9,Super beginner looking for a small amount of guidance,self.java +0,1270340804,2,Java References,self.java +0,1270295037,17,A JSF implementer tries a new JSF 2 0 feature Question Does he like it or not,blog.smart-java.nl +0,1270294357,34,In this article I ll show you how you can leverage JavaServer Faces and Bean Validation technologies to have validation from the database to the client side JavaScript with all configuration in one place,blog.smart-java.nl +37,1270202916,8,Java 7 The new java util Objects class,baptiste-wicht.com +13,1270153421,3,java anti patterns,odi.ch +0,1270123017,13,Implement State pattern with enum amp laquo Alain Defrance amp 039 s Blog,alaindefrance.wordpress.com +0,1270122409,19,Should I use template method or command to create a hook amp laquo Alain Defrance amp 039 s Blog,alaindefrance.wordpress.com +12,1270107927,10,The End of an Era Scala Community Arrives Java Deprecated,infoq.com +20,1270035084,9,NIO 2 The new Path API in Java 7,baptiste-wicht.com +0,1269843438,9,4 reasons why i m not using Osmorc anymore,baptiste-wicht.com +24,1269674803,11,What are the popular web application frameworks for Java these days,self.java +21,1269606692,7,Icaza Mono founder on NET and Java,tirania.org +0,1269462320,3,OpAh Fluent collections,op4j.org +8,1269461720,11,The Start of an Adventure Eclipse EGit JGit 0 7 1,aniszczyk.org +0,1269412956,4,OSGi and cyclic dependencies,baptiste-wicht.com +0,1269303571,23,New technology from Maven backers Sonatype is designed to make open source Java build management technology more consumable to Eclipse and enterprise users,developer.com +0,1269278907,5,Common and bizarre Weblogic errors,blog.beplacid.net +0,1269241610,3,Logging with SLF4J,baptiste-wicht.com +1,1269082724,5,NetBeans Platform Development in JavaFX,netbeans.dzone.com +0,1269076210,6,Introduction to the JR programming language,baptiste-wicht.com +0,1269052888,6,jNetPcap OpenSource A Libpcap WinPcap Wrapper,jnetpcap.com +29,1269037010,7,Eclipse 3 6 M6 New and Noteworthy,download.eclipse.org +0,1269002488,11,jelementtree Python s ElementTree for Java Project Hosting on Google Code,code.google.com +0,1269002488,11,jelementtree Python s ElementTree for Java Project Hosting on Google Code,code.google.com +0,1268988076,4,Mock objects with EasyMock,baptiste-wicht.com +0,1268906268,10,fleXive CMS 0 5 released an open source JSF CMS,flexive.org +0,1268850086,11,3 Different Schools of Thought for Managing Production Tomcat Infrastructures TomcatExpert,tomcatexpert.com +0,1268821248,11,Hello Java I have a question about sockets and background tasks,self.java +8,1268776447,13,JavaServer Faces JSF 2 0 supports HTTP GET requests and full Ajax integration,developer.com +0,1268714494,2,EclipseCon 2010,thebitsource.com +0,1268679185,13,Looking to surround words in a string with HTML tags Maybe Lucene Highlighter,self.java +0,1268472339,5,TAP5 2 Live service reloading,tapestryjava.blogspot.com +35,1268381308,11,The most complete list of XX options for Java 6 JVM,md.pp.ru +3,1268351791,16,SpringSource s new tc Server 2 0 aka commercial Tomcat combines Java features with VMware virtualization,developer.com +23,1268233063,7,JSR 166 The Java fork join Framework,blog.quibb.org +19,1268231285,7,Why would anyone declare a class final,self.java +7,1268156849,7,Inversion of Control amp Functional Programming screencast,vimeo.com +0,1268142173,3,The blind fireman,blog.beplacid.net +0,1268084679,13,JSF 2 0 Annotations New Navigation Eliminate XML Configuration amp mdash Developer com,developer.com +0,1268002491,19,What s a good open source java library file that reads and audio file and gives you an array,self.java +11,1267991501,7,JMD Java MarkDown implementation based on MarkDownSharp,cforcoding.com +0,1267731166,9,Strange compile error how well do you know java,self.java +4,1267565708,20,Need a bit of help trying to figure something out No programming background at all Just starting out in Java,self.java +0,1267522870,4,Maven Intimidation Over Configuration,blog.m1key.me +10,1267507753,8,JSF 2 0 Views Hello Facelets Goodbye JSP,developer.com +0,1267430284,9,Oracle Sun Overview and FAQ for the Developer Community,oracle.com +0,1267352582,10,Ask r java recommendation for free java servlet jsp hosting,self.java +6,1267348136,12,Webservices like SOAP are easy deployable with Java CXF and maven 2,united-coders.com +0,1267291651,13,Rick Sharples of Red Hat on Java Enterprise Edition 6 Java EE 6,thebitsource.com +11,1267277339,6,Maven 2 vs Ant Ivy Revisited,leshazlewood.com +15,1266854860,21,HotSpot and JRockit JVMs to be merged Developers who have never used JRockit wonder if this is good news or not,theregister.co.uk +0,1266830605,13,Part 2 OneToMany Relationship with Java Hibernate and Annotations with JPA and Wicket,united-coders.com +8,1266806979,3,Roguelike in Java,self.java +15,1266664311,23,Linux s Systemtap now supports not only tracing Java code in conjunction with native code and kernel code but Java stack traces too,gnu.wildebeest.org +8,1266598794,6,Anyone move to OSGi for modularity,self.java +16,1266477998,6,Java The Good Parts Kev009 com,kev009.com +1,1266009516,4,Scrollable list of JButtons,self.java +10,1266007792,10,The Java 7 Features Bound to Make Developers More Productive,developer.com +0,1266005420,10,How can I make a client socket wait for input,self.java +22,1265665419,5,Are Java Certifications worth pursuing,self.java +0,1265297098,9,Sun CEO Schwartz tweets poetic lament on last day,computerworld.com +10,1265151631,9,Oracle is dropping support for Sun Microsystems Project Wonderland,pcworld.idg.com.au +11,1265136709,6,Project Kenai also biting the dust,kenai.com +0,1265022586,3,Simple code profiling,openinit.com +0,1263802437,9,How to Control Nexus Groups with Effective Routing Rules,sonatype.com +3,1263696966,10,How to Bootstrap an Alfresco Project with a Maven Archetype,sonatype.com +9,1263695712,7,Maven over Ant Ivy A Team Perspective,sonatype.com +0,1263592895,15,Who knows of the best tutorial to get off of the ground quickly with Spring,self.java +0,1263587379,5,Announcing Spring Collections 0 1,code.google.com +35,1263462967,7,Speaking the Java language without an accent,ibm.com +1,1263366279,8,Towards A Formal Specification of Reified Lambda Functions,artima.com +1,1262965862,6,Writing a Nexus Plugin Using m2eclipse,sonatype.com +1,1262946063,6,Reasons to Use Google Collections Javalobby,java.dzone.com +1,1262275159,4,Ant Task for TODOs,blog.beplacid.net +0,1261000525,11,MuleSoft Updates Tcat Tomcat Java Server who needs Java EE 6,itmanagement.earthweb.com +0,1260992959,1,DataNucleus,en.wikipedia.org +0,1260914097,14,Releasing my most recent software projects mostly source code projects proof of concept work,berlinbrowndev.blogspot.com +14,1260889917,9,What is going on with SUN Forums looks hacked,forums.java.net +8,1260785460,11,Java procedures in Firebird how it was done how it works,firebirdnews.org +7,1260637493,15,Nothing too exciting here but this Java enum examples tutorial was just helpful to me,devdaily.com +13,1260520035,6,How do ClassLoader leaks happen explained,zeroturnaround.com +14,1260484006,28,JavaEE 6 now avail Sun claims you can now take 20 lines of code from a prior JavaEE and now crunch down the same functionality in 2 lines,developer.com +1,1260389256,4,Nuntius 0 5 released,jee-bpel-soa.blogspot.com +0,1260226839,2,JtextField updating,self.java +4,1259846208,5,Java EE 6 receives approval,infoworld.com +18,1259828966,9,Closures for Java Q amp A by Mark Reinhold,blogs.sun.com +0,1259674278,12,Why are the JavaRanch Big Moose Saloon forums so made of fail,self.java +10,1259159887,11,What Are PermSize and MaxPermSize and How They Work in Java,dbuggr.com +0,1259016097,6,Installare Java su Linux e Windows,linuxtutorial.it +0,1258584244,10,How to use a raw Hadoop MapReduce job in Cascading,xcombinator.com +19,1257788397,15,Oracle Announced Plans for the Future of Sun s Products but Raised Concerns about NetBeans,infoq.com +5,1257538309,11,Contexts and dependency injection in Java EE6 used to be WebBeans,theserverside.com +0,1257499009,5,Enjoy Java Games on PC,technorotic.com +18,1257203600,6,Sun Java App Store Coming Soon,java.dzone.com +0,1257091136,8,Delude java about generic with two step compilation,alaindefrance.wordpress.com +30,1257048683,11,Scary Bug in Sun s Linux JVM Seriously Read the Description,bugs.sun.com +0,1257015814,4,Can I delude Generics,alaindefrance.wordpress.com +0,1257015168,4,Generics inside byte code,alaindefrance.wordpress.com +0,1256804160,3,Download SonyEricsson Applications,technorotic.com +7,1256694537,4,Kauklahti Making ORM Simple,blog.devtrain.fi +3,1256679872,8,HOWTO Reinstall Java 1 5 in Snow Leopard,chxor.chxo.com +30,1256478016,3,Exception Handling Antipatterns,today.java.net +10,1256401137,10,Intro to Caching Caching algorithms and caching frameworks part 5,jtraining.com +11,1256077974,14,Ask Java Reddit jreddit what is the best embeddable language within an existing app,self.java +0,1256048234,18,help looking for java library allowing access to binary file memory array as a virtual filesystem read write,self.java +31,1255967592,10,Play Java web framework 1 0 released with a screencast,playframework.org +4,1255966265,7,Monitor a Directory for Changes using Java,venishjoe.net +7,1255680232,9,Are there any good lightweight open source Java CMSs,self.java +19,1255632562,5,Java Copy Constructor versus Cloning,artima.com +0,1255611147,8,378 Java Software Development Tools to Help You,softdevtools.com +27,1255531746,5,The Continuing Relevance of Java,java.dzone.com +0,1255351753,5,JApplets get your certificate here,jtraining.com +28,1255286098,9,Getting Ready for NetBeans 6 8 What s New,infoq.com +0,1255190758,1,macwidgets,code.google.com +10,1255101909,14,Ask Reddit I m looking for a bash completion configuration to complete maven commands,self.java +6,1254925844,6,Fixing Eclipse s Java Dependancy Errors,fettesps.com +11,1254862059,8,Can Anyone Recommend Some Good Online Java Sources,self.java +27,1254818585,7,How equals works for URLs in Java,javablogging.com +11,1254750893,5,Introduction to the Spring Framework,methodsandtools.com +0,1254659108,6,Jsfcal A Calender component for JSF,code.google.com +28,1254579108,9,Sun Drops the Swing Application Framework from Java 7,infoq.com +44,1254429092,11,Google Wave is Written in Java that oh so crappy language,en.wikipedia.org +0,1254338684,7,what does r java think of this,reddit.com +0,1254338684,7,what does r java think of this,reddit.com +0,1254334564,10,Quick highlight of useful methods in Apache common lang StringUtils,cruisingthetubes.blogspot.com +0,1254169600,7,Learn About Good API Design from jQuery,jdegoes.squarespace.com +0,1254070219,9,lambdaj Closures in Java Project Hosting on Google Code,code.google.com +0,1254059106,10,Using Rhino to Write Stored Procedures in JavaScript Part 1,iablog.sybase.com +0,1253810764,4,JDK7 Tackles Java Verbosity,rafaelnaufal.com +21,1253805629,11,Modify javap to output to String view decompiled information at runtime,berlinbrowndev.blogspot.com +23,1253702934,5,Mindsilver GUIDE Java GUI designer,mindsilver.com +0,1253702816,11,Locking and Concurrency in Java Persistence 2 0 Enterprise Tech Tips,blogs.sun.com +4,1253702755,13,Beginning JNI with NetBeans IDE 6 7 and C C Plugin on Linux,netbeans.org +8,1253702720,12,Videos to get acquainted with Apache Derby and Java DB Java net,java.net +0,1253430543,35,Drive Buster Fly through space as a ship capable of turning into pure particles Smash through an enemy armada with 6 unique types Keep track of your score and try to aim for the top,prime.turquoisegrotto.com +21,1253118775,7,350 Java Articles to Improve your Knowledge,blog.martinig.ch +13,1252907818,7,DuckTyping in Java and the Ubiquitous Language,danhaywood.com +0,1252671150,7,No wonder why URLClassPath was so slow,imgur.com +1,1252648456,9,Enterprise Application with OSGi and the SpringSource dm Server,java-tv.com +14,1252642236,9,My first attempt at XMPP in Java App Engine,blog.appenginefan.com +7,1252479969,8,From JavaOne 2009 Breaking Through JVM Memory Limits,artima.com +11,1252429477,4,OSGi and Java Modularity,java-tv.com +0,1252424806,4,Thunks in Tapestry 5,tapestryjava.blogspot.com +7,1252335813,4,Clojure for Java Programmers,java-tv.com +6,1251816449,6,JBoss Application Server 5 and Beyond,java-tv.com +1,1251469397,6,Spring 3 0 The Next Generation,java-tv.com +12,1251382912,5,Why Maven is still cool,joshlong.com +0,1251360272,7,Spring XML XML sucks therefore Spring sucks,softdevtube.com +1,1251198072,2,Apache ServiceMix,java-tv.com +4,1251105226,10,Wicket development in Netbeans 6 8m1 the first smoke test,adam-bien.com +9,1250995192,10,Dr Dobb s G1 Sun s Garbage First Garbage Collector,ddj.com +11,1250840980,13,Native browser component for Swing apps Mozilla XULrunner built in to NetBeans Platform,netbeans.dzone.com +0,1250784456,7,Value Objects are not Data Transfer Objects,adam-bien.com +3,1250775761,12,What s New and Exciting in Java Persistence API JPA 2 0,java-tv.com +13,1250757046,8,Java development 2 0 Hello Google App Engine,ibm.com +9,1250626663,14,If you need a coding convention for an interface you probably did something wrong,adam-bien.com +7,1250606010,8,Responsibility Driven Design in Java with Mock Objects,methodsandtools.com +0,1250591953,16,Simplest possible EJB 3 1 Singleton injected into a Servlet 3 0 deployed inside a WAR,adam-bien.com +0,1250499717,7,Building better RIAs faster with JavaServer Faces,softdevtube.com +5,1250433383,11,Schizophrenia Driven Design and Unit Tests If you start too ambitious,adam-bien.com +4,1250174263,2,Spring Security,java-tv.com +5,1250155143,12,Simplest possible JSF 2 EJB 3 1 JPA component source code included,adam-bien.com +7,1250075778,3,Wicket in Action,java-tv.com +1,1250067057,14,Some interesting open source kenai com projects From 3D game to RESTful cloud API,adam-bien.com +11,1249974886,12,Simplest possible EJB 3 1 RESTful JSR 311 hybrid source code included,adam-bien.com +0,1249453866,7,How evil are Data Transfer Objects DTOs,adam-bien.com +0,1249376595,14,Using ServiceLocators 2 0 with EJB 3 1 where dependency injection is not enough,adam-bien.com +0,1249285458,7,Killing Factories with EJB 3 Dependency Injection,adam-bien.com +11,1249128927,33,I want to scale an image in Java It seems like ImageMagick on the command line is the only approach that really works Now that can t really be true can it Or,self.java +3,1249116705,7,Integrating NetBeans 6 7 1 with JIRA,adam-bien.com +15,1248980702,5,The Garbage First Garbage Collector,java.sun.com +4,1248808442,4,JBoss Seam and Beyond,java-tv.com +0,1248699705,11,Injecting Swing TableModels into an EJB 3 as a legacy POJO,adam-bien.com +0,1248677394,15,EJB 3 Stateless lifecycle as simple as you can get Any ideas for further simplification,adam-bien.com +2,1248599584,8,Java EE and where is the real bloat,adam-bien.com +2,1248512057,12,Programming languages and productivity are like German highways Infinite productive in theory,adam-bien.com +6,1248339774,17,Simplest Possible EJB 3 1 without annotations In case you already heavily invested in your XML editor,adam-bien.com +0,1248273095,9,Monitoring Java applications running on EC2 instances using JMX,jmsbrdy.com +0,1248266825,8,First indicators of over engineering in your project,adam-bien.com +0,1248241887,7,Seven Groovy usage patterns for Java developers,softdevtube.com +0,1248194807,22,Declaring EJB 3 1 interceptors with XML Sad but true It is sometimes necessary to use XML in the lean EJB land,adam-bien.com +0,1248172288,14,Are plain old webcontainers still appropriate in the lean Java EE 5 6 world,adam-bien.com +0,1248170204,10,About Facades Services boundaries and the fallacies of distributing computing,adam-bien.com +4,1248119915,16,Will EJB 3 1 kill Java interfaces At least for the standard tasks interfaces became superfluous,adam-bien.com +0,1248112259,9,JRuby and Beyond A Renaissance for the Java Platform,java-tv.com +0,1248071696,20,Simplest possible AOP Interceptor for EJB 3 1 You know any other solution with less code external dependencies etc required,adam-bien.com +6,1248034063,11,EJB 3 1 Spring comparison architecture philosophy and the support issue,adam-bien.com +10,1247996433,22,Simplest possible EJB 3 1 less is impossible Do you know any other framework which requires less configuration packaging and external dependencies,adam-bien.com +4,1247931966,16,Layers and abstractions aren t always good premature encapsulation is the root of all some evil,adam-bien.com +9,1247838688,9,JAX RS the Java API for RESTful Web Services,java-tv.com +12,1247240553,7,Introducing Java DB 10 5 1 1,java.sun.com +7,1247239942,11,All Things Java Continuing the Conversation With Java Champion Alan Williamson,java.sun.com +3,1247229280,18,Using a Java Framework in Scala step by step with examples Good example of Java vs Scala aswell,robertlally.com +8,1247215421,14,Secure Coding Guidelines Version 2 0 for the Java Programming Language Sun Developer Network,java.sun.com +9,1247152214,9,Roundup Scala as the long term replacement for Java,infoq.com +8,1246639261,9,COBOL to Java Automatic Migration with GPL ed Tools,infoq.com +12,1246551190,6,Java EE Containers Heaven or Hell,zeroturnaround.com +0,1246475875,4,Greenfoot Java Programming Book,beginwithjava.blogspot.com +13,1246218952,12,Gosling What s Good for Google May Not Be Good for Java,eweek.com +0,1246110506,10,Install Eclipse Galileo 3 5 on Ubuntu Jaunty 9 04,johnpaulett.com +3,1246006232,7,How to refactor Java code at Jazoon,blog.martinig.ch +27,1245861407,4,Eclipse Galileo Available Now,eclipse.org +0,1245851774,8,Lovely SVG railroad diagrams with JavaCC and Clapham,tomcopeland.blogs.com +0,1245674724,5,Enterprise Integration Patterns with Spring,java-tv.com +9,1245442779,6,JRat the Java Runtime Analysis Toolkit,jrat.sourceforge.net +8,1245331717,6,Jeliot a Java Program Visualization System,java-tv.com +8,1245240053,5,The Future of Java Innovation,infoq.com +1,1245089069,19,Where Is Java EE 6 There were no formal announcements at JavaOne about Java EE 6 or were there,internetnews.com +0,1244996297,7,Forum Nokia List of All Java Tools,forum.nokia.com +0,1244465976,7,a brief look at UiBinder for GWT,ziazoo.co.uk +3,1244463123,5,Run Django on GlassFish v3,blogs.sun.com +0,1244462663,3,Effective Java Reloaded,java-tv.com +11,1243955667,5,Sun Unveils Java Applications Store,finance.yahoo.com +11,1243876343,3,Java memory puzzle,javaspecialists.eu +4,1243451054,5,Chasing Code Duplications with Sonar,softdevtube.com +0,1243445050,7,Behavior Driven Development in Java with easyb,softdevtube.com +6,1242885366,19,The Server driven Java Web Application Framework IT Mill Tookit is now known as Vaadin 6 0 0 near,vaadin.com +20,1242718173,15,Sun CEO Jonathan Schwartz Will the Java Platform Create The World s Largest App Store,blogs.sun.com +7,1242642572,4,Code Generation for Dummies,methodsandtools.com +8,1242394757,5,Tapestry 5 Load Test Results,blog.gidley.co.uk +0,1242318589,6,Java Concurrency Bugs 5 inconsistent synchronization,tech.puredanger.com +9,1242312586,5,Concurrency issues in Hibernate statistics,tech.puredanger.com +10,1242167621,13,Am I just being hard on the team demanding scriptless Canonical JSP s,self.java +8,1242167621,13,Am I just being hard on the team demanding scriptless Canonical JSP s,self.java +0,1241963767,15,Ask r java The Lonely Desktop App and minimal desktop env on say Ubuntu how,self.java +31,1241929752,3,Common Java Cookbook,discursive.com +0,1241720752,12,Building cloud ready multicore friendly applications Part 2 Mechanics of the cloud,javaworld.com +30,1241638900,4,Java performance urban legends,ibm.com +4,1241556583,8,Interface is more then a list of methods,gusiev.com +0,1241529037,11,Multiple Dispatch A Fix for the Problems of Single Dispatch Languages,java.dzone.com +0,1241526306,6,Is Java ME staging a comeback,gorkem-ercan.com +7,1241526257,12,Java postmortem diagnostics Part 1 Introduction to JSR 326 and Apache Kato,ibm.com +0,1241483972,25,Does anyone know of any good Netbeans Matisse tutorials that show how to avoid the exceedingly annoying component repositioning in the free design layout tool,self.java +6,1241463515,4,A better log4j SMTPAppender,blog.cherouvim.com +0,1241449874,8,SpringSource Acquires Hyperic The newest open source powerhouse,internetnews.com +0,1241310971,12,How to know from which jar file a class has been loaded,pankajbatra.com +11,1241238696,7,Jump into Roo for extreme Java productivity,blog.springsource.com +1,1241238224,5,Caches and Maps in Terracotta,tech.puredanger.com +11,1241124421,7,Sun Bug Tail Call Optimization for Java,bugs.sun.com +6,1240924580,4,Intro to Spring MVC,javaworld.com +0,1240635405,4,Evolving the Java Language,infoq.com +0,1240457933,8,Deploying Swing and JavaFX apps to the masses,javaworld.com +15,1240457225,7,Cay Horstmann My Oracle pronouncements for Java,weblogs.java.net +7,1240433733,4,REST for Java developers,javaworld.com +3,1240403343,5,Headius The Future Part One,blog.headius.com +9,1240338808,13,Thanks for the memory Understanding how the JVM uses native memory on AIX,ibm.com +5,1240337721,11,Enterprise Java Community EJB 3 1 A Significant Step Towards Maturity,theserverside.com +17,1240337711,10,The G1 Garbage Collector Coming in Java 6 Update 14,theserverside.com +11,1240319118,5,Oracle Sun A Java Perspective,kirkwylie.blogspot.com +1,1240218931,7,Google App Engine Where Does It Fit,gridgain.blogspot.com +2,1240116552,9,The future of the programming languages What about Java,coderfriendly.com +0,1240116311,4,Google s Java editions,pushing-pixels.org +1,1240095372,13,A suggested alternative approach to using the App Engine data store in Java,blog.appenginefan.com +15,1240033989,8,Google App Engine for Java Quit Yer Bitchin,screaming-penguin.com +0,1239980260,4,JGap Java Genetic Algorithms,jgap.sourceforge.net +16,1239951564,12,Sun s Garbage First Collector Largely Eliminates Low Latency High Throughput Tradeoff,infoq.com +2,1239896348,4,More Playing with GAE,dlinsin.blogspot.com +3,1239866397,15,Here is the challenge Create some Java code so that the mysterious method wrapper works,martin.ankerl.com +0,1239825990,8,Lean SOA with Java EE 6 Adam Bien,javaworld.com +0,1239819842,11,Google s cut down Java wanton and irresponsible or just necessary,itwriting.com +9,1239684977,11,Sun s open source boss slams App Engine s Java support,itworld.com +2,1239684683,6,Getting ready for Android 1 5,android-developers.blogspot.com +0,1239643653,6,A Dozen OSGi Myths and Misconceptions,jroller.com +2,1239607526,5,Playing with Google App Engine,dlinsin.blogspot.com +0,1239564977,13,Why Java doesn t need operator overloading and very few languages do really,beust.com +9,1239531817,9,App Engine Fan Java Eclipse GWT and Unit Tests,blog.appenginefan.com +1,1239511335,7,What Java 7 will mean to you,tech.puredanger.com +5,1239468664,8,Restlet in the cloud with Google App Engine,blog.noelios.com +11,1239437840,8,Writing Java Hello World for Google app engine,vineetmanohar.com +2,1239425572,21,Are You The Key Master Today is the day I am going to give Java App Engine a first test drive,blog.appenginefan.com +0,1239337493,7,Will Google App Engine Revolutionize Java Development,thebull.macsimumweb.com +5,1239300291,8,Google App Engine Will Change Java Web Development,newfoo.net +10,1239211807,10,Google Brings App Engine s Pros and Cons to Java,infoq.com +0,1239202992,10,Google App Engine and The Java Web The Wrong Java,almaer.com +0,1239180805,10,Ola Bini Dynamic languages on Google App Engine an overview,olabini.com +2,1239180674,8,Write your Google App Engine applications in Groovy,blog.springsource.com +0,1239180660,10,Seriously this time the new language on App Engine Java,googleappengine.blogspot.com +13,1239180590,5,Java on Google App Engine,olabini.com +0,1238961315,6,Netbeans 6 7 Milestone 3 released,blogbeebe.blogspot.com +4,1238609115,7,The Monadic nature of Inversion of Control,enfranchisedmind.com +5,1238550333,9,Sun s Disagreement With Apache Overshadows Java 7 Announcement,infoq.com +2,1238448427,8,Deadlock inducing concurrency anti patterns 1 No Arbitration,javaworld.com +14,1238416302,10,Has Sun been holding Java back Red Hat Thinks So,internetnews.com +13,1238043547,4,No More Java 7,jroller.com +6,1238013810,9,Java developers weigh costs benefits of IBM Sun merge,eweek.com +3,1237977706,11,Amazon Web Services EC2 Toolkit Plugin for Eclipse Tomcat Cluster Deployment,aws.typepad.com +0,1237932637,4,Java formatting guidelines kinda,mbreen.com +9,1237696399,6,The JVM and costs vs benefits,newartisans.com +0,1237547225,10,Why shouldn t Java compiler provide automatic typecasts for assignments,self.java +0,1237401533,5,Why Dynamic Languages Metaobject Protocol,hamletdarcy.blogspot.com +18,1237393898,7,How to Fix Memory Leaks in Java,olex.openlogic.com +6,1237230008,9,Java annotations To do or not High Performance Java,javaworld.com +0,1237210800,5,Grails 1 1 is released,blog.springsource.com +5,1237200399,9,Instantly turning your Hudson cluster into a Hadoop cluster,weblogs.java.net +0,1237144834,8,BlueJ and Greenfoot now open source why now,bluej.org +7,1236997516,7,VMKit JVM and Net runtimes for LLVM,vmkit.llvm.org +1,1236794751,9,Sun and Apache Harmony What are they fighting for,javaworld.com +10,1236717514,5,Today s multi language JDK,blogs.sun.com +6,1236712334,5,Quick Tomcat https SSL Config,whatwouldnickdo.com +0,1236697736,5,Grails 1 1 Release Notes,grails.org +1,1236694963,11,New Version of Nexus Released 1 3 0 Maven Repository Manager,sonatype.com +3,1236691213,6,Tapestry 5 with Gorm and Maven,programmieren-in-java.de +0,1236668922,10,Interacting between lt insert JVM lang here gt and Java,sayspy.blogspot.com +5,1236627460,5,Java Modularity with OSGi 1,nofluffjuststuff.com +1,1236582719,5,Eclipse Riena 1 0 Released,infoq.com +0,1236575633,12,XHtmlrenderer for XHTML to PDF PNG JPEG etc new release candidate 8,xhtmlrenderer.dev.java.net +0,1236545060,5,Java Modularity with OSGi 1,vladimirvivien.com +12,1236419230,7,Which Java Blogs do you visit regularly,self.java +4,1236330355,5,First JUnit Max Test Cloud,sunchic.free.fr +7,1236238111,10,Sun loses Apache and Spring vote on latest Enterprise Java,theregister.co.uk +0,1236234455,5,Event based actors in Groovy,jroller.com +2,1236199490,6,Game Development with Greenfoot Class Projects,catsonkeyboards.blogspot.com +10,1236180143,15,Open Source Server side RIA in pure Java IT Mill Toolkit 5 3 0 released,itmill.com +13,1236124033,14,Servlet 3 0 Why asynchronous processing is the new foundation of Web 2 0,javaworld.com +0,1236091257,12,Using Hibernate in a Java Swing Application NetBeans IDE 6 5 Tutorial,netbeans.org +0,1236071169,5,Small language changes for JDK7,californickation.blogspot.com +3,1236066699,7,Local AST Transformations in Groovy 1 6,hamletdarcy.blogspot.com +3,1236021445,5,Revolutionizing media playing in Java,pushing-pixels.org +1,1236002836,6,Fighting feature creep in build scripts,adam.pohorecki.pl +0,1235924073,9,Book Review Java Generics and Collections Naftalin and Wadler,jroller.com +0,1235882304,2,Java jokes,java-forums.org +12,1235855278,3,Java 7 TransferQueue,tech.puredanger.com +5,1235815336,7,What s New in Groovy 1 6,infoq.com +6,1235815336,7,What s New in Groovy 1 6,infoq.com +1,1235811042,3,Summarization with Lucene,sujitpal.blogspot.com +6,1235775684,10,Mini Review Learning Java by Patrick Niemeyer and Jonathan Knudsen,beginwithjava.blogspot.com +5,1235755866,10,Manage java code quality with Open Source Sonar 1 6,theserverside.com +0,1235754974,7,Why applets continue to fail part 2,trephine.org +4,1235721002,3,Static checking java,nobugs.org +0,1235715251,4,Message Passing Atoms MVars,bartoszmilewski.wordpress.com +5,1235669682,10,Another Java Puzzler which I used to drive developers crazy,theserverside.com +0,1235665376,5,Groovy 1 6 is released,nabble.com +7,1235655129,6,Swing 2 Pissing in the Wind,elliotth.blogspot.com +0,1235584995,5,japex Japex Micro benchmark Framework,japex.dev.java.net +0,1235576571,4,JUnit Max just rocks,sunchic.free.fr +6,1235573327,6,Announcing GWT 1 6 Milestone 2,groups.google.com +5,1235571688,8,Open Source Constraint Programming Solvers Written in Java,manageability.org +0,1235551316,7,Building Java 7 on Mac OS X,infernus.org +2,1235516344,6,Preon Binary Data Binding for Java,preon.flotsam.nl +3,1235511504,5,Bit Syntax for Java I,blog.flotsam.nl +0,1235502050,15,Rich Internet Applications with Grails Part 1 Build a Web application using Grails and Flex,ibm.com +2,1235489401,6,Type safe Builder Pattern in Java,michid.wordpress.com +1,1235487805,5,Efficient Runtime Analysis of Hibernate,williamlouth.wordpress.com +0,1235420245,5,Small Java 7 Language Changes,marxsoftware.blogspot.com +0,1235417514,5,Ant and Platform Specific macrodefs,blogs.sun.com +0,1235400033,12,Using asynchronous mechanisms in Java and JavaScript for improving the user experience,technology.amis.nl +4,1235390460,3,JavaFX interactive shell,blogs.sun.com +14,1235390164,6,The future of Java build tools,adam.pohorecki.pl +1,1235383052,15,Java FX Script And Why It Is Intriguing Especially For Java Developers Not Only Designers,adam-bien.com +4,1235175117,5,Rotating an Image with Java,beginwithjava.blogspot.com +3,1235160437,2,Modular Java,jroller.com +0,1235137519,8,Are the Java APIs poorly designed and why,stackoverflow.com +0,1235072113,4,Java in the Cloud,broadcast.oreilly.com +4,1235071639,6,New Open Source Java Virtual Globe,technology.slashgeo.org +2,1235037003,7,Turbo charging JDK 7 for multiple languages,blogs.sun.com +5,1235036391,4,JVM Threading optimizations revisited,blog.xebia.com +4,1234998620,7,Code Conventions for the Java Programming Language,java.sun.com +0,1234990091,6,A Reason to Hate Enterprise Java,mikedesjardins.us +2,1234965613,6,YourKit Java Profiler 8 0 released,theserverside.com +6,1234947032,8,Practically Groovy Groovy A DSL for Java programmers,ibm.com +0,1234946683,13,Surreal appeal of Sun s JavaFX for mobile Java ME a safer bet,theregister.co.uk +5,1234946551,2,JavaFX redux,redmountainsw.com +7,1234865985,3,Maven vs Ant,adam-bien.com +0,1234856483,10,Automated Heap Dump Analysis Finding Memory Leaks with One Click,dev.eclipse.org +0,1234850321,6,Modern Programming Leaving Java Part 2,timvalenta.wordpress.com +0,1234848221,7,simple Java linkage an invokedynamic ap ritif,blogs.sun.com +23,1234772894,3,Java 7 Update,tech.puredanger.com +0,1234769974,6,Modern Programming Leaving Java Part 1,timvalenta.wordpress.com +0,1234722262,6,Three Key Business Objectives For JavaFX,psynixis.com +0,1234683026,9,Tim Bray on the future of Java web development,thediscoblog.com +0,1234578410,8,Multilanguage Virtual Machine Da Vinci Machine Sub Projects,openjdk.java.net +3,1234539583,4,Screw all GUI builders,paranoid-engineering.blogspot.com +2,1234529654,7,JavaFX 1 1 released some first impressions,weblogs.java.net +4,1234372425,5,Annotated Java Thread Call Stacks,williamlouth.wordpress.com +0,1234360343,12,1 Million Rows In A JTable Or How To Convince C Developers,adam-bien.com +3,1234352986,6,Project Darkstar Developer Challenge Contest Winners,projectdarkstar.com +9,1234338309,7,Why doesn t Sun really respect Java,news.cnet.com +0,1234290026,17,Google revs up Android with 1 1 SDK but developers might want to hold off installing it,blogs.zdnet.com +0,1234288498,4,Creating mashups with JavaFX,ibm.com +0,1234218159,8,Android 1 1 SDK release 1 Now Available,android-developers.blogspot.com +5,1234209496,5,Substance 5 1 official release,pushing-pixels.org +0,1234194245,9,CP2JavaWS GWT like Cappuccino to Java remote services bridge,ajaxian.com +9,1234174640,14,How Sun could fix Swing and promote innovation and unification in the UI space,macstrac.blogspot.com +1,1234118431,6,Better Java Thread Stack Trace Dumps,williamlouth.wordpress.com +0,1234098456,9,Announcing GWT 1 6 Milestone 1 Google Web Toolkit,groups.google.com +0,1234015759,7,Acessing generic types at runtime in Java,blog.xebia.com +5,1233805283,9,Have any suggestions for reliable Java JSP Servlets hosting,self.java +0,1233733291,4,Staying sane with classpath,lispcast.com +0,1233674842,5,Transaction strategies Understanding transaction pitfalls,ibm.com +0,1233650039,9,The problem with JPA and Java persistence in general,devwebsphere.com +4,1233590030,5,Java Concurrency Bugs 4 ConcurrentModificationException,tech.puredanger.com +5,1233489786,7,Outline for Enterprise Development with JVM languages,berlinbrowndev.blogspot.com +0,1233477087,8,When Collections Are Configuration binding Collections in Guice,testinfected.blogspot.com +8,1233434250,8,Writing a Unix daemon in Java with Akuma,weblogs.java.net +5,1233393484,7,Java Concurrency Bugs 3 atomic atomic atomic,tech.puredanger.com +10,1233259268,8,Java Concurrency Bugs 2 what to synchronize on,tech.puredanger.com +11,1233255708,5,My Favorite Hotspot JVM Flags,blog.headius.com +5,1233249171,3,Rethinking Java Beans,willcode4beer.com +0,1233246041,10,Networking in Java non blocking NIO blocking NIO and IO,technfun.wordpress.com +0,1233221057,5,Java Thread Programming FAQ 1,prasannatech.net +0,1233176927,6,Bethinking Java s past and prospects,thediscoblog.com +15,1233155712,3,Essential Java resources,ibm.com +2,1233104900,6,JSNI amp GWT with the quickness,whatwouldnickdo.com +6,1233041967,7,Loading and Displaying an Image in Java,beginwithjava.blogspot.com +7,1233019150,3,Charting in GWT,whatwouldnickdo.com +11,1232952921,14,Just wanted to say websphere rad is the worst piece of software ever created,theserverside.com +3,1232910819,7,A Functional Approach to Java Managed Resources,hamletdarcy.blogspot.com +0,1232894076,8,Web Beans JSR 299 Yet Another EJB Dependency,altuure.com +4,1232791958,10,Project Fortress Run your whiteboard in parallel on the JVM,infoq.com +11,1232667602,13,Ask Reddit Java What development environments are you using at your office Eclipse,self.java +0,1232497149,16,Java community will probably prefer Groovy because it has learned from Java that types are hard,rickyclarkson.blogspot.com +7,1232416548,3,GWT amp Log4j,whatwouldnickdo.com +8,1232104271,9,Results are in Java Runtime download numbers for December,blogs.sun.com +8,1232051199,9,Java s new math Part 2 Floating point numbers,ibm.com +0,1231913377,11,High Resolution Monitors Make Your User Interface Scale with the Future,pushingpixels.dev.java.net +0,1231881691,8,Change the Netbeans editor to Look like vim,jvi.sourceforge.net +0,1231853798,6,Which java stack do you use,altuure.com +14,1231673943,5,Your Choice Netbeans Eclipse Why,self.java +0,1231406178,14,Blu ray Disc Application Development with Java ME Part 2 Responding to User Input,java.sun.com +0,1231401107,4,Declarative Concurrency in Java,esammer.blogspot.com +1,1231372984,8,Interfacing with hard to test third party code,googletesting.blogspot.com +5,1231323899,2,JavaFX Performance,fupeg.blogspot.com +4,1231323473,4,Java Actors with Kilim,tech.puredanger.com +5,1231323473,4,Java Actors with Kilim,tech.puredanger.com +1,1231301904,3,Tomcat Images Directory,whatwouldnickdo.com +9,1230975937,5,More Java Actor Frameworks Compared,sujitpal.blogspot.com +1,1230924971,5,VM Optimizations for Language Designers,infoq.com +6,1230911918,10,tutorial on using the Application context in Spring from WikiJava,wikijava.org +5,1230758958,3,JavaFX in Style,weblogs.java.net +0,1230723135,7,A fast implementation of WSTest in Java,technotes.blogs.sapo.pt +2,1230673814,7,who needs implementation annotation based DAO layer,altuure.com +1,1230045395,6,Basic Tools for Monitoring Garbage Collection,berlinbrowndev.blogspot.com +1,1230026460,3,Project Jigsaw 2,osgi.org +4,1229381661,6,Jeet Kaul OSGi vs JSR 277,blogs.sun.com +2,1229109601,26,Byldan is a NET analog to Maven Descriptive Project Model We are using the same libraries to handle pom constructing whether it s Java or NET,blogs.sonatype.com +4,1228931520,8,FAQ for JSR 133 Java Memory Model 2004,cs.umd.edu +0,1228550223,6,A Suggestion for Sun Big Wigs,obeygiant.dnsalias.net +4,1228439624,4,JavaFX 1 0 released,javafx.com +4,1228432174,5,Criticism of Java Persistence Frameworks,fromapitosolution.blogspot.com +0,1228349862,16,MySQL Connector C 1 0 1 Alpha Released offering a JDBC API for MySQL C developers,weblogs.java.net +11,1227611145,11,Processing Revolutionary Creative Coding Tool Now 1 0 No Longer Beta,createdigitalmotion.com +13,1227210333,5,NetBeans 6 5 is here,netbeans.org +5,1225625377,12,Creating Database Web Applications with Eclipse using WTP DTP Tomcat and Derby,eclipse.org +0,1225624163,3,Tuning Apache Derby,onjava.com +0,1225603744,5,Browsing Android Source in Eclipse,stuffthathappens.com +0,1225448695,7,New GORM Features Coming in 1 1,graemerocher.blogspot.com +0,1225374353,7,Restlet 1 1 0 lightweight REST framework,theserverside.com +3,1225388972,3,Is JSF Fixable,epirsch.blogspot.com +2,1225374299,4,Double Check does work,bill.burkecentral.com +0,1225352744,7,WebORB for Java 3 0 is released,themidnightcoders.com +3,1225324659,12,Android SDK The official SDK for the new mobile phone Operating System,code.google.com +5,1225318511,12,Tricks and Tips with NIO 2 AIO part 0 A new beginning,weblogs.java.net +1,1225313665,3,JMeter vs NeoLoad,blog.xebia.com +1,1225273978,6,Can the Java Plug in Compete,java.dzone.com +0,1225270511,8,EJB 3 From legacy technology to secret weapon,javaworld.com +14,1225262974,8,More Effective Java With Google s Joshua Bloch,java.sun.com +2,1225231965,6,DB4O with Jython Formula One Tutorial,jimcassidy.ca +0,1225201815,4,tinyPM 1 2 released,theserverside.com +1,1225223073,10,Sun s Java ME Marketing Blogs Going Off The Rails,journal.dedasys.com +1,1225219135,5,Restlet 1 1 0 released,blog.noelios.com +0,1225188111,5,Implementing Trap Sender using SNMP4J,ashishpaliwal.com +12,1225203866,8,Java s new math Part 1 Real numbers,ibm.com +1,1225201402,8,Should you install the new version of Java,news.cnet.com +7,1225201366,11,What do we really know about non blocking concurrency in Java,dow.ngra.de +0,1225186148,14,Working with Bluetooth and GPS Part 2 Parsing GPS Data and Rendering a Map,developers.sun.com +3,1225185369,4,GWT Gadgets and OpenSocial,pathf.com +0,1225179263,7,Logging Method Entry Exit with Spring AspectJ,marxsoftware.blogspot.com +6,1225178166,5,Hibernate Search Clustering with Terracotta,in.relation.to +0,1225144396,8,Client side validation done wrong with Spring Faces,matthiaswessendorf.wordpress.com +0,1225131143,6,Introduction to Spring Faces Part 1,theserverside.com +0,1225119303,5,Cross browser UI with GWT,development.lombardi.com +0,1225119052,3,REST and JSF,matthiaswessendorf.wordpress.com +0,1225117947,3,Separation of Concerns,mcherm.com +0,1225116791,7,Metawidget 0 6 runtime form generator released,theserverside.com +2,1225138831,4,Clustering Kawa with Terracotta,weblambdazero.blogspot.com +0,1225133783,8,Java 7 gets New New I O package,asserttrue.blogspot.com +1,1225130767,7,Swing links of the week October 26,pushing-pixels.org +0,1225124257,10,Hibernate Search 3 1 0 Beta2 focus on lock contention,in.relation.to +8,1225117038,6,When System currentTimeMillis is too slow,dow.ngra.de +0,1225101490,4,JSF is Not Fixable,subbu.org +1,1225096495,7,krank Java Framework for CRUD and Validation,code.google.com +3,1225092387,7,The Things That Are Wrong With Maven,ghostganz.com +0,1225089154,10,Getting Ready for the Imminent JavaFX SDK 1 0 Release,learnjavafx.typepad.com +0,1225049665,7,Obba A Java Object Handler for OpenOffice,java.dzone.com +0,1225049635,6,Dear Apple Some Java Love Please,joeygibson.com +5,1225049624,10,Is there a standard way to deploy a Java application,weblogs.java.net +0,1225043891,4,Clustering JScheme with Terracotta,weblambdazero.blogspot.com +1,1225043853,9,Cross language debugging from Ruby to Java and back,blogs.sun.com +4,1225031326,8,Lightweight Java Game Library LWJGL 2 0 Released,gdmike.statbuff.com +3,1225003222,6,YouTube Developing iPhone Applications using Java,youtube.com +0,1225001415,8,Fast and easy Hibernate example tutorial Part 1,ldeveloper.blogspot.com +1,1225000824,5,Some more JSR 203 features,tech.puredanger.com +0,1224965317,5,Hibernate weirdness with property names,sadalage.com +0,1224967640,4,Handling failure with Hibernate,in.relation.to +0,1224967402,4,modulefusion OSGi Enterprise Distribution,code.google.com +7,1224967276,12,Java SE 6 Update 10 is out but what does it deliver,infoq.com +0,1224918191,4,Java s Strong Typing,vpatryshev.blogspot.com +0,1224939902,6,Mason Yet Another Java JSON Parser,trinisoftinc.wordpress.com +1,1224939833,6,How Java Virtual Machine JVM Works,codeproject.com +0,1224939748,2,Maven Tips,blog.xebia.com +0,1224923306,4,Introducing Terracotta 2 7,terracotta.org +0,1224921918,11,2 5 bad ways to implement a server load balancing architecture,devcentral.f5.com +0,1224921355,10,I m glad that static typing is there to help,blog.objectmentor.com +0,1224921261,12,Building a Multi user Chat Server with xSocket Java and Flash CS3,giantflyingsaucer.com +0,1224920810,9,Language construct vs design pattern PHP arrays in Java,numiton.com +0,1224920768,6,UK job stats show Java decline,itwriting.com +1,1224915242,7,Introducing nWP the Java counterpart of WordPress,numiton.com +0,1224883839,4,Automating Java Performance Tuning,oracle.com +0,1224880201,8,Using Mac OS X System Images in Java,blog.pokercopilot.com +0,1224879941,4,Tricks in Java Emailing,snehanshuchatterjee.blogspot.com +0,1224874900,8,Build server side mashups with Geronimo and REST,ibm.com +0,1224872154,5,Introduction to Maven Part 2,thedevcloud.blogspot.com +0,1224859531,8,Java theory and practice Building a better HashMap,ibm.com +2,1224883581,7,A P2P approach to ClassLoading in Java,programminglearn.com +0,1224882184,4,Java Media Framework basics,programminglearn.com +0,1224882118,7,A Graphical Grid Monitoring Tool in Java,programminglearn.com +0,1224880135,4,Using exceptions in Java,confusion.tweakblogs.net +4,1224879580,8,Matrices JNI DirectBuffers and Number Crunching in Java,mikiobraun.blogspot.com +2,1224879496,11,TOTD 51 Embedding Google Maps in Java Server Faces using GMaps4JSF,weblogs.java.net +9,1224877825,10,James Gosling How The JVM Spec Came To Be video,infoq.com +1,1224875455,5,Java Open Source Mocking Frameworks,twit88.com +0,1224845398,8,Web Services Spring WS and Maven Part 2,r-c-r.blogspot.com +0,1224844489,4,Dynamic tables with JMesa,ldeveloper.blogspot.com +0,1224842935,6,JAX RS Multipart support with RESTEasy,bill.burkecentral.com +1,1224842477,9,When Java Apps don t start in OS X,welcome.totheinter.net +0,1224840336,13,Java template for WSDL first web services using CXF for Maven2 and Eclipse,joemorrison.org +0,1224787809,5,Introduction to Maven Part 1,thedevcloud.blogspot.com +0,1224767513,11,Open Flash Chart GWT Widget Library Version 1 0 0 released,ongwt.com +2,1224793506,16,Giant Flying Saucer Blog Archive Tutorial Building a Flash socket server with Java in five minutes,giantflyingsaucer.com +0,1224790055,4,SnappRadio FX Source Code,blogs.citytechinc.com +0,1224776765,10,Heterogeneous Lists and the Limits of the Java Type System,apocalisp.wordpress.com +1,1224776435,4,Java Fork Join Framework,crimsonreason.blogspot.com +0,1224746061,7,First Steps With ZK AJAX For Java,devenphillips.blogspot.com +0,1224728448,6,Apache Wicket 1 3 5 released,wicketinaction.com +5,1224746032,4,Some JSR 203 Examples,tech.puredanger.com +1,1224744330,8,Easy WebServices in Java not the common way,hofmanndavid.blogspot.com +1,1224706358,5,Google Translate API in Java,techiegyan.com +1,1224729026,4,Types and other virtues,sensualjava.blogspot.com +2,1224728236,10,HeapAnalyzer A graphical tool for discovering possible Java heap leaks,alphaworks.ibm.com +0,1224727804,11,A maze of twisty little Java web service standards all alike,joemorrison.org +2,1224725343,4,FreeCC the modern JavaCC,constc.blogspot.com +0,1224692891,5,Dependency Injection Myth Reference Passing,java.dzone.com +0,1224692809,4,Composite Pattern in Java,snehaprashant.blogspot.com +0,1224692759,8,Forget JavaFX PulpCore is the real Java RIA,jacekfurmankiewicz.blogspot.com +0,1224692540,5,Dependency Injection Myth Reference Passing,googletesting.blogspot.com +1,1224711355,6,Seam 2 1 0 GA released,in.relation.to +0,1224711147,7,Developing REST based services using JSR 311,weblog.plexobject.com +2,1224710590,7,Use HSQLDB Functions with Hibernate Mapping Files,blog.dotkam.com +5,1224706421,10,Faster graphics performance with Java using the Join Fork framework,blog.hslu.ch +1,1224706339,12,Nagging Prompts In Java Applications May Be History Soon The Symbian Blog,thesymbianblog.com +4,1224704895,13,Terracotta 2 7 Release Supports GlassFish Spring 2 5 and Distributed Garbage Collection,infoq.com +5,1224700605,7,What Makes Java Objects Plain and Old,ed-merks.blogspot.com +2,1224665252,3,Quick Ant Update,thecrumb.com +0,1224662680,6,Sun claims super skinny JavaFX milestone,theregister.co.uk +2,1224689802,9,Real Time Java for Latency Critical Banking Applications video,infoq.com +0,1224689674,7,EJB lite I think I need help,matthiaswessendorf.wordpress.com +0,1224655947,8,Calculating Combinations Using Java and Lots of Bits,semergence.com +0,1224654527,4,JSF 2 0 Endgame,weblogs.java.net +2,1224681253,5,Troubleshoots Java SE 6 Deployment,java.sun.com +0,1224681234,6,A new approach to unit tests,javalinux.it +0,1224668611,6,YUI Compressor and Java Class Loader,julienlecomte.net +10,1224666785,8,Java SE 6 Update 10 is Officially Here,theserverside.com +0,1224666077,9,AJAX World Expo Developing Rich Client Applications Using Swing,ajax.sys-con.com +0,1224665817,5,When good annotations go bad,jroller.com +3,1224663999,5,Javadoc is not enough java2dia,plindenbaum.blogspot.com +2,1224663109,5,Java5 vs Java6 ThreadPoolExecutor Difference,kirkwylie.blogspot.com +0,1224616723,7,Sun melting down and where s Java,javaworld.com +2,1224616222,6,Implementing UDP Server using Apache MINA,ashishpaliwal.com +0,1224615685,10,Server load balancing architectures Part 1 Transport level load balancing,javaworld.com +0,1224615635,7,NetBeans IDE 6 5 RC1 now available,javamidlet.com +0,1224575894,8,Generating java byte code by building AST trees,blogs.sun.com +0,1224604045,8,Java 6 Update 10 en route for JavaFX,blogs.sun.com +5,1224604022,6,Special Event Java SE 6u10 Release,blogs.sun.com +0,1224603892,5,The Open Source Cell Phone,google-opensource.blogspot.com +0,1224603499,4,Confusing Hibernate Configuration Syntax,blog.xebia.com +0,1224593427,4,Eclipse bad UI change,esumerfield.blogspot.com +2,1224591086,6,Hadoop Primer Yet Another Hadoop Introduction,beerpla.net +0,1224590417,7,Spring Batch 2 0 New Feature Rundown,blog.springsource.com +3,1224575293,8,Google AppEngine to Support Java and JavaScript Soon,blog.jamesurquhart.com +0,1224573424,5,BDoc Supporting Behavior Driven Development,theserverside.com +0,1224572674,5,Offline Ajax with Apache Derby,ibm.com +5,1224570040,7,Is Eclipse collapsing under its own weight,joemorrison.org +0,1224567208,10,Top six performance tuning tips for a Java enterprise application,byteonic.com +0,1224528993,5,Bringing JavaFX and GWT together,traceurl.blogspot.com +0,1224515871,5,Trying Out Java 6u10 Applets,java.dzone.com +0,1224515718,7,Interview Lieven Doclo Spring RCP Project Lead,java.dzone.com +0,1224515047,6,PureMVC Framework for Java MultiCore Version,trac.puremvc.org +0,1224528972,7,ofcgwt Open Flash Chart GWT Widget Library,code.google.com +1,1224528674,22,NetBeans TV Sun Fellow amp VP James Gosling the inventor of the Java programming language shares his thoughts on NetBeans 10th Birthday,netbeans.tv +0,1224528153,8,Building LinkedIn s Next Generation Architecture with OSGi,raibledesigns.com +2,1224525719,7,Swing links of the week October 19,pushing-pixels.org +2,1224525569,8,Java EE The blue pill of enterprise development,blog.jonasbandi.net +0,1224525368,12,Hazelcast is a clustering and highly scalable data distribution platform for Java,twit88.com +0,1224493247,7,Book Review Service Oriented Architecture with Java,soa-eda.blogspot.com +0,1224493132,8,Getting rid of switch statements with Java Enums,blog.kriskemper.com +0,1224515970,3,Spring Annotations Refcardz,refcardz.dzone.com +0,1224493277,6,High Dimensionality Data Reduction with Java,computer.org +0,1224493212,8,Java solves all memory problems or maybe not,schneide.wordpress.com +0,1224489249,4,Thoughts on API Design,dlinsin.blogspot.com +0,1224485803,8,JVM Challenges and Directions in the Multicore Era,multicoreinfo.com +0,1224450454,3,Surprise GWT Visit,antony-raj.blogspot.com +2,1224450423,9,Experimenting on Space4j an in memory java database system,bytescrolls.blogspot.com +0,1224445381,7,NetBeans Platform APIs Top 10 Greatest Hits,blogs.sun.com +7,1224437989,12,Google App Engine to support Java Android SDK release on Oct 22,controlenter.in +1,1224435192,10,Google Developer day Bangalore Google Appengine to support Java soon,controlenter.in +0,1224385920,5,Groovy ObjectGraphBuilder s new tricks,jroller.com +0,1224385812,8,I Love It When a Plan Comes Together,fugutalk.com +0,1224385598,6,classpath making your Modular Spring Resources,blog.sarathonline.com +0,1224344516,5,N IO Frameworks in Java,ashishpaliwal.com +0,1224366481,7,IR Math in Java Experiments in Clustering,sujitpal.blogspot.com +2,1224366409,6,IR Math in Java Cluster Visualization,sujitpal.blogspot.com +0,1224337231,4,Java Powered Internet WTF,secretgeek.net +5,1224354065,6,Declaring Methods final improves performance NOT,kirk.blog-city.com +0,1224321845,8,Achieving Thread Synchronization amp Parallelized Execution in Java,soa.sys-con.com +0,1224321805,6,Flexible Object Operation with Java Generics,javaboutique.internet.com +2,1224346806,4,Sun Microsystems Reboots Java,psynixis.com +0,1224342986,3,Inherited Embedded IDs,webgadgets.ws +0,1224342954,4,Creating unique ID transactionally,naniktolaram.com +1,1224342913,8,GWT 1 5 3 released to support Android,screaming-penguin.com +0,1224339372,4,Mocking the interpreted way,ashishpaliwal.com +0,1224337520,8,Advantage and disadvantages of String Implementation in JAVA,askaboutcomputer.blogspot.com +6,1224321788,6,Multi line String Literals in Java,blog.efftinge.de +0,1224320753,5,Jopr Open source JBoss management,jroller.com +0,1224320753,5,Jopr Open source JBoss management,jroller.com +0,1224314715,9,Wow Java Swing doesn t have to look crappy,glyph.twistedmatrix.com +0,1224253032,8,Java in the cloud hardware free miracle drug,theregister.co.uk +0,1224252582,2,JBoss Quartz,mastertheboss.com +0,1224276575,6,IBM MapReduce Tools for Eclipse Overview,alphaworks.ibm.com +0,1224267804,4,Touchless multitouch in Processing,local-guru.net +1,1224262398,6,JFXRacing A JavaFX Script Racing Game,flex888.com +0,1224226904,6,unlocking android Unlocking Android Sample Code,code.google.com +0,1224253847,12,REST for Java developers Part 1 It s about the information stupid,javaworld.com +0,1224253251,6,Do You Really Need Java 7,java.dzone.com +0,1224221724,4,BTrace DTrace for Java,blog.igorminar.com +0,1224226937,5,Groovy Java SE Project Postmortem,blogs.citytechinc.com +2,1224225467,18,Danny Coward on Java SE 6 Update 10 JavaFX and Improving Client side Java RedMonk Radio Episode 51,redmonk.com +0,1224225434,7,Java Plugin 6 Update 10 Production Release,ajaxian.com +4,1224221806,6,TimeStamp vs Date polymorphism strikes back,dev.calyx.hr +0,1224187235,9,Unlocking the Secrets of Java Cryptography Extensions The Basics,developer.com +0,1224179390,7,Reusing Annotation Based Controllers in Spring MVC,weheartcode.com +0,1224179180,9,Transactional Distributed Queue Map Set and List with Hazelcast,jroller.com +0,1224179768,7,Introducing Project Atmosphere A Portable Comet Framework,blogs.sun.com +0,1224178713,13,Writing great code with the IBM FileNet P8 APIs Part 1 Hello Document,ibm.com +4,1224172718,3,Hibernate best practices,analysis102.blogspot.com +1,1224172196,7,Obba A Java Object Handler for Excel,obba.info +0,1224139528,9,Eclipse Mobile Tools for Java 0 9 gets released,javamidlet.com +0,1224136277,7,BPM Products Consolidate Functionality For The Future,infoq.com +0,1224136183,7,Acegi Spring Security Integration JSF Login Page,ocpsoft.com +0,1224135162,8,Manage HTTP headers with Java Servlets Quick Notes,lkamal.blogspot.com +0,1224140674,6,NetBeans Wiki My first JavaFX Applet,wiki.netbeans.org +0,1224111221,6,Guest View Java multicore good news,sdtimes.com +7,1224139120,4,Why LINQ For Java,jimcassidy.ca +0,1224135842,6,Experimenting with OSGi on Server Side,blog.xebia.com +1,1224134521,11,Let Your Android Application Out of the Box with SMS Integration,devx.com +0,1224133447,6,Pivot 1 0 Here it is,java.dzone.com +0,1224097230,6,Credit Card Validator Program in Java,joshwalters.com +0,1224118352,6,Quokka A new software build system,quokka.ws +0,1224102421,7,Interfacing C C with Java Through JNI,lazymalloc.blogspot.com +2,1224102351,9,Embedding Mozilla in Java SWING Applications JDIC and Mozswing,lazymalloc.blogspot.com +1,1224097269,8,Processing Microsoft Project File in Java using MPXJ,ashishpaliwal.com +1,1224097253,8,Creating a Media Player in Java Part 3,java.dzone.com +1,1224092301,12,New Eclipse MTJ Release Eases Cross Platform Development for Mobile Java Applications,eclipse.org +0,1224055944,5,First Look Drools 5 0,smartenoughsystems.com +0,1224054637,6,Feedback about Dave s Dumb Closures,dmlloyd.blogspot.com +0,1224052105,21,Hibernate Annotations for a One To Many Mapping Featuring a Many Side Composite Primary Key having a Composite Foreign Sub Key,beavercreekconsulting.com +0,1224076536,6,Eclipse spruces Mobile Tools for Java,theregister.co.uk +0,1224074232,7,Spring Batch 2 0 0 M2 Released,springframework.org +0,1224073868,9,Ajax Based Login with ZK and Spring Security System,zkoss.org +0,1224073811,10,Quokka 0 3 Released A reproducible modular Java build tool,theserverside.com +10,1224054738,5,New Control Structures for Java,artima.com +0,1224054675,4,Never return Null Arrays,selikoff.net +0,1224054621,3,Starvation with ReadWriteLocks,javaspecialists.eu +2,1224020136,6,Mastering Grails Testing your Grails application,ibm.com +0,1224008137,6,Goodbye WTK hello Java ME SDK,weblogs.java.net +0,1223991040,11,Is Groovy a Better Choice Than Java for Creating Internal DSLs,infoq.com +2,1224019761,7,Optimising and Tuning Apache Tomcat Part 2,blog.springsource.com +1,1224009184,6,An Introduction To Servlet 3 0,today.java.net +0,1224008844,5,Java A Simple JSON Utility,twit88.com +1,1224007466,5,Private Messages with cometD Chat,cometdaily.com +3,1223992796,10,32 bit or 64 bit JVM How about a Hybrid,blog.juma.me.uk +0,1223991647,7,Google Guice sample code on multiple bindings,bytescrolls.blogspot.com +0,1223951071,6,Date and Time API Round 3,infoq.com +0,1223971845,3,OSGI and Injection,java.dzone.com +1,1223950467,7,Java ME 3 0 SDK download available,javamidlet.com +1,1223919066,5,Jersey 1 0 is released,blogs.sun.com +0,1223843388,7,Top five Java application performance management tools,byteonic.com +4,1222985912,10,Computer Science Education Where Are the Software Engineers of Tomorrow,stsc.hill.af.mil +5,1219149040,16,I ve been out of the Java Web Game for a couple years what s hot,self.java +0,1214513007,7,Slashdot Does an Open Java Really Matter,tech.slashdot.org +1,1213894452,5,List of Free J2ME Books,linkmingle.com diff --git a/spring-security-oauth/src/main/resources/test.csv b/spring-security-oauth/src/main/resources/test.csv deleted file mode 100644 index 9d3ff4dc66..0000000000 --- a/spring-security-oauth/src/main/resources/test.csv +++ /dev/null @@ -1,101 +0,0 @@ -Score, Timestamp in utc, Number of wrods in title, Title, Domain -3,1357021066,7,Good Examples of Component dragging and dropping,self.java -0,1357017936,10,Game only works on mac need help porting to windows,self.java -2,1357008210,4,eclipse or keyboard issues,self.java -37,1356977564,6,The Long Strange Trip to Java,blinkenlights.com -5,1356970069,9,How to Send Email with Embedded Images Using Java,blog.smartbear.com -0,1356956937,4,What makes you architect,programming.freeblog.hu -0,1356900338,4,Apache Maven I of,javaxperiments.blogspot.com -0,1356896219,5,Custom functions per class instance,self.java -0,1356891056,5,JMeter Performance and Tuning Tips,ubik-ingenierie.com -12,1356888358,19,First fully functional GUI program about making acronyms easier to remember Was wondering if you guys had any tips,github.com -2,1356881034,12,Social Tech 101 Why do I love Java Developer Edition Part 1,socialtech101.blogspot.com -5,1356826782,7,Configurable deployment descriptors proposal for Java EE,java.net -31,1356793800,16,Finished my very first game in java Snake clone It s not much but it works,self.java -18,1356766107,10,la4j Linear Alebra for Java 0 3 0 is out,la4j.org -1,1356747219,6,RubyFlux a Ruby to Java compiler,github.com -15,1356735585,10,Simple JMS 2 0 Sample JMSDestinationDefinition and Synchronous Message Receive,blogs.oracle.com -9,1356717174,3,Java Use WebCam,self.java -4,1356711735,5,Compiler Optimisation for saving memory,self.java -4,1356662279,22,I m interested in your opinion about Java for Python Programmers by Brad Miller or a better alternative for a Java newbie,self.java -0,1356633508,4,A good android game,self.java -4,1356631759,12,a java library i saw mentioned here can t find pls help,self.java -1,1356627923,5,About learning Java a question,self.java -0,1356623761,3,Objects and java2d,self.java -0,1356593886,2,AffineTransform halp,self.java -43,1356584047,7,Java Was Strongly Influenced by Objective C,cs.gmu.edu -1,1356580543,7,Having trouble Setting Up Android Development Environment,self.java -0,1356560732,13,How can I fetch the first X links of reddit into a list,self.java -0,1356551788,4,JDK Download page error,self.java -9,1356536557,12,looking for a good book website to learn intermediate core java spring,self.java -7,1356487079,11,A popup menu like Filemaker s Any library have an implementation,self.java -1,1356455255,6,Just a Few Helpful Solr Functions,ignatyev-dev.blogspot.ru -13,1356433373,7,Bart s Blog Xtend the better compromise,bartnaudts.blogspot.de -4,1356410180,3,Beginner Question Here,self.java -19,1356283667,5,Nashorn JavaScript for the JVM,blogs.oracle.com -0,1356234086,5,Problem with Java memory use,self.java -0,1356195953,5,Learning Java in two weeks,self.java -0,1356127053,10,Twitter4J Download a Twitter Users Tweets to a Text File,github.com -20,1356118151,15,Using Apache Commons Functor functional interfaces with Java 8 lambdas cross post from r functionalprogramming,kinoshita.eti.br -13,1356102153,7,Date and Time in Java 8 Timezones,insightfullogic.com -10,1356088959,8,Implementing a collapsible ui repeat rows in JSF,kahimyang.info -8,1356034544,5,OmniFaces 1 3 is released,balusc.blogspot.com -1,1356027563,11,How to Configure a JNDI DataSource in the OpenShift Tomcat Cartridge,openshift.redhat.com -82,1356020780,7,Doomsday Sale IntelliJ 75 off today only,jetbrains.com -3,1355976320,3,IntelliJ Working Directory,self.java -0,1355966433,5,Help with java problem please,self.java -17,1355928745,12,What s new in Servlet 3 1 Java EE 7 moving forward,blogs.oracle.com -11,1355864485,5,Quick poll for research project,self.java -0,1355851994,5,Eclipse Text Problem Need Help,self.java -29,1355823193,4,Java 8 vs Xtend,blog.efftinge.de -2,1355805047,4,Learning Java between semesters,self.java -6,1355798488,11,I m a beginner programmer any tips on where to start,self.java -7,1355784039,9,Java Advent Calendar far sight look at JDK 8,javaadvent.com -2,1355782111,9,Technical Interview coming up Suggestions Pointers Words of Wisdom,self.java -0,1355775350,6,someone may help me out here,stackoverflow.com -2,1355765235,14,THC and a bit of Thunking Creative ways to deal with multiple return types,kingsfleet.blogspot.it -0,1355749586,12,Newbie here can you explain to me what class private stack is,self.java -0,1355748318,4,When StackOverflow Goes Bad,blogs.windward.net -0,1355721981,4,Java Graphics Projectile HELP,self.java -0,1355719622,12,Which one of the following statements about object oriented programming is false,self.java -16,1355707814,8,What s the skinny on JavaFX these days,self.java -2,1355685929,20,Can someone explain exactly what Apache Ant is How does it differ from just creating a jar file in blueJ,self.java -4,1355621071,7,Looking to add test code in Github,self.java -7,1355613608,6,Java Version of Jarvis Must Haves,self.java -5,1355599765,6,Java Advent Calendar Functional Java Collections,javaadvent.com -7,1355597483,13,I m working on a text based RPG and I have some questions,self.java -2,1355574445,6,Java EE 7 Community Survey Results,blog.eisele.net -0,1355576629,4,Evolution of Java Technology,compilr.org -18,1355574828,10,Are your Garbage Collection Logs speaking to you Censum does,blog.eisele.net -10,1355559380,13,What is the best GUI tool for creating a 2d platformer in Java,self.java -0,1355555357,7,Hit me with your best arrays tutorial,self.java -10,1355542403,11,Does any one know of clean 2d graphics library for java,self.java -23,1355511507,9,Dark Juno A Dark UI Theme for Eclipse 4,rogerdudler.github.com -0,1355504132,10,Java devs that work remote I have a few questions,self.java -0,1355501999,9,How do you make use of your Java knowledge,self.java -1,1355492027,5,How ClassLoader works in Java,javarevisited.blogspot.com.au -0,1355489352,9,Main difference between Abstract Class and Interface Compilr org,compilr.org -48,1355487006,8,Date and Time in Java 8 Part 1,insightfullogic.com -0,1355485766,3,Java JSON problem,self.java -10,1355448875,16,Open source applications large small worth looking at in Java I want to understand application structure,self.java -1,1355444452,4,lo mexor pz xxx,heavy-r.com -0,1355402889,11,JRebel Remoting to Push Changes to Your Toaster in The Cloud,zeroturnaround.com -0,1355402734,6,Are bugs part of technical debt,swreflections.blogspot.ca -2,1355400483,9,Compile and Run Java programs with Sublime Text 2,compilr.org -0,1355391115,4,console input like craftbukkit,self.java -7,1355390023,8,Hosting suggestions needed for a java web app,self.java -6,1355359227,17,Java novice here Have noticed funny performance differences across laptop and desktop Nvidia optimus related Details inside,self.java -1,1355327090,18,Please advice which java server technology should I choose for this new web app in my new work,self.java -0,1355326137,6,code to convert digits into words,compilr.org -34,1355319442,7,I want to learn REAL WORLD Java,self.java -5,1355285442,3,Hiring Java Developers,self.java -0,1355282335,14,Help How can I count the amount of a specific integer in an ArrayList,self.java -1,1355272303,24,I m taking a Java 1 final tomorrow I m fairly confident but I would appreciate any tips on things to look out for,self.java -38,1355267143,6,Will Java become the next COBOL,self.java -0,1355263047,2,Understanding recursion,imgur.com -1,1355257558,15,How can I clear the command prompt terminal with java and make it cross platform,self.java -2,1355253849,18,Is there a strategy for reducing code clutter when you are printing to the terminal alot Beginner Programmer,self.java -1,1355253049,5,BlockingQueues and multiple producer threads,self.java -1,1355241441,6,Beginner Struggling with classes Need help,self.java -0,1355238089,8,Simple Steps to Merge PDF files using Java,compilr.org -23,1355236940,8,Java and vs Python within a business context,self.java diff --git a/spring-security-oauth/src/main/resources/train.csv b/spring-security-oauth/src/main/resources/train.csv deleted file mode 100644 index 31ef9cbaf0..0000000000 --- a/spring-security-oauth/src/main/resources/train.csv +++ /dev/null @@ -1,8001 +0,0 @@ -Score, Timestamp in utc, Number of wrods in title, Title, Domain -9,1429369865,13,Apache Maven JavaDoc Plugin Version 2 10 3 Released Karl Heinz Marbaise 2,maven.40175.n5.nabble.com -32,1429369782,6,Apache Commons Math 3 5 released,mail-archives.apache.org -13,1429369742,8,Apache Fortress Core 1 0 RC40 released RBAC,mail-archives.apache.org -17,1429353784,15,Generate Heroku like random names to use in your Java applications github com atrox haikunatorjava,github.com -4,1429346987,4,How Pattern compile works,self.java -0,1429333506,10,jsoup extract tagged entities from within lt p gt elements,stackoverflow.com -3,1429308638,4,Introduction to OmniFaces presentation,slideshare.net -5,1429302927,14,Anyone know of a good Java library that does efficient intersection operations on SortedSets,self.java -55,1429298310,13,Why is StringBuilder append int faster in Java 7 than in Java 8,stackoverflow.com -47,1429287731,10,Google Chrome dropping support for NPAPI ending Java applet support,blog.chromium.org -21,1429282959,9,Comment from James Gosling on multi language VM 1995,mail.openjdk.java.net -10,1429281132,9,How to make MIDI sound awesome in the JVM,daveyarwood.github.io -83,1429277913,12,Byte code features that are not available in the Java programming language,stackoverflow.com -0,1429277774,4,Your Staging Environment Sucks,blog.takipi.com -2,1429277368,3,Integration test framework,self.java -1,1429272573,5,Getting Rid Of Anonymous Classes,blog.codefx.org -7,1429266262,5,JBoss EAP 6 4 released,access.redhat.com -3,1429266112,3,Introducing WebPageTest mapper,cruft.io -10,1429265731,10,A Look at the Ehcache Storage Tier Model with Offheap,voxxed.com -5,1429263776,4,Baeldung Weekly Review 16,baeldung.com -8,1429258592,4,JSF vs other frameworks,jsf.zeef.com -11,1429258004,5,PrimeFaces Spark Gets New Colors,blog.primefaces.org -1,1429246603,21,Learning Java and trying to finish headfirst by summer July I m looking for a 1 on 1 helper a Sensei,self.java -1,1429224557,43,java I have no programming experience and I am taking an Object Oriented Programming Java class in July What resources are available to me to help me learn as much as I can between now and July to go smoothly into the class,self.java -4,1429224075,7,jackson json pointers aka xpath for json,tools.ietf.org -6,1429219046,9,Programming Design Patterns Tutorial Series X POST r learnprogramming,self.java -107,1429215807,12,Oracle to end publicly available security fixes for Java 7 this month,infoworld.com -5,1429213264,9,4 Worthy Tools For Building iOS Apps in Java,geekswithblogs.net -3,1429209404,22,SimpleFlatMapper v1 8 0 a very fast micro orm csv parser mapper now with Optional Java8 time and static factory method instantiation,github.com -10,1429208592,14,Spring Session 1 0 1 introduces AWS Elasticache Servlet 3 1 2 5 support,spring.io -9,1429208402,5,Hazelcast Simulator 0 4 Released,dzone.com -5,1429201636,2,Copyright question,self.java -20,1429199342,9,The long strange life death and rebirth of Java,itworld.com -18,1429199331,3,Ryan vs James,mountsaintawesome.com -3,1429195118,7,Java 8 Optional Explained in 5 minutes,blog.idrsolutions.com -6,1429195095,10,A beginner s guide to Java Caches Ehcache Hazelcast Infinispan,labs.consol.de -0,1429191706,8,Spring Enable annotation writing a custom Enable annotation,java-allandsundry.com -34,1429189873,4,Human JSON for Java,github.com -1,1429187329,5,Experience with Salesforce REST API,self.java -12,1429184451,4,jClarity Java 9 REPL,jclarity.com -1,1429182871,9,Spring integration Java DSL 1 1 M1 is available,spring.io -7,1429177459,4,KISS With Essential Complexity,techblog.bozho.net -9,1429173051,13,How to debug java applications which may fail during runtime in production environments,self.java -3,1429165619,10,How to Contribute to the Java Platform The Java Source,blogs.oracle.com -1,1429164811,13,OT Does the word Acegi the old name for Spring Securty mean anything,self.java -1,1429136945,9,Rules that can help you write better unit tests,schibsted.pl -0,1429134579,8,Small but useful overview of JAX RS resources,jax-rs.zeef.com -5,1429133011,4,JPA Inheritance Strategies Explained,monkeylittle.com -25,1429125035,7,Why non programmers hate the Java runtime,imgur.com -292,1429120425,6,Java reference in GTA V Beautiful,imgur.com -4,1429118139,8,How to Create and Verify JWTs in Java,stormpath.com -7,1429109253,6,Java CPU and PSU Releases Explained,oracle.com -7,1429104517,7,Most popular Java EE containers 2015 edition,plumbr.eu -11,1429097422,13,No language before or after Java ever abused annotations as much as Java,blog.jooq.org -113,1429085023,14,We analyzed 60 678 Java Library Dependencies on Github Here are the Top 100,blog.takipi.com -6,1429084064,4,Hibernate and UUID identifiers,vladmihalcea.com -2,1429083973,11,Using Apache Kafka for Integration and Data Processing Pipelines with Spring,spring.io -4,1429070871,9,J Compile and Execute Java Scripts in One Go,github.com -4,1429048921,6,Apache Tomcat 7 0 61 released,mail-archives.apache.org -5,1429047999,6,Fast Track D 8 week course,self.java -1,1429042868,9,Spring Technology at Cloud Foundry Summit May 11 12,spring.io -5,1429041882,6,Oracle Critical Patch Update April 2015,oracle.com -73,1429035317,8,Java is back at the top of Tiobe,tiobe.com -8,1429021091,9,Agenda for this weekends free NetBeans Day in Greece,netbeans.dzone.com -0,1429017927,9,College student in need of a Java job Help,self.java -3,1429012469,4,Engineering Concurrent Library Components,youtube.com -9,1429011763,10,How do we access secure web services in Java Program,vinothonsoftware.com -1,1429010860,18,NoCombiner for when you re absolutely certain you don t want to collect reduce a stream in parallel,self.java -0,1429009976,11,jOOQ Tuesdays Vlad Mihalcea Gives Deep Insight into SQL and Hibernate,blog.jooq.org -16,1429009905,5,Result Set Mapping Complex Mappings,thoughts-on-java.org -2,1429008284,11,How to go about this reddit getting spammed with help requests,self.java -14,1429006660,9,Java EE Security API JSR 375 Update The Aquarium,blogs.oracle.com -5,1428986485,7,Key signature detection of an mp3 file,self.java -14,1428954202,9,Spring From the Trenches Returning Runtime Configuration as JSON,petrikainulainen.net -0,1428952664,4,Drag and dropping data,self.java -5,1428940004,15,Version 0 3 of static mustache templating engine with is released Layouts are now supported,github.com -0,1428937602,12,Spring Example Blueprint project that showcases some more advanced features good practices,self.java -13,1428932531,8,A Java EE Startup Getting Lucky With DreamIt,adam-bien.com -9,1428926155,13,Genson 1 3 released Better Json support for Jodatime Scala Jaxb and JaxRS,self.java -28,1428915977,5,PrimeFaces finally moved to GitHub,blog.primefaces.org -5,1428912554,4,Minimalist Java Web Applications,cantina.co -18,1428908203,5,Tips for continuous performance testing,self.java -0,1428894576,4,Trouble getting it Discouraged,self.java -0,1428891440,3,Java game rendering,self.java -5,1428884317,4,hibernate logging with slf4j,self.java -0,1428874572,5,Learn the Basics of Java,youtube.com -2,1428874267,6,Spring Framework Today Past and Future,infoq.com -3,1428874070,7,Java Community Release First OpenJDK Coverage Numbers,infoq.com -63,1428874015,4,Maven Escapes from XML,infoq.com -13,1428873920,7,AssertJ core 2 0 0 testing exceptions,joel-costigliola.github.io -10,1428871386,8,Storytelling with tests 1 test names and granularity,blog.kaczmarzyk.net -0,1428859230,4,Java Game Development Tutorial,youtube.com -0,1428852941,8,Need help with running webapp Willing to pay,self.java -1,1428810377,5,Is Clean Code less Code,journeytomastery.net -21,1428796303,6,CERT Oracle Coding Standard for Java,securecoding.cert.org -4,1428793781,6,Jenkins Security Advisory 2015 03 23,wiki.jenkins-ci.org -1,1428786090,4,Using JSOUP on Amazon,self.java -8,1428770588,6,Admin interface for Spring Boot applications,github.com -6,1428763128,11,Liberty beta includes Java EE 7 full profile nearly done now,developer.ibm.com -98,1428761176,17,A UK university is offering this free online course for learning to program a game in java,futurelearn.com -14,1428694375,5,JSF page templates with Facelets,andygibson.net -2,1428682099,2,GOTO library,self.java -0,1428678809,6,System close with included jar files,self.java -0,1428665744,7,SparkJava Dependency injection in SparkApplication using Spring,deadcoderising.com -2,1428662794,4,Baeldung Weekly Review 15,baeldung.com -0,1428660541,6,SENTIMENT ANALYSIS USING OPENNLP DOCUMENT CATEGORIZER,technobium.com -10,1428658232,6,Getting started with Liberty and Arquillian,developer.ibm.com -8,1428655530,10,Is there a library with a PID controller in Java,self.java -41,1428655020,7,Stock market prediction using Neuroph neural networks,technobium.com -12,1428653081,7,SimpleDateFormat is not parsing the milliseconds correctly,stackoverflow.com -47,1428651658,10,How Spring achieves compatibility with Java 6 7 and 8,spring.io -5,1428607477,6,JSF 2 3 milestone 2 released,java.net -90,1428599706,5,Jenkins says Good bye Java6,jenkins-ci.org -3,1428599034,8,How does Hibernate store second level cache entries,vladmihalcea.com -1,1428587411,13,CDI Properties is now more flexible and production ready v1 1 1 released,github.com -2,1428585594,9,Top 10 Open Source Java and JavaEE Application Servers,blog.idrsolutions.com -57,1428575462,16,Is Spring the de facto web framework for Java What alternatives are there Pros and cons,self.java -8,1428574106,6,Writing Clean Tests Small Is Beautiful,petrikainulainen.net -1,1428550116,5,Minimal Java to Swift converter,self.java -5,1428542422,8,thundr a lightweight cloud friendly java web framework,3wks.github.io -26,1428516131,4,Minimalist java web applications,cantina.co -2,1428505365,6,Maven plugin to support versioning policy,github.com -1,1428503767,6,Keeping code synced across different computers,self.java -3,1428502424,8,Spring Boot Support in IntelliJ IDEA 14 1,youtube.com -0,1428497733,5,Debug java application in eclipse,youtube.com -14,1428495980,5,Complete Android Apps on github,self.java -9,1428492415,8,Eclipse Java compiler released for iPhone and iPad,self.java -0,1428491675,3,StringBuilder and StringBuffer,self.java -98,1428490616,6,Top 5 Useful Hidden Eclipse Features,blog.jooq.org -10,1428487777,5,Pippo Micro Java Web Framework,self.java -2,1428482838,13,Working on Effective Java a tool to measure and explore your Java codebase,tomassetti.me -14,1428480483,5,PrimeFaces 5 2 Final Released,blog.primefaces.org -0,1428479182,6,Tips and tricks using Oracle Apps,oracleappstoday.com -4,1428474682,10,Java ME 8 Raspberry Pi Sensors IoT World Part 1,oracle.com -0,1428474471,14,Java Weekly 15 15 GC tuning HTTP2 good Javadoc MVC 1 0 early draft,thoughts-on-java.org -2,1428450220,29,Little known real time standard impacts broad span of Java applications RTSJ 2 0 promises to enable type safe device access advanced scheduling and more even beyond RT world,javaworld.com -113,1428437516,17,In the world of Internal Server Error this is the most beautiful thing I have ever seen,i.imgur.com -1,1428436749,6,Sublime Text 3 Running and Compiling,self.java -3,1428423729,16,My Weekly Review Testing and Spring goodness as well as some musings about introversion and leadership,baeldung.com -2,1428418704,12,All about Oracle Cloud PaaS and IaaS to rapidly build rich apps,oracle-cloud.zeef.com -0,1428410737,10,How to Avoid the Dreaded Dead Lock when Pessimistic Locking,blog.jooq.org -0,1428407132,7,Get username of those who last committed,stackoverflow.com -0,1428406799,10,Not able to execute the java class files in ubuntu,stackoverflow.com -8,1428398570,4,JPA Result Set Mappings,thoughts-on-java.org -1,1428397303,2,group project,self.java -5,1428396645,5,ECMAScript 6 compiler and runtime,github.com -0,1428396307,8,Timeout policies for EJBs how do they help,self.java -6,1428395105,5,Develop a simpele OSGi application,www-01.ibm.com -53,1428390843,7,Java 8 Concurrency Tutorial Threads and Executors,winterbe.com -0,1428387456,16,Wouldn t it be nice if Java had native XML HTML support similar to React js,self.java -11,1428385073,15,Immutables release 2 0 A leap ahead of similar solutions for immutable objects and builders,immutables.github.io -0,1428356574,13,Lattice and Spring Cloud Resilient Sub structure for Your Cloud Native Spring Applications,spring.io -0,1428354757,9,distributed ehcache batched replication across WANs using SNS SQS,github.com -48,1428345699,6,Upgrading to Java 8 at Scale,product.hubspot.com -45,1428330436,13,7 Things You Thought You Knew About Garbage Collection and Are Totally Wrong,blog.takipi.com -3,1428328805,17,Ideas So I have a good amount of web page data What should I do with it,self.java -21,1428326864,8,Architecting Large Enterprise Java Projects by Markus Eisele,zeroturnaround.com -9,1428307292,10,Spring from the Trenches Injecting Property Values Into Configuration Beans,petrikainulainen.net -20,1428305473,10,Hibernate ORM 5 0 0 Beta1 released but nothing new,in.relation.to -5,1428291517,13,Is that Googlebot user agent really from Google New Java library to verify,flowstopper.org -1,1428247390,23,What does it take to parse an inorder expression to preorder and postorder and vice versa Also how to make an expression tree,self.java -66,1428223660,16,To contribute to this code it is strictly forbidden to even look at the source code,self.java -3,1428163919,8,Are there any Hadoop plugins available for Netbeans,self.java -5,1428150621,8,java util logging Example Examples Java Code Geeks,examples.javacodegeeks.com -8,1428147245,10,Apache Mavibot 1 0 0 M7 MVCC B tree implementation,mail-archives.apache.org -7,1428147176,7,HttpComponents Client 4 4 1 GA Released,mail-archives.apache.org -12,1428139539,6,Where to find educational Java posters,self.java -0,1428106807,10,How do I install Java without third party sponsor offers,java.com -454,1428103376,4,Guys I found it,imgur.com -26,1428084751,14,I m porting Java exercises to exercism io anyone care to help us out,github.com -13,1428075406,7,RoboVM Intellij IDEA Android Studio plugin released,robovm.com -5,1428071742,37,Is it possible to create a maven plugin custom class implementing the same interfaces as JDefinedClass JFieldVar and JMethod in order to support demarshalling an xsd to an Android POJO by replacing JAXB annotations with SimpleXML annotations,self.java -0,1428061375,8,1 Way Messaging Systems actors are NOT MAINTAINABLE,self.java -17,1428044132,6,PrimeFaces Spark Layout and Theme Released,primefaces.org -0,1428031239,8,Spring Boot Dependency Injection Into External Library Project,recursivechaos.com -1,1428030187,4,Question about SE Certifications,self.java -90,1427998309,9,Java VM Options You Should Always Use in Production,blog.sokolenko.me -2,1427989780,5,A Java 8 parallel calamity,coopsoft.com -26,1427984034,13,Java Performance Tuning How to Get the Most Out of Your Garbage Collector,blog.takipi.com -12,1427981719,5,Java security driving me insane,self.java -0,1427979506,8,Basic java tutorials uni student struggling with concepts,self.java -6,1427978177,5,Educational Software made with Java,self.java -10,1427977044,10,How Java EE translates web xml constraints to Permission instances,arjan-tijms.omnifaces.org -19,1427956471,7,An in depth overview of HTTP 2,undertow.io -7,1427956195,5,Java Weekly April Fools Edition,thoughts-on-java.org -38,1427955312,5,Architecting Large Enterprise Java Projects,blog.eisele.net -15,1427948605,8,Reasons Tips and Tricks for Better Java Documentation,zeroturnaround.com -2,1427934990,7,Streaming Spring and Hibernate dev for DevWars,self.java -2,1427930260,5,Help getting back into it,self.java -6,1427923823,7,How Can You Become a Java Champion,javaspecialists.eu -31,1427913927,5,Java 8 functional programming book,self.java -9,1427908457,6,RichFaces 4 5 4 Final released,developer.jboss.org -9,1427902920,20,Why Netty makes you do reference counting for ByteBuffers Isn t it supposed to be single threaded through Java NIO,netty.io -21,1427881990,11,Orbit Framework from EA and Bioware for large scalable online services,orbit.bioware.com -5,1427881249,6,ZipRebel Download the Internet in Milliseconds,zeroturnaround.com -21,1427880728,13,Don t be Fooled by Generics and Backwards Compatibility Use Generic Generic Types,blog.jooq.org -3,1427877629,12,Build a Java 3 tier application from scratch Part 3 amp 4,janikvonrotz.ch -4,1427877234,15,Getting started with Spark it is possible to create lightweight RESTful application also in Java,tomassetti.me -1,1427873515,8,SELECT statements batch fetching with JDBC and Hibernate,vladmihalcea.com -80,1427868369,11,Top 20 Online Resources to Boost Up your Java Programming Skill,simplilearn.com -11,1427821969,4,JavaLand 2015 Wrap Up,weblogs.java.net -12,1427820983,6,gradle release Release plugin for Gradle,github.com -14,1427818574,9,JSR 371 Model View Controller 1 0 First Draft,jcp.org -18,1427817778,10,Apache jclouds 1 9 released the Java multi cloud toolkit,jclouds.apache.org -14,1427815940,12,A fluent Java 8 interface to the Pivotal Tracker API seeking contributors,github.com -3,1427815506,13,I have been working on and off to create this limited feature game,youtube.com -14,1427813489,4,Stream Processing Using Esper,hakkalabs.co -10,1427809292,20,JavaLand 2015 result JavaFX 3d mosaic for dailyfratze de using Flyway jOOQ H2 JavaFX and the CIE94 color distance algorithm,info.michael-simons.eu -5,1427797324,8,Java 8 Consumer Supplier Explained in 5 minutes,blog.idrsolutions.com -5,1427792442,10,A Java EE 7 Startup Virtualizing Services with hubeo com,adam-bien.com -32,1427789071,12,Build a Java 3 tier application from scratch Part 2 Model setup,janikvonrotz.ch -7,1427787380,13,Has anyone successfully build Bruce Eckels Thinking in java 4th Edition using Eclipse,self.java -4,1427786182,4,Microservices Monoliths and NoOps,blog.arungupta.me -2,1427783537,11,Free JPA 2 1 Cheat Sheet by Thorben Janssen The Aquarium,blogs.oracle.com -16,1427772872,9,What other java community news type sites are there,self.java -5,1427752897,10,A memory leak caused by dynamic creation of log4j loggers,korhner.github.io -2,1427749046,11,JSF 2 2 Input Output JavaLand 2015 presentation by Ed Burns,reddit.com -1,1427748262,8,New book Web Development with Java and JSF,blogs.oracle.com -4,1427741117,9,Jackson module for model without default constructors and annotations,github.com -3,1427740598,7,Extending NetBeans with Nashorn Geertjan s Blog,blogs.oracle.com -26,1427733615,4,Microtyping in Java revisited,michael-snell.com -7,1427729109,4,JSF standard converters example,examples.javacodegeeks.com -32,1427729030,5,My Trip to JavaLand 2015,thoughts-on-java.org -6,1427728896,4,Developing applications using ICEfaces,genuitec.com -6,1427727890,5,Database Schema Migration for Java,java-tv.com -8,1427727702,11,Handling 10k socket connection on a single Java thread with NIO,coralblocks.com -4,1427723994,6,Infusing Java into the Asciidoctor Project,voxxed.com -12,1427719572,10,While You Were Sleeping The Top New Java 8 Additions,blog.takipi.com -5,1427717418,7,Lightweight Metrics for your Spring REST API,baeldung.com -17,1427715582,4,Future proofing Java objects,jacek.rzrz.pl -0,1427686435,14,Why do companies make apps in Java when it could be made in HTML,self.java -2,1427666757,14,Why You Should Care About the Java EE Management API 2 0 JSR 373,voxxed.com -1,1427666708,14,Maven Plugin Generate SoftWare IDentification SWID Tags according to ISO IEC 19770 2 2009,github.com -9,1427662594,8,How to OAUTH 2 0 With Spring Security,aurorasolutions.io -99,1427652244,10,I love documenting code Is this an actually useful skill,self.java -11,1427639821,8,Apache Maven Compiler Plugin Version 3 3 Released,mail-archives.apache.org -18,1427639750,6,Apache Tomcat 8 0 21 available,mail-archives.apache.org -8,1427639679,6,Apache PDFBox 1 8 9 released,mail-archives.apache.org -2,1427629143,12,Can you recommend any resources website in which I can practice OOP,self.java -29,1427606855,30,Brand new to programming 4 weeks and just finished my first program I don t hate with Java Swing I call it Calculator 2 0 Can I get some feedback,github.com -8,1427561486,23,Currently learning Java EE but how much into JavaScript should I learn if I don t want to be focused in front end,self.java -0,1427553410,7,JAXB Is Doing It Wrong Try Xembly,yegor256.com -3,1427551556,7,How to batch DELETE statements with Hibernate,vladmihalcea.com -4,1427551143,8,Being Functional with Java 8 Interfaces and JRebel,zeroturnaround.com -4,1427550805,14,Why You Should Care About the Java EE Management API 2 0 JSR 373,voxxed.com -8,1427485244,7,Build scalable feeds with GetStream and Java,github.com -0,1427482789,7,How to build a simple stack machine,unnikked.ga -0,1427471086,7,what level of programmer is this guy,self.java -0,1427470026,7,What s new in Spring Data Fowler,spring.io -9,1427468640,13,JBoss releases first beta of their beta AS WildFly 9 0 0 Beta1,developer.jboss.org -138,1427461508,12,Error Prone Google library to catch common Java mistakes at compile time,errorprone.info -3,1427461251,17,Sneak a peak at Vert x 3 0 and try out milestone 3 xpost from r vertx,vert-x3.github.io -11,1427443176,4,GUI Builders Good Bad,self.java -11,1427422973,6,Eclipse What are your favorite HotKeys,self.java -4,1427417803,11,Have you ever been part of an in office coding contest,self.java -7,1427407057,9,When should I used the DAO Impl design pattern,self.java -0,1427406199,16,Spring XD 1 1 1 adds Kafka manual acking improved perf amp Spark streaming reliable receiver,spring.io -5,1427395259,8,Websphere MQ JBoss EAP 6 integration via JCA,gautric.github.io -43,1427395074,11,If programming didn t pay well would you still do it,self.java -5,1427393336,8,Monitor Wildfly JBoss Server Stats through Google Analytics,self.java -24,1427382684,13,Spring Security 4 0 0 adds websocket Spring Data and better testing support,spring.io -6,1427381812,9,Spring Integration Kafka Support 1 1 GA is available,spring.io -0,1427377576,11,The top 11 Free IDE for Java Coding Development amp Programming,blog.idrsolutions.com -3,1427377087,6,REST API documentation generator for Java,miredot.com -0,1427373000,7,Getting tomcat amp httpd to play nice,self.java -15,1427367837,7,IntelliJ IDEA Live Templates for Unit Testing,vansande.org -0,1427351309,6,Microsoft Visual Studio 13 Compiling Java,self.java -16,1427333005,10,Anyone know how to get rid of this in eclipse,self.java -2,1427312270,7,Azul Systems Unveil New Clone Zulu Embedded,voxxed.com -10,1427305911,11,New Liberty features for Java EE 7 plus Java 8 support,developer.ibm.com -1,1427296409,4,Reactive Java Use Cases,self.java -0,1427296360,6,Down with Java Up with Lua,self.java -0,1427289775,34,What s the easiest way to generate basic CRUD functionality with a web front end and a MySQL backend Ex create edit delete search a simple Entity like Person with firstName lastName emailAddr cellPhoneNumber,self.java -2,1427287251,17,Is it a good idea to split the login from the application as a separate WAR file,self.java -0,1427279051,16,Java 1 7 0 55 SSL Cert Errors SSL CA Cert is in the Browser Keystore,self.java -16,1427276418,40,As a developer I find writing functional tests even using such great frameworks as Geb and Spock painstakingly boring Especially for lengthy scenarios How do you guys cope with this Is there a way to make this task not boring,self.java -2,1427272022,4,Performance monitoring tool recommendations,self.java -102,1427270492,10,Java 8 API by Example Strings Numbers Math and Files,winterbe.com -2,1427248844,5,Protected Static Possible use cases,self.java -0,1427246378,6,Best online tool to learn java,self.java -1,1427241489,6,Using makers to create clear tests,samatkinson.com -11,1427232275,18,Java The once and future king of Internet programming Internet of Things a natural home for Java work,javaworld.com -11,1427215957,9,Building an extensible HTTP client for GitHub in Java,clever-cloud.com -0,1427214895,7,jOOQ vs Hibernate When to Choose Which,blog.jooq.org -2,1427208363,7,Opensource Tibco RV alternative with Java support,self.java -144,1427204853,5,IntelliJ IDEA 14 1 Released,blog.jetbrains.com -7,1427200673,7,Philips eXp5371 Java enabled Gaming CD Player,mobilemag.com -17,1427194630,8,Why Bet365 swapped Java for Erlang Information Age,information-age.com -0,1427178219,8,Vaadin how to solve the slow rendering problem,self.java -21,1427169838,2,JavaLand 2015,self.java -16,1427162513,4,Java code certificate questions,self.java -1,1427161066,20,Can I use two different GUIs StudentGUI and InstructorGUI both being clients to communicate through a server with Socket Programming,self.java -13,1427151849,6,Resources For Data Structures Practice Problems,self.java -9,1427139052,12,Java Weekly 13 15 JCache RESTful conversations Java EE Management and more,thoughts-on-java.org -1,1427133156,9,How to add local IP to exception site list,self.java -2,1427132926,16,Multiple UI Applications and a Gateway Single Page Application with Spring and Angular JS Part VI,spring.io -8,1427130565,10,Good idea to choose WebSphere for a new JEE project,self.java -32,1427129597,7,Oracle Java Mission Control The Ultimate Guide,blog.takipi.com -13,1427127962,11,Dealing with a open source project maintainer who refuses to communicate,self.java -4,1427125041,19,Write webapp once run it on any platform such as Servlet Netty Grizzly Vert x Play and so on,cettia.io -6,1427095980,12,Java Weekly 13 15 JCache RESTful conversations Java EE Management and more,thoughts-on-java.org -1,1427090041,5,Audit4j 2 3 1 Released,audit4j.org -6,1427073875,5,Dropwizard MongoDB and Gradle Experimenting,javacodegeeks.com -49,1427044610,8,How does Oracle Labs new JIT compiler work,youtube.com -4,1427039451,8,Apache Batik 1 8 Released CVE 2015 0250,mail-archives.apache.org -2,1427039225,7,HttpComponents Core 4 4 1 GA released,mail-archives.apache.org -73,1427004884,4,The snootiness of programmers,self.java -38,1426989677,8,JBake a Java based static site blog generator,jbake.org -2,1426984604,13,What do you consider to be the best resource to learn JAX RS,self.java -2,1426976017,11,Is there interest in an EventBus that doesn t use reflection,self.java -4,1426975404,5,Java web framework online lectures,self.java -14,1426974663,5,Java web framework like Django,self.java -3,1426960212,5,Bash Pipes vs Java Streams,github.com -34,1426955559,7,Does anybody using OpenJDK 8 in production,self.java -3,1426948983,36,Hi r java I ve halted development on an open source side project for image and video frame filtering on Android Would anybody use this If there s interest I ll continue development and release it,github.com -3,1426938371,8,Java 8 20 Date and Time API Examples,javarevisited.wordpress.com -7,1426931412,13,Show r java semantic amp full text code search for Java GitHub repos,sourcegraph.com -0,1426917696,7,Book recommandations BOOKS BOOKS AND MORE BOOKS,self.java -73,1426875488,20,The company I m at wants to do a complete upgrade from Java 6 Should I propose 7 or 8,self.java -3,1426865502,6,Spock by Example Introducing the Series,eclipsesource.com -15,1426863937,4,From Python to Java,self.java -0,1426850216,5,Java Cloneable critique discussion time,self.java -24,1426846040,8,JDK 9 Compiler support for private interface methods,mail.openjdk.java.net -19,1426844582,7,Did AngularJS borrow some concepts from JSF,maxkatz.org -2,1426836508,12,Recording and slides of Graal tutorial Compiler written in Java for JavaBytecode,mail.openjdk.java.net -6,1426829281,7,Critique time Java 8 Optional and chaining,self.java -17,1426813441,4,Java 9 and Jigsaw,self.java -4,1426812062,11,jPopulator a handy tool to populate Java Beans with random data,github.com -19,1426808237,7,Java EE authorization JACC revisited part III,arjan-tijms.omnifaces.org -46,1426802658,9,Ever heard of Selenium Check out this Java Tutorial,airpair.com -4,1426801477,4,Java projects for resume,self.java -4,1426782874,13,Optional in Java Why it can shield but not save you from null,michael-snell.com -5,1426781201,3,JavaScript to Java,self.java -5,1426773152,13,Java AOT compiler Excelsior Jet charity bundle is back starting at US 10,self.java -1,1426768311,7,The dark side of Hibernate AUTO flush,vladmihalcea.com -20,1426766616,11,Jackdaw is a Java Annotation Processor which allows to simplify development,github.com -94,1426764988,7,Java 9 will be lightweight and modular,in.techradar.com -13,1426763659,15,Why we are abandoning ImageIO and JAI for Image support in our commercial Java code,blog.idrsolutions.com -0,1426731729,7,How would you implement this Java class,self.java -1,1426719910,10,Spring Boot Support in Spring Tool Suite 3 6 4,spring.io -0,1426716853,9,Apache Maven JavaDoc Plugin Version 2 10 2 Released,mail-archives.apache.org -15,1426716530,4,Maven 3 3 1,maven.apache.org -0,1426713873,6,Jetty 9 2 10 v20150310 Released,dev.eclipse.org -1,1426713770,18,Netty Three releases a day 5 0 0 Alpha2 4 1 0 Beta4 and 4 0 26 Final,netty.io -18,1426713626,6,Apache Camel 2 15 0 released,mail-archives.apache.org -4,1426713037,4,Convert PDF to excel,self.java -0,1426708940,4,Java Hashmap quick question,self.java -2,1426699819,10,Async Goes Mainstream 7 Reactive Programming Tools You Must Know,blog.takipi.com -10,1426698923,6,Turning on GC logging at runtime,plumbr.eu -12,1426698812,9,Using JASPIC to secure a web application in GlassFish,voxxed.com -8,1426698684,7,Top tips and links for JSF developers,codebulb.ch -9,1426696639,12,JSF 2 3 now supports Map in ui repeat and h dataTable,jdevelopment.nl -79,1426690786,5,r java hits 40K subscribers,redditmetrics.com -3,1426684271,6,What Lies Beneath OpenJDK PDF slides,java.net -13,1426680701,7,Java 8 Functional Interfaces and Checked Exceptions,codingjunkie.net -79,1426677823,29,What GUI library for java do you or most people use these days Im still using swing with netbeans am I outdated Couple newbie questions for you awesome programmers,self.java -3,1426675209,9,How to batch INSERT and UPDATE statements with Hibernate,vladmihalcea.com -4,1426674123,4,JPA Database Schema Generation,radcortez.com -3,1426668641,7,Testing your Spring Boot application with Selenium,g00glen00b.be -18,1426665576,5,Primitives in Generics part 2,nosoftskills.com -2,1426653046,8,Luciano Fiandesio VIM configuration for happy Java coding,lucianofiandesio.com -5,1426631569,10,What are the best Spring in person paid courses training,self.java -12,1426631408,5,RebelLabs Java Performance Survey 2015,rebellabs.typeform.com -0,1426612348,22,I have a selenium screenshotting java file that I want to make more central to distribute across the company for usage help,self.java -9,1426606646,11,Free O Reilly Microservices eBook Migrating to Cloud Native Application Architecture,pivotal.io -0,1426604327,3,Eclipse or Intellij,self.java -2,1426593844,6,OkHttp 2 3 has HTTP 2,publicobject.com -1,1426585180,12,Suggest any project ideas to implement using Java springs and hibernate framework,self.java -135,1426560413,4,Java Forever And Ever,youtube.com -7,1426558239,6,jexer Pure Java Turbo Vision lookalike,github.com -7,1426545748,5,Apache JMeter 2 13 released,mail-archives.apache.org -4,1426542461,13,Java Weekly 12 15 CDI templating in MVC Keycloak recorded sessions and more,thoughts-on-java.org -16,1426537759,13,How do I implement an AJAX based polling on a web application efficiently,self.java -49,1426517007,10,The decline of Java application servers when using Docker containers,medium.com -0,1426504640,9,Externalizable interface and its implementation in Java with Example,codingeek.com -17,1426500806,4,Flyway 3 2 released,flywaydb.org -0,1426496256,9,Would you call Spring Security a type of AOP,self.java -3,1426494172,11,How to Convert Word to PDF in Java with Free tools,docmosis.com -9,1426492074,6,Avoiding Null Checks in Java 8,winterbe.com -4,1426483887,18,Prior to java 8 was the reflection API essentially the way you d be able to implement callbacks,self.java -3,1426456513,4,Remote programming on android,self.java -67,1426443682,10,What are good coding practices that you wish everyone used,self.java -10,1426416132,3,Tuning Java Servers,infoq.com -17,1426410986,5,Java Checked vs Unchecked Exceptions,jevaengine.com -1,1426362888,8,Release Notes for XWiki 7 0 Milestone 2,xwiki.org -22,1426355655,5,There can be only one,michael-snell.com -57,1426353799,7,Maven s Inflexibility Is Its Best Feature,timboudreau.com -3,1426352424,10,What would you choose between JavaFX 8 and NetBeans RCP,self.java -1,1426305452,15,Google WindowBuilder Does a system require the plugin to run an application developed using WindowBuilder,self.java -35,1426290770,7,Simplifying class instance matching with java 8,onoffswitch.net -1,1426282272,7,What practical programs exercises should I do,self.java -0,1426271984,9,MVC vs JSF a bit of a different perspective,weblogs.java.net -11,1426270108,11,Liberty EE 7 March 15 beta now supports JSF 2 2,developer.ibm.com -59,1426251505,6,10 Java Articles Everyone Must Read,blog.jooq.org -6,1426246261,4,Baeldung Weekly Review 11,baeldung.com -50,1426236994,14,NetBeans have updated their Tutorials Guides and Articles something for both beginners and Experts,netbeans.org -31,1426202802,10,How useful are abstract classes now that interfaces have defaults,self.java -2,1426180082,3,BenchmarkSQL for Firebird,firebirdnews.org -21,1426172511,5,JBoss PicketLink or Apache Shiro,self.java -1,1426169354,7,Exploring the Start Page in NetBeans IDE,blog.idrsolutions.com -9,1426127537,4,Book for Learning Java,self.java -9,1426119030,13,The most popular Java EE servers in 2014 2015 according to OmniFaces users,arjan-tijms.omnifaces.org -0,1426110470,10,How do I get the Ask toolbar when installing Java,self.java -3,1426108399,5,Best Book for programming newbies,self.java -2,1426102658,7,Optimizer for Eclipse for Slow Eclipse installations,zeroturnaround.com -21,1426098155,9,ZeroTurnaround Kick Things Up on Eclipse with Free Optmiser,voxxed.com -59,1426097044,19,RoboVM 1 0 released write native iOS apps in Java Scala Kotlin share code with Android and your backend,robovm.com -17,1426096359,7,SceneBuilder 8 0 0 installers available Gluon,gluonhq.com -5,1426081225,5,Getting Java Event Notification Right,codeaffine.com -0,1426061800,8,What we learnt about Spring while developing Quizzie,blog.ninja-squad.com -189,1426054829,13,Came across this repository It includes examples and documentation about Java design patterns,github.com -21,1426052073,6,Free Java Game Dev Tutorials ongoing,youtube.com -2,1426049874,8,How good can video games get using java,self.java -4,1426027505,6,Drools 6 2 0 Final Released,blog.athico.com -11,1426025668,8,Apache Maven Jar Plugin Version 2 6 Released,markmail.org -27,1425998578,12,OptaPlanner 6 2 0 Final released giant leap for vehicle routing scalability,optaplanner.org -9,1425997083,5,PrimeFaces Sentinel Live Preview Demo,blog.primefaces.org -16,1425994972,6,The Java Legacy is Constantly Growing,blog.jooq.org -19,1425989732,9,How to activate Hibernate Statistics to analyze performance issues,thoughts-on-java.org -27,1425979532,9,Java EE Security API JSR 375 Update The Aquarium,blogs.oracle.com -0,1425979480,15,Java Basic Data Types Java Basic Data Types Tutorials 2015 Primitive Data Types in JAVA,youtu.be -2,1425978636,9,Using Spring Data Crate with your Java REST Application,crate.io -5,1425975725,3,Spring Boot downsides,self.java -9,1425940483,7,JavaFX links of the week March 9,fxexperience.com -6,1425932183,9,Questions about Vaadin coming from a full stack developer,self.java -18,1425929008,9,Java IO Benchmark Quasar vs Async ForkJoinPool vs managedBlock,blog.takipi.com -3,1425928991,4,Jenkins in a Box,supposed.nl -0,1425928341,6,Question about University College Programming Courses,self.java -3,1425923897,15,Professional devs how much programming knowledge did you have before you got your first job,self.java -12,1425921920,9,Screencast Up amp Running with Comsat Dropwizard and Tomcat,blog.paralleluniverse.co -8,1425916026,21,I m planning to learn a Java web framework and I m complete noob about the ecosystem What would you recommend,self.java -55,1425915085,6,Is there a better looking javadoc,self.java -9,1425913522,14,Java Weekly 11 15 Java Money REST API evolution CDI 2 0 and more,thoughts-on-java.org -0,1425908471,10,uniVocity parsers 1 4 0 released with even more features,univocity.com -25,1425895918,43,I had left the Java world behind since 2010 and I am about to join a new Java project soon that is mainly based on the Spring Framework How popular is Spring these days Career wise does it still worth investing in it,self.java -6,1425892664,6,RichFaces 4 5 3 Final released,developer.jboss.org -6,1425889927,7,How to test Collection implementations with Guava,blog.codefx.org -61,1425877261,14,Dropwizard is a Java framework for developing ops friendly high performance RESTful web services,dropwizard.io -3,1425871678,8,Recommended code generation tools for Bean DTO mappings,self.java -11,1425842898,9,Getting Started with Gradle Creating a Web Application Project,petrikainulainen.net -13,1425823023,6,Composite Decorators aka decorator pattern rocks,yegor256.com -52,1425819815,10,Implementing a world fastest Java int to int hash map,java-performance.info -16,1425818518,9,Streamable is to Stream as Iterable is to Iterator,self.java -30,1425808854,4,Java Development without GC,coralblocks.com -0,1425773093,11,Is it just me or is the JavaFX scene builder shit,self.java -1,1425762068,14,How to make a 2D game for Android Episode 5 Using ArrayList and Paint,youtube.com -36,1425746681,25,It appears as though I have landed my first java web services development job What are some tools libraries APIs that are a must have,self.java -1,1425731811,8,Adding Mnemonic and Accelerator to Menuitem JMenuItem Swing,java2s.com -14,1425724919,5,Maven multi module release plugin,danielflower.github.io -6,1425723984,7,Visualizing CDI dependency graphs with Weld Probe,blog.eisele.net -4,1425680208,5,Is OCAJP good for starter,self.java -6,1425679033,3,Release Notes Dropwizard,dropwizard.io -7,1425673175,10,JSF 2 3 now supports Iterable in UIData amp UIRepeat,jdevelopment.nl -0,1425668996,12,How to make a 2D game for Android Episode 4 The Player,youtube.com -0,1425668379,13,How to make a 2D game for Android Episode 2 The Game Loop,youtube.com -8,1425666256,9,Name Munging camelCase to underscore_separated etc for Java 8,github.com -3,1425661801,9,Style poll private static final LOG log or logger,self.java -83,1425660487,12,Oracle now bundling Ask com adware with Java for Mac Linux next,macrumors.com -0,1425660149,12,Need some way to share code and not have it be copied,self.java -1,1425647529,4,Enumerating NamedQuery within NamedQueries,davidsalter.com -7,1425646243,4,50 Shades of TomEE,tomitribe.com -7,1425640832,9,Apache Spark as a no single point of failure,self.java -12,1425617201,14,How to make a 2D game in Android Episode 1 Setting up Android Studio,youtube.com -1,1425612225,4,Java XML based framework,self.java -1,1425610954,8,Convert java program to javascript for a webapp,self.java -1,1425605827,4,Eclipse exporting a jar,self.java -83,1425604118,10,Now MacJava Users Can Have an Ask Toolbar from Oracle,zdnet.com -8,1425600330,6,java net website being ridiculously slow,self.java -0,1425589114,13,Criteria Update Delete The easy way to implement bulk operations with JPA2 1,thoughts-on-java.org -6,1425588860,5,BootsFaces 0 6 5 released,beyondjava.net -1,1425588790,9,Difference between interfaces and abstract classes pre java 8,programmerinterview.com -1,1425578989,5,Caching hashcode Good or bad,self.java -3,1425578396,7,How to deal with subprocesses in Java,zeroturnaround.com -14,1425565605,9,Implementing a 30 day trial for a Java library,self.java -10,1425559239,8,Java 8 Repeating Annotation Explained in 5 minutes,blog.idrsolutions.com -33,1425548719,13,Oracle s piping hot new pot of Java takes out the trash faster,theregister.co.uk -29,1425544593,8,Fixing Java 8 Stream Gotchas with IntelliJ IDEA,winterbe.com -8,1425544034,10,A beginner s guide to JPA and Hibernate Cascade Types,vladmihalcea.com -0,1425540068,9,Execute code on webapp startup and shutdown using ServletContextListener,deadcoderising.com -17,1425517349,5,How did you learn Java,self.java -2,1425506685,10,Java workflow engine how to build a user defined workflow,self.java -7,1425506649,5,A Simple Java Incremental Builder,github.com -6,1425497079,7,constant java version upgrades for server app,self.java -1,1425496474,9,Spring Cloud 1 0 0 delivers infrastructure for microservices,spring.io -4,1425485468,19,Are lambdas in Java a preference for a minority of developers or are they going to be the norm,self.java -9,1425482521,10,Package your Java EE application using Docker and Kubernetes VirtualJUG,virtualjug.com -1,1425482435,5,The Live Reflection Madness VirtualJUG,virtualjug.com -9,1425477675,5,Prevent Brute Force Authentication Attempts,baeldung.com -43,1425473873,9,How to Map Distinct Value Types Using Java Generics,codeaffine.com -22,1425473070,15,Go for the Money JSR 354 Adds First Class Money and Currency Support to Java,infoq.com -17,1425472984,7,JBoss has started a JBoss Champions program,jboss.org -19,1425467164,12,Resource Handling in Spring MVC 4 1 x post from r springsource,spring.io -6,1425465677,2,TrueVFS Tutorial,truevfs.java.net -4,1425464086,7,Tutorial The JSR 203 file attribute API,codementor.io -14,1425454935,8,CDI 2 0 A glimpse at the future,cdi-spec.org -1,1425441648,5,Any success stories with RoboVM,self.java -4,1425436404,7,Java Tip Retrying operation with Guava Retrying,ashishpaliwal.com -1,1425434615,12,Beginner looking for an example for a function in purpose of understanding,self.java -4,1425422714,12,Core Java J2EE Spring Hibernate JAX RS EJB Tutorials powered by FeedBurner,feeds.feedburner.com -2,1425420690,6,Apache Archiva 2 2 0 Released,mail-archives.apache.org -33,1425381256,3,REST API Evolution,radcortez.com -10,1425362188,7,SO Why are Java Streams once off,stackoverflow.com -8,1425360883,7,JBoss Tools Docker and WildFly Part 1,tools.jboss.org -31,1425347584,3,Why Non Blocking,techblog.bozho.net -5,1425346205,13,To those of you who program Java for a living how is it,self.java -2,1425329438,6,The Portable Cloud Ready HTTP Session,spring.io -6,1425328872,8,SimpleFlatMapper Jdbc mapping now support 1 n relationship,github.com -9,1425320459,13,Java Weekly 10 15 Java Threads lock modes JAX RS caching and more,thoughts-on-java.org -4,1425319887,18,Best book for Java Collections I struggle with figuring out whats the best mechanism for holding multiple objects,self.java -4,1425319369,6,Java Bootstrap Dropwizard vs Spring Boot,blog.takipi.com -56,1425318760,9,Story of a Java 8 Compiler Bug JDK 8064803,blog.dogan.io -47,1425317827,11,SmileMiner A Java library of state of art machine learning algorithms,github.com -8,1425315436,3,Optional ifPresent otherwise,self.java -36,1425306536,10,Head of Groovy Project Guillaume Laforge Joining API Platform Restlet,restlet.com -14,1425304309,12,Why I Am Excited About JDK 8 Update 40 Geertjan s Blog,blogs.oracle.com -0,1425288508,4,removing java deployment rule,self.java -1,1425270832,10,Tool to bulk import large amounts of files into S3,github.com -19,1425266427,7,Google Doc Analog for live editing code,self.java -23,1425252259,19,Easy Batch 3 0 is finally out Check it out and give us your feedback we need your help,easybatch.org -5,1425239709,10,Remove JPA annotations before building JAR for 3rd party use,self.java -26,1425225084,6,Apache POI 3 12 beta1 released,mail-archives.apache.org -8,1425204884,8,How to shoot yourself in foot with ThreadLocals,javacodegeeks.com -2,1425179441,2,Help needed,self.java -17,1425178364,21,Spring Framework Have you ever had to implement the BeanNameAware interface in your applications Why was it needed to do so,self.java -30,1425161077,7,Any good libraries for reading mp3 files,self.java -0,1425160650,4,Best book for beginners,self.java -5,1425155792,13,CVE 2015 0254 XXE and RCE via XSL extension in JSTL XML tags,mail-archives.apache.org -29,1425155753,5,Apache Log4j 2 2 released,mail-archives.apache.org -1,1425140743,13,Looking for guidance on how to approach a game I want to make,self.java -18,1425140224,5,JavaFX Tutorial 5 Media Elements,youtube.com -24,1425136380,4,C the Java way,self.java -0,1425075743,14,Object Oriented Test Driven Design in C and Java A Practical Example Part 4,insidethecpu.com -0,1425066071,30,I can t run most applets because java security blocks them How do I lower security to medium low nonexistent for java 8u31 Why doesn t this option exist anymore,self.java -3,1425062863,7,Relatively easy open source projects to deconstruct,self.java -10,1425062705,10,Using Java 8 Lambda expressions in Java 7 or older,mscharhag.com -3,1425054286,7,Java Generics in Depth maybe part 1,stanpalatnik.github.io -1,1425044796,3,Reusable monadic computations,self.java -159,1425042278,11,Codehaus birthplace of many Java OSS projects coming to an end,self.java -7,1425032534,9,Fast way to improve loops performance using java 8,self.java -4,1425029963,5,replacing DocProperty in docx file,self.java -1,1425028060,7,Spring Security 4 0 0 RC2 Released,spring.io -0,1425027483,5,Online Professional Core Java Tutorials,self.java -2,1425027317,7,Houdini type conversion system for Spring framework,github.com -14,1425022038,3,PrimeFaces Sentinel Released,blog.primefaces.org -0,1425013432,6,Java amp JVM Conquer the World,zeroturnaround.com -10,1424996156,11,From compiler to backward compatibility here are 10 reasons Java RULES,voxxed.com -6,1424986326,9,Best Hibernate book to date for experienced Java developers,self.java -9,1424978406,8,Interface Evolution With Default Methods Part I Methods,blog.codefx.org -25,1424976895,7,what do you guys like in java,self.java -13,1424972499,6,Best practice for mocking a ResultSet,self.java -2,1424966074,16,How to show exactly whether the popularity of Java for desktop is increasing decreasing or dead,self.java -0,1424963019,4,Mocking should be Mocked,matthicks.com -1,1424961140,15,Is there a way or vm to run unsigned or self signed applet or jnlp,self.java -0,1424960532,13,What features tools conventions standards would you like Java to take ideas from,self.java -19,1424954483,6,Should I test drive my builders,ncredinburgh.com -4,1424905095,12,Package Drone 0 2 0 released The OSGi first software artifact repository,packagedrone.org -14,1424901948,34,CVE 2014 3578 Directory traversal vulnerability in Pivotal Spring Framework 3 x before 3 2 9 and 4 0 before 4 0 5 allows remote attackers to read arbitrary files via a crafted URL,cvedetails.com -25,1424901689,9,Getting up to speed with Java 7 and 8,self.java -9,1424901578,8,Bouncy Castle dev crypto 1 52 release candidate,bouncycastle.org -6,1424901039,9,Critical Security Release of Jetty 9 2 9 v20150224,dev.eclipse.org -4,1424900966,6,Apache Commons DBCP 2 1 released,mail-archives.apache.org -9,1424900900,6,Apache Tomcat 8 0 20 available,mail-archives.apache.org -0,1424898812,4,ELI5 void return type,self.java -1,1424893379,4,Benefits of micro frameworks,self.java -1,1424893144,8,How to add JasperReports library to Gradle project,dziurdziak.pl -0,1424886666,16,Help us learn more about current software architecture roles with this short survey from O Reilly,oreil.ly -9,1424880009,4,Introducing EagerFutureStream amp LazyFutureStream,medium.com -34,1424876740,4,Java 8 code style,self.java -13,1424867563,14,JSF 2 3 news facelets now default to non hot reload in production stage,jdevelopment.nl -18,1424864975,9,JVM Minor GC vs Major GC vs Full GC,plumbr.eu -6,1424860946,6,Runescape the most famous java game,self.java -0,1424858801,6,Retry After HTTP header in practice,nurkiewicz.com -14,1424856613,9,Experiences of a startup with using Java EE 7,adam-bien.com -1,1424855957,17,Mocking in Java why mocking why not mocking mocking also those awful private static methods Federico Tomassetti,tomassetti.me -4,1424852619,6,Herald Logging annotation for Spring framework,github.com -27,1424851644,7,Java 8 default methods as traits safe,stackoverflow.com -3,1424814817,12,Why we built illuminate and where we think APM is going next,jclarity.com -0,1424814371,11,Can anyone help me find out the problem here NEWBIE HELP,self.java -16,1424814249,20,How would you structure your web application to keep one code base for several customers each with their own customizations,self.java -7,1424812248,7,JSF 2 3 project overview and progress,jsf.zeef.com -0,1424784905,11,Where can I find good resources about p2p decentralized application development,self.java -33,1424783615,13,Some really old legacy from Oak the predecessor of Java Java abstract interface,stackoverflow.com -0,1424781621,11,Mac Java 8 update 31 has been updated to Update 31,self.java -97,1424780931,19,Proving that Android s Java s and Python s sorting algorithm is broken and showing how to fix it,envisage-project.eu -1,1424776127,12,An implementation of an argmax collector using the Java 8 stream APIs,gist.github.com -4,1424775958,7,Java Bug Fixed with Formal Methods CWI,cwi.nl -0,1424774805,12,A bookmarklet to switch from Java 7 to Java 8 API documentation,gist.github.com -18,1424771481,6,Hierarchical projects coming to Eclipse Mars,tools.jboss.org -13,1424734244,10,How does Java Both Optimize Hot Loops and Allow Debugging,cliffc.org -121,1424730377,2,Freaking Brackets,i.imgur.com -10,1424719198,5,Does Java need more Tutorials,self.java -1,1424717193,9,Stupid question How do I start my java programs,self.java -4,1424716231,8,Building RESTful Java EE Microservices with Payara Embedded,voxxed.com -6,1424715152,7,Work around same erasure errors with Lambdas,benjiweber.co.uk -25,1424713291,4,Is NetBeans frowned upon,self.java -3,1424710873,18,Newbie here Wanted to know what is the difference in Java 6 and Java 7 and Java 8,self.java -6,1424710819,8,Why you should be monitoring your connection pools,vladmihalcea.com -4,1424707510,4,Spring Security Registration Tutorial,baeldung.com -4,1424701845,4,Baeldung Weekly Review 7,baeldung.com -10,1424700948,13,Java Weekly 9 15 Reflection a Java 8 pitfall Flyway MVC and more,thoughts-on-java.org -15,1424638606,17,Noob warning New grad been working with Java for 3 years never used JBoss why should I,self.java -0,1424637219,12,Java Makes Programmers Want To Do Absolutely Anything Else With Their Time,forbes.com -19,1424634346,7,What is Java s equivalent of Monogame,self.java -0,1424625298,9,java lang NoSuchFieldError INSTANCE with Spring Social on Azure,stackoverflow.com -0,1424591047,11,Another one bites the Maven Central dust and saved by Bintray,blog.bintray.com -0,1424578300,9,How do I install Java when this comes up,i.imgur.com -9,1424577063,8,Creating a MYSQL JDBCProvider in IBM Integration Bus,daveturner.info -3,1424538239,4,Generating REST client jar,self.java -9,1424537913,11,How specialized are the Stream implementations returned by the standard collections,stackoverflow.com -4,1424522950,6,HttpComponents Client 4 4 GA Released,mail-archives.apache.org -0,1424522428,1,java,self.java -40,1424521068,11,Spring Framework 4 1 5 released x post from r springsource,spring.io -0,1424486788,2,Learning Java,self.java -26,1424459449,3,Value Based Classes,blog.codefx.org -0,1424456632,16,Do you think that Code Review checklist is a mandatory thing that a developer should follow,j2eebrain.com -0,1424454505,14,Object Oriented Test Driven Design in C and Java A Practical Example Part 3,insidethecpu.com -0,1424452552,6,Java EE Tutorial 12 1 Maven,youtube.com -6,1424445653,9,London JavaEE and GlassFish User Group with Peter Pilgrim,payara.co.uk -14,1424433967,13,All about MVC 1 0 the new MVC framework for Java EE 8,mvc.zeef.com -0,1424423659,4,Baeldung Weekly Review 8,baeldung.com -2,1424404662,3,Salary raise negotiation,self.java -4,1424388066,8,Spring Boot on OpenShift and Wildfly 8 2,blog.codeleak.pl -7,1424381420,5,Dependency Injection Without a Framework,drew.thecsillags.com -12,1424378567,9,Reactor 2 0 0RC1 debuts native reactive streams support,spring.io -3,1424372145,9,Using a JMS Queue to audit JPA entity reads,c4j.be -6,1424371676,9,Database Migrations in Java EE using Flyway Hanginar 6,blog.arungupta.me -3,1424364472,12,Instantly develop web apps on line with Rapidoid Java 8 cloud IDE,rapidoid.io -33,1424348230,17,Does a script language such as Python running on the JVM has the same performance as Java,quora.com -0,1424331617,4,Android studios help needed,self.java -4,1424328554,4,Getting Eclipse on arm,self.java -1,1424305684,7,RMI Problems Wall of exception via tcpdump,self.java -0,1424295086,6,Architecture Play 2 RESTful API AngularJS,self.java -2,1424293777,3,Opinions on school,self.java -5,1424291869,9,Liberty application server now free if RAM lt 2GB,developer.ibm.com -3,1424289461,8,Place with quality open source code for learning,self.java -0,1424276645,5,Junior Java Developer Position Available,self.java -1,1424268263,10,Java SDK for accessing data from forums news amp blogs,github.com -68,1424263736,7,Thou Shalt Not Name Thy Method Equals,blog.jooq.org -18,1424227633,17,As a professional do you spend more time writing your own code for editing someone else s,self.java -9,1424198646,7,SpringOne2GX 2015 CFP open close April 17th,springone2gx.com -27,1424196246,7,Netflix Nicobar Dynamic Scripting Library for Java,techblog.netflix.com -6,1424195619,5,What happened to spring rpc,self.java -4,1424177891,7,JavaLand 2015 Early Adopter s Area Preview,weblogs.java.net -7,1424177866,5,Quick view of fabric8 v2,vimeo.com -27,1424148819,9,JPA 2 1 12 features every developer should know,thoughts-on-java.org -11,1424142437,6,How useful are Sun SPOTs now,self.java -12,1424130069,11,why doesn t Java s type inference extend beyond lambda declarations,self.java -12,1424118065,18,Are there any libraries that mimic input devices such as keyboard mouse that is not the Robot class,self.java -8,1424106130,11,Does a library for getting objects from another running application exist,self.java -25,1424101056,16,Stagemonitor the open source java web application performance monitoring tool now has a public live demo,stagemonitor-demo.isys-software.de -33,1424095676,9,Byteman the Swiss army knife for byte code manipulation,blog.eisele.net -55,1424093133,12,Beginners Guide to Using Mockito and PowerMockito to Unit Test Java Code,johnmullins.info -5,1424072421,13,Java Weekly 8 15 Docker JVM mysteries a dynamic scripting lib and more,thoughts-on-java.org -3,1424071525,9,Hibernate locking patterns How does PESSIMISTIC_FORCE_INCREMENT Lock Mode work,vladmihalcea.com -33,1424069880,8,A Thorough Guide to Java Value Based Classes,blog.codefx.org -27,1424020301,6,Apache Tomcat 7 0 59 released,mail-archives.apache.org -0,1424015965,9,Strange behaviour of DELETE sub resource in Spring MVC,stackoverflow.com -0,1424010380,4,I need little help,self.java -0,1423993125,14,so the console is not giving me any output Any ideas why that is,imgur.com -3,1423955473,6,Java 8 streams API and parallelism,radar.oreilly.com -5,1423955049,9,Interesting things about the tests in the JUnit project,sleepeasysoftware.com -71,1423944184,19,I gathered all the Java 8 articles and presentations I was able to find on this one resources page,baeldung.com -0,1423929612,8,java 8 31 download broken on java com,self.java -22,1423925433,4,Multi Version JAR Files,openjdk.java.net -23,1423925306,13,Proposal removing all methods that use the AWT peer types in JDK 9,mail.openjdk.java.net -67,1423916032,7,Java Doesn t Suck Rockin the JVM,spring.io -16,1423886215,9,Where to go next with learning advanced Java concepts,self.java -3,1423870599,13,Is there a scientific calculator that can run java class files or jars,self.java -0,1423869092,3,Hot New Language,adamldavis.com -0,1423864675,8,Need ideas for a java based dissertation project,self.java -9,1423863436,27,Is there a service where you point it at a Github repo containing a pom xml file and it will automatically deploy to a public maven repo,self.java -8,1423843788,8,Massive Java EE 7 update for Liberty beta,developer.ibm.com -10,1423841539,11,JavaFX properties a clear example of why Java needs REAL properties,self.java -4,1423835818,7,Error Handling Without Throwing Your Hands Up,underscore.io -6,1423830665,8,Oracle And IBM Are Moving In Opposite Directions,adam-bien.com -4,1423828137,8,Setting up Spring MVC JPA Project via XML,self.java -3,1423816139,2,Hardware programming,self.java -1,1423797988,7,Most similar Spring setup for Symfony2 team,self.java -31,1423797697,4,From net to Java,self.java -6,1423770276,4,Gemnasium alternatives for Java,self.java -7,1423765541,10,Ignore the Hype 5 Docker Misconceptions Java Developers Should Consider,blog.takipi.com -5,1423761969,14,Spring XD 1 1 GA goes big on streaming with Spark RxJava and Reactor,spring.io -30,1423760957,7,The Black Magic of Java Method Dispatch,shipilev.net -42,1423750477,5,Why Java Streams once off,stackoverflow.com -0,1423750039,7,Styling AEM forms and their error messages,blog.karbyn.com -19,1423742812,4,Writing Just Enough Documentation,petrikainulainen.net -6,1423726750,9,JavaFX desktop app through web start jnlp inconsistent behaviour,self.java -7,1423715975,12,What are some quick ways to learn a developement framework for Java,self.java -6,1423697858,4,Opinions on Oracle certification,self.java -9,1423692013,5,Building Microservices with Spring Boot,infoq.com -4,1423679037,3,Why use Java,self.java -0,1423676922,9,How to get date from JDateChooser into the textfield,self.java -8,1423671212,8,Better application events in Spring Framework 4 2,spring.io -2,1423670267,6,Reading log files of transaction system,self.java -9,1423668114,13,Why is my JVM having access to less memory than specified via Xmx,plumbr.eu -0,1423661162,7,Four NOs of a Serious Code Reviewer,yegor256.com -1,1423659949,9,Spring Integration Kafka Extension 1 0 GA is available,spring.io -53,1423656245,8,Various ways of writing SQL in Java 8,jooq.org -0,1423645241,7,Microbench Simple to use java microbenchmarking library,self.java -4,1423641186,10,Java 8 is it really nicer to use it everywhere,self.java -2,1423604917,13,Just starting to learn Java here curious about the steps in learning java,self.java -6,1423603734,5,Spring vs Stripes security wise,self.java -0,1423602221,6,Java Rant what do you think,self.java -4,1423598923,6,Spring Integration debuts a Kafka Extension,spring.io -1,1423597857,13,Spring for Apache Hadoop 2 1 goes big on YARN and Spring Boot,spring.io -0,1423582410,4,How to Use eBay,prolificprogrammer.com -90,1423577754,2,The Irony,i.imgur.com -32,1423562784,10,An introduction to JHipster the Spring Boot AngularJS application generator,spring.io -20,1423562366,7,Tips Tweaks and being Productive with Eclipse,codemonkeyism.co.uk -2,1423542113,3,Minimum Snippet Algorithm,self.java -0,1423540897,16,Need help with a text adventure on how to populate a monster to a specific room,self.java -4,1423524447,14,What are the methods that you use most that you had to create yourself,self.java -0,1423511616,10,Java is the Second Most Popular Programming Language of 2015,blog.codeeval.com -10,1423498819,11,Five years later how is the Oracle Sun marriage working out,itworld.com -0,1423497299,8,Android Studio Migration from Maven Central to JCenter,blog.bintray.com -53,1423497296,7,Dell develops new Java pattern matching solution,opensource.com -16,1423484947,12,Java Weekly 7 15 Clustering WebSockets Batch API Lab Valhalla and more,thoughts-on-java.org -2,1423475732,5,Primitives in Generics part 1,nosoftskills.com -2,1423472101,4,CFV New Project Kona,mail.openjdk.java.net -0,1423471431,7,From JSP to Thymeleaf with Spring Boot,c4j.be -3,1423464028,3,Geo Mapping Library,self.java -0,1423462557,7,Java Code Hacks The Ultimate Deadlock Workaround,blog.takipi.com -0,1423457244,8,Intro Java Tutorial Your 1st Program HelloWorld java,youtu.be -0,1423427043,3,Enumerations Numaraland rmalar,yusufkildan.com -24,1423425033,7,Musings about moving from Java to Scala,blog.rntech.co.uk -0,1423424351,5,Project i was working on,self.java -11,1423422832,7,Groovy in the light of Java 8,javaguru.co -4,1423416919,7,Algorithm for pretty printing a binary tree,self.java -0,1423415056,7,Intro Java Tutorial Install Java and Eclipse,youtu.be -1,1423358828,10,Building A Better Build Our Transition From Ant To SBT,codeascraft.com -8,1423351256,4,2D Java Minecraft Clone,self.java -7,1423350892,9,The Java Posse Java Posse 461 The last episode,javaposse.com -50,1423343939,15,JVM implementation challenges Why the future is hard but worth it JFokus Slides 2015 PDF,cr.openjdk.java.net -0,1423340518,5,Common Maven Problems and Pitfalls,voxxed.com -0,1423336227,4,Proper Usage Of Events,stackoverflow.com -5,1423328459,5,Testing with Spring 4 x,infoq.com -1,1423317666,8,Performance considerations iterating ResultSet vs linked H2 tables,self.java -0,1423307192,10,I need help I don t understand Java at all,self.java -3,1423307065,9,Project which populates a maven repository from github releases,self.java -0,1423307029,18,Wondering the best way to convert multiple lines of user input from console to one line of string,self.java -5,1423285068,12,JUnits How to compare 2 complex objects without overriding toequals hashcode methods,self.java -13,1423284011,12,Anyone have experience with Java based real time heavy processing oriented architectures,self.java -0,1423280183,4,Java DL website broken,javadl.sun.com -5,1423278535,9,Git Repos and Maven Archetypes Our First Web App,youtu.be -0,1423259277,14,Object Oriented Test Driven Design in C and Java A Practical Example Part 2,insidethecpu.com -1,1423257225,13,SimpleFlatMapper v1 5 0 csv and resultset mapper now with better customisation support,github.com -5,1423249290,12,ParsecJ Introduction to monadic parsing in Java x post from r programming,github.com -39,1423248701,5,New Java Champion Jacek Laskowski,blogs.oracle.com -10,1423242602,12,Embracing the Void 6 Refined Tricks for Dealing with Nulls in Java,voxxed.com -10,1423235430,7,What s new in JSF 2 3,jdevelopment.nl -6,1423233850,6,SIGAR System Information Gatherer And Reporter,self.java -0,1423213368,7,Java Training Courses Ahmedabad Java Coaching Classes,prabhasolutions.in -42,1423193774,9,JUniversal A new Java based approach to cross platform,msopentech.com -0,1423190946,15,Installed the JDK but it has adware in the installer did I mess up somehow,self.java -19,1423162668,4,All JavaOne 2014 Sessions,oracle.com -3,1423156070,13,I can t find a good tutorial for making Swing GUIs in IntelliJ,self.java -24,1423154898,8,Java 8 Method References explained in 5 minutes,blog.idrsolutions.com -2,1423139218,5,What is a Portlet 2005,onjava.com -87,1423133766,7,Top 10 Easy Performance Optimisations in Java,blog.jooq.org -4,1423131545,5,Primitives in Generics part 1,nosoftskills.com -0,1423113332,5,OSGi Service Test Helper ServiceCollector,codeaffine.com -16,1423105058,9,any good book for designing reactive systems in java,self.java -6,1423092604,5,Apache HttpClient 4 x Timeout,blog.mitemitreski.com -5,1423082542,4,Java Lambdas Quick Primer,self.java -3,1423077392,16,What kind of impact has Lamda expressions had on the refactoring tools and java code analysis,self.java -19,1423074406,10,r springsource Sub reddit for resources related to Spring framework,self.java -1,1423072149,6,Getting started with ArangoDB and Java,arangodb.com -0,1423069219,26,I was thinking about sending this to a girl whose in computer science The code doesn t quite work yet but I kinda like this idea,self.java -0,1423059926,3,45 Java Quiz,thecodersbreakfast.net -2,1423053344,5,Batch API Hands on Lab,blogs.oracle.com -0,1423053048,5,JavaDay 2014 a leap forward,blog.mitemitreski.com -7,1423052515,9,C2B2 Java EE amp related tech newsletter Issue 20,blog.c2b2.co.uk -0,1423052400,9,Things that make me facepalm on Java EE development,trajano.net -3,1423050329,8,How JVMTI tagging can affect GC pause durations,plumbr.eu -0,1423043558,8,Problem need help Java MYSQL stuff for Uni,self.java -48,1423036112,6,IntelliJ IDEA 14 1 EAP Released,blog.jetbrains.com -0,1423035837,9,Database is wrong for you and all that FUD,jfrog.com -1,1423031823,4,How to Automate Gmail,prolificprogrammer.com -13,1423029384,12,Why Enterprises of different sizes are adopting Fast Data with Apache Spark,typesafe.com -8,1423028817,13,How to mock out a deeply nested class in Spring without going insane,sleepeasysoftware.com -15,1423026466,6,Looking for a Swing testing framework,self.java -1,1423023699,5,oracle java cloud services PaaS,cloud.oracle.com -2,1423023039,7,java play framework for lightweight web applications,playframework.com -7,1423007316,12,Is it possible to simulate a mouse click without moving the mouse,self.java -2,1423006461,3,InetSocketAddress Considered Harmful,tellapart.com -3,1423000839,9,Introducing Package Drone An OSGi first software artifact repository,packagedrone.org -28,1423000430,11,Trying to decide what to dive into next Scala or Groovy,self.java -7,1422996455,5,Maven support for Tomcat 8,self.java -8,1422988378,9,Moving from ANT scripts to Gradle for Java Projects,self.java -17,1422988171,10,SSO with OAuth2 Angular JS and Spring Security Part V,spring.io -11,1422984204,18,Trillian Mobile us RoboVM folks and Lodgon partner so you can write JavaFX apps for Android and iOS,voxxed.com -5,1422981493,15,In search of a tutorial which demonstrates login with Java EE 7 Netbeans and Glassfish,self.java -8,1422974014,8,DAGGER 2 A New Type of dependency injection,youtube.com -7,1422969074,6,Scaling Uber s Realtime Market Platform,qconlondon.com -19,1422964254,8,Why does JSF not just use plainish HTML,self.java -1,1422942176,10,GlassFish Became The Killer AppServer And Then Changed Its Name,adam-bien.com -1,1422935281,6,Hibernate config settings WAS to tomcat,self.java -0,1422923768,3,Suggested Java basics,self.java -14,1422922682,10,Do you use or have you used TomEE for production,self.java -0,1422919320,4,Scratch Java and Rotation,self.java -6,1422884284,24,Trying to dust off Java skills after 5 years what can i add to my tiny project OR what can i do much better,github.com -6,1422880460,6,Recommendations of Software Developer Colaboration Tools,self.java -1,1422877088,10,Developer Interview DI13 Vlad Mihalcea vlad_mihalcea about High Performance Hibernate,blog.eisele.net -38,1422845758,7,Dropwizard painless RESTful JSON HTTP web services,codeaweso.me -4,1422831372,5,An introduction to Open Dolphin,guigarage.com -0,1422829716,21,What would be the best usage of these Interfaces And does order matter in any of these If so which ones,self.java -0,1422817961,10,How can I auto minify my css html and js,self.java -25,1422809144,3,Introduction to Akka,ivanyu.me -12,1422794575,4,Spring JPA Multiple Databases,baeldung.com -4,1422777678,6,ORM Haters Don t Get It,techblog.bozho.net -3,1422776078,8,is marketplace eclipse org down for anyone else,self.java -0,1422761089,6,Noob Java student need help please,self.java -3,1422758905,7,Access file outside of tomcat bin directory,self.java -0,1422750119,14,Java 8 security settings have rendered it useless to me Anybody got any suggestions,self.java -13,1422743341,8,How can I compile a users inserted code,self.java -0,1422726654,14,How can I detect 2d shapes in an image like circles squares and rectangles,self.java -0,1422721852,6,Run a method from another class,self.java -4,1422721633,11,What s new in Payara a GlassFish fork 4 1 151,payara.co -22,1422720232,3,LMDB for Java,github.com -3,1422708204,10,Java 8 Auto Update Java 7 End of Public Update,infoq.com -10,1422705321,4,Apache Maven quarterly report,maven.40175.n5.nabble.com -27,1422698716,5,Spring 4 and Java 8,infoq.com -0,1422696556,12,Please format the following piece of Java code to your preferred style,self.java -0,1422670795,23,Need to hash sets of primitive types I wrote a little utility class that does based on the methods described in Effective Java,gist.github.com -0,1422664975,5,Need help with dividing numbers,self.java -7,1422659783,4,The Serialization Proxy Pattern,blog.codefx.org -0,1422653918,7,found javascript spyware what does it do,self.java -0,1422653529,7,Issues with loading an image to screen,self.java -0,1422646987,5,Nedd Help Java w GUI,self.java -7,1422638453,17,Dropwizard Jhipster or just SpringBoot SpringMVC for modern java web development in a restful and enjoyable way,self.java -2,1422638230,6,Alternatives for ARM less JavaFX Users,voxxed.com -7,1422635774,13,New version of Java run time 8u31 is available with important security updates,oracle.com -24,1422624053,7,FYI java util Optional is not Serializable,stackoverflow.com -2,1422608385,4,A question about ArrayLists,self.java -3,1422608144,6,100 High Quality Java Developers Blogs,programcreek.com -0,1422602804,17,What s the status of relation between JEP 169 Value Objects Value Types for Java Object Layout,mail.openjdk.java.net -248,1422600617,12,Congratulations r Java has been chosen as the SUBREDDIT OF THE DAY,reddit.com -0,1422571936,7,500 Java Interview Questions answered with diagrams,java-success.com -1,1422563294,2,Struts2 Learning,self.java -2,1422560957,8,Static Inner Classes When is it too much,self.java -32,1422553985,8,Why does java not include overflow exception checking,self.java -0,1422550232,9,7 JIRA Integrations to Optimize Your Java Development Workflow,blog.takipi.com -0,1422549826,10,One of my favorite features of Intellij IDEA Call Hierarchy,sleepeasysoftware.com -5,1422548296,14,Spring XD 1 1 RC1 goes big on streaming with Spark Reactor and RxJava,dzone.com -2,1422545678,6,jClarity RMI and System gc Unplugged,jclarity.com -3,1422545609,6,CDI Part 2 The Advanced Features,youtube.com -18,1422545585,7,You Will Regret Applying Overloading with Lambdas,blog.jooq.org -3,1422541175,11,Should I learn any other languages or anything else before proceeding,self.java -16,1422539832,10,Simple Fluent Api for Functional Reactive Programming with Java 8,github.com -5,1422518172,7,Limitations of Java C C vs Java,self.java -4,1422503346,10,Net Web Developer looking to jump aboard the Java ship,self.java -55,1422502715,25,Do you ever feel like you ve spent so much of your profession in Java EE that it isn t worth it to jump ship,self.java -2,1422498929,10,What s a good tool to monitor alert JMX metrics,self.java -18,1422493501,7,Java Book Recommendations for Intermediate Advanced learning,self.java -9,1422484300,12,Is there a Java JSP equivalent to the ruby on rails guides,self.java -6,1422479733,8,Implementing a RESTful API Using Spring MVC Primer,self.java -0,1422479478,8,Part 3 Almost Everything about Replication feat Hazelcast,pushtechnology.com -0,1422478110,7,How to run 2 different java versions,self.java -0,1422475581,9,how can I download java version 1 6 0_29,self.java -7,1422470946,11,The API Gateway Pattern Angular JS and Spring Security Part IV,spring.io -0,1422465242,13,Does Maven Already Ship Witch Eclipse Luna or Should I Still Install It,self.java -13,1422457600,8,The Double Curly Braces Idiom a Poisoned Gift,beyondjava.net -5,1422447294,5,Java Management Extensions Best Practices,oracle.com -18,1422436544,5,Responsive PrimeFaces DataTable Part II,blog.primefaces.org -7,1422427635,12,How will Java 8 handle the leap second of June 30th 2015,self.java -0,1422426749,6,Difference between Abstract Class and Interface,net-informations.com -5,1422420097,9,SWT Look and Feel Customize FlatScrollBar Color and More,codeaffine.com -5,1422416539,5,Just getting into java programming,self.java -4,1422405187,4,javafx shape intersect image,self.java -13,1422400710,14,First official JSF 2 3 contribution from zeef com injection of generic application map,jdevelopment.nl -3,1422389702,4,Use Maven Not Gradle,rule1.quora.com -8,1422387157,10,Honest question what do you consider Java s biggest strength,self.java -3,1422381724,10,Drop in servlet plugin for user auth and user management,stormpath.com -3,1422377187,11,google places api java A Google Places API binding for Java,github.com -7,1422374097,17,A UML to Java generator that auto creates getters and setters a constructor and a toString method,utamavs.me -0,1422371488,6,LWJGL Neural Network Based EVOLVING TANKS,youtube.com -0,1422361789,8,How I use the Vertabelo API with Gradle,vertabelo.com -3,1422361110,5,Easy Java Instrumentation with Prometheus,boxever.com -2,1422358527,6,Timeout support using ExecutorService and Futures,deadcoderising.com -3,1422356260,8,Logging to Redis using Spring Boot and Logback,blog.florian-hopf.de -0,1422355984,13,Is this remark about java util StringTokenizer and java io StreamTokenizer still true,self.java -52,1422351450,10,Grrrr Eclipse is still faster than IntelliJ gt Run program,self.java -21,1422350081,12,I m an experienced developer new to java what should I know,self.java -5,1422343013,13,ET a small library for exception conversion helps getting rid of checked exceptions,github.com -0,1422333574,7,What is this Eclipse icons for ants,imgur.com -0,1422323650,15,Why isn t there a package manager that s as good as NPM for Java,self.java -0,1422323642,7,Come watch me stream Spring and Hibernate,twitch.tv -26,1422315637,8,What motivated you to become a better programmer,self.java -21,1422307574,11,JavaEE learning resources for beginners Java EE Enterprise Edition Tutorial Learning,self.java -4,1422298448,6,Debugging Java 8 Lambdas with Chronon,chrononsystems.com -1,1422281722,9,Could anyone recommend some good project based java books,self.java -1,1422280682,13,Java Weekly 5 15 CDI in Java SE DeltaSpike James Gosling and more,thoughts-on-java.org -0,1422280090,9,The easiest ERD ORM integration ever Vertabelo and jOOQ,vertabelo.com -23,1422278433,2,OCaml Java,ocamljava.org -0,1422272942,9,Hibernate locking patterns How does Optimistic Lock Mode work,vladmihalcea.com -9,1422271057,9,What project management issue tracking software do you use,self.java -0,1422270213,9,Object Oriented Test Driven Design in C and Java,insidethecpu.com -1,1422265986,13,Firebird JDBC driver Jaybird 2 2 7 is released with a few fixes,firebirdsql.org -5,1422240165,6,IDEA users Have you used WebStorm,self.java -0,1422228780,7,Java Security Exception for Locally Run Applet,self.java -23,1422184497,21,Zero allocation Hashing 0 2 receives MurmurHash3 3 9 GB s on i5 4200M Now looking for volunteers to implement FarmHash,github.com -14,1422153170,7,I want to make something in Java,self.java -0,1422120401,7,Can someone help me with a program,self.java -7,1422118835,10,Search In A Box With Docker Elastic Search and Selenium,alexecollins.com -0,1422118741,4,Capture Behaviors in Closures,medium.com -46,1422114093,4,Announcing Gradle Tutorial Series,rominirani.com -0,1422110816,4,ExecuteQuery v4 3 0,executequery.org -0,1422104801,5,Tapestry 5 4 beta 26,tapestry.apache.org -0,1422104741,5,Jetty 9 2 7 v20150116,dev.eclipse.org -0,1422104548,5,Javassist 3 19 0 GA,github.com -1,1422104493,6,Apache Tomcat 8 0 17 available,mail-archives.apache.org -17,1422103084,10,The Resource Server Angular JS and Spring Security Part III,spring.io -15,1422084891,10,There is any good quality image manipulation library in Java,self.java -16,1422061178,3,Best Java Conferences,self.java -5,1422029711,10,A recipe for a data centric rich internet application Blog,vaadin.com -0,1422023234,8,help with a simple java program stack unstack,self.java -14,1422012208,11,How to Translate SQL GROUP BY and Aggregations to Java 8,blog.jooq.org -14,1422006439,9,youtube Java and the Wave Glider with James Gosling,youtube.com -0,1422005467,16,Need help looking for ebook Starting Out with Java Early Objects 5th Edition isbn 978 0133776744,self.java -0,1422002737,14,Thread Magic Tricks 5 Things You Never Knew You Can Do with Java Threads,blog.takipi.com -0,1421975227,5,Eclipse HELP lost my workspace,self.java -0,1421973886,12,For all you people with insomnia i made an App for you,self.java -3,1421973711,8,Converting an Image to Gray Scale in Java,codesquire.com -4,1421972225,24,Here is an image of my javadoc setup for LWJGL Can you tell me why this doesn t work eclipse says it s valid,i.imgur.com -6,1421967728,4,PrimeFaces responsive data table,primefaces.org -16,1421956667,14,Looking for an article about how coding to make testing easier improves code design,self.java -11,1421953482,10,Real time performance graphs for java web applications Open Source,stagemonitor.org -7,1421953048,6,Let s bring Swift to JVM,self.java -1,1421951446,5,Help with installing Eclipse luna,self.java -9,1421946223,5,Partial Functions in Java 8,self.java -6,1421944494,8,Java testing using FindBugs and PMD in NetBeans,blog.idrsolutions.com -3,1421942063,9,NoSQL with Hibernate OGM 101 Persisting your first entities,in.relation.to -88,1421938138,10,5 Advanced Java Debugging Techniques Every Developer Should Know About,infoq.com -9,1421935664,12,The most popular upcoming Java EE 8 technologies according to ZEEF users,arjan-tijms.omnifaces.org -2,1421935346,5,Development Horror Story Release Nightmare,radcortez.com -0,1421930699,5,Polymorphism in any IT system,self.java -23,1421928286,5,If Then Throw Else WTF,yegor256.com -0,1421917696,4,Lombok and JSTL issue,self.java -0,1421914876,5,Help with Binary Converter Program,self.java -0,1421907934,13,My Opinion Banning break and continue from your loops will improve code quality,sleepeasysoftware.com -6,1421898755,5,Help with try catch statements,self.java -19,1421880955,6,Lightweight Javac Warning Annotation library 3kb,github.com -12,1421872748,8,Web App Architecture the Spring MVC AngularJs stack,blog.jhades.org -4,1421867986,7,Top testing tips for discriminating java developers,zeroturnaround.com -12,1421855266,9,A New Try with resources Improvement in JDK 9,blog.mitemitreski.com -3,1421853065,12,Is Spring Framework a good choice for an Internet of Things backend,self.java -41,1421844692,9,More concise try with resources statements in JDK 9,blogs.oracle.com -8,1421842865,5,New IntelliJ Tricks Part 2,trishagee.github.io -31,1421840334,5,Safe casting idiom Java 8,self.java -3,1421835245,7,How to make 2d games in java,self.java -14,1421832757,15,Yeoman generator for java library hosted on github with quality checks and maven central publishing,github.com -2,1421829341,12,20 Reasons Why You Should Move to JavaFX and the NetBeans Platform,informit.com -15,1421828801,14,Ben Evans Java Champion reviews Java in 2014 and looks forward to Java 9,jclarity.com -5,1421802645,3,Java Developer Roadmap,self.java -15,1421792859,7,Oracle Critical Patch Update Advisory January 2015,oracle.com -11,1421789016,8,Examples of GoF Design Patterns in Java APIs,stackoverflow.com -0,1421784724,9,Graduate Java Developer looking for advices on his portfolio,self.java -0,1421782828,5,MDB JMS and vice versa,dzone.com -12,1421782710,9,Heads Up on Java EE DevNexus 2015 The Aquarium,blogs.oracle.com -34,1421782279,13,Fork Join Framework vs Parallel Streams vs ExecutorService The Ultimate Fork Join Benchmark,blog.takipi.com -5,1421780194,13,Suis je Groovy No What Pivotal s Decision Means for Open Source Software,java.dzone.com -0,1421779929,10,The Resource Server Angular JS and Spring Security Part III,spring.io -12,1421779559,11,Microservice Registration and Discovery with Spring Cloud and Netflix s Eureka,spring.io -3,1421754990,7,Apache FOP Integration with Eclipse and OSGi,codeaffine.com -8,1421753233,9,Bug in JavaFX SceneBuilder how can I report it,self.java -40,1421753071,20,As I haven t found any examples of Java music visualisers I m sharing the solution I came up with,github.com -0,1421728504,5,Where can I execute EJBs,dzone.com -16,1421728476,8,Micro Benchmarking with JMH Measure Don t Guess,voxxed.com -0,1421707644,19,What is involved in a graduate scheme when joining an IT company as a graduate Java developer or equivelant,self.java -22,1421699117,19,Pivotal drops sponsorship of Grails but Grails will continue active development according to Graeme Rocher head of Grails project,grails.io -15,1421698512,10,Java 8 LongAdders The Fastest Way To Add Numbers Concurrently,blog.takipi.com -10,1421695701,7,A simple search app for maven archetypes,wasis.nu -8,1421695471,10,How to execute bat files from an executable jar file,self.java -67,1421688059,15,Groovy 2 4 And Grails 3 0 To Be Last Major Releases Under Pivotal Sponsorship,blog.pivotal.io -7,1421687917,18,Pivotal is no longer sponsoring Grails I have a Grails project in the works What should I do,self.java -4,1421677972,5,Question on Jasper Report JRXML,self.java -12,1421675734,12,Best tools for creating a quick prototype demo gui for rest services,self.java -3,1421675504,5,Simple linear regression using JFreeChart,technobium.com -13,1421673803,6,CDI amp JDK8 based Asynchronous alternative,jdevelopment.nl -0,1421671614,8,Using Java 8 to Prevent Excessively Wide Logs,blog.jooq.org -4,1421641826,7,Is 3D game programming good for beginners,self.java -17,1421613921,11,How much did do you earn as a graduate Java Developer,self.java -6,1421610534,8,Looking for code coverage tooling with Maven integration,self.java -10,1421610356,7,Java 8 lambda performance is not great,self.java -20,1421610197,7,TeaVM Compiles Java byte code to Javascript,teavm.org -15,1421608773,7,How to write your own annotation processor,hannesdorfmann.com -56,1421597444,9,JitPack Easy to use package repository for Java projects,jitpack.io -18,1421593067,5,Working with doc docx files,self.java -12,1421590083,9,Getting Started with Gradle Creating a Multi Project Build,petrikainulainen.net -11,1421589816,10,2015 Proof Of Concept JSF 2 0 Distributed Multitiered Application,java.dzone.com -11,1421588918,6,Whiteboards do you guys use them,self.java -18,1421565181,5,Audit4j 2 2 0 released,audit4j.org -4,1421512037,8,Follow JSF 2 3 development via GitHub mirror,jdevelopment.nl -22,1421510814,5,Apache Tika 1 7 Released,mail-archives.apache.org -3,1421506159,10,Simple Java EE JSF Login Page with JBoss PicketLink Security,ocpsoft.org -10,1421505501,8,JSF 2 3 Using a CDI managed Converter,weblogs.java.net -1,1421504898,14,HELP Program only detects 32bit java but requires 64bit java to increase ram usage,self.java -2,1421476177,7,Jgles2 a slim wrapper around GLES2 0,self.java -0,1421465023,2,Eclipse Issue,self.java -13,1421463460,9,Example java applications that don t use an ORM,self.java -3,1421432301,26,SimpleFlatMapper v1 3 0 very fast micro orm that can be plugged in jooq sql2o spring jdbc and fast and easy to use csv parser mapper,github.com -8,1421428466,6,Favorite Java build and deploy toolchain,self.java -2,1421420874,10,Top Java Blogs redesigned with blog icons and top stories,topjavablogs.com -44,1421416882,7,Java 9 Doug Lea reactive programming proposal,cs.oswego.edu -7,1421416282,5,Printing of a big jTable,self.java -0,1421399936,8,How to shut mouth of a C bigot,self.java -32,1421395380,8,Everything You Need To Know About Default Methods,blog.codefx.org -17,1421386561,7,New to Intellij IDEA IDE tips tricks,self.java -3,1421386044,3,Java serial comm,self.java -0,1421363705,5,Java BMI Calculator Using Eclipse,self.java -15,1421357849,9,vJUG Java and the Wave Glider with James Gosling,voxxed.com -0,1421357447,15,How can I run methods outside of main in Eclipse with ease like in BlueJ,self.java -2,1421353984,7,Deep Dive All about Exceptions Freenode java,javachannel.org -6,1421351815,8,Micro Benchmarking with JMH Measure don t guess,antoniogoncalves.org -6,1421342387,7,RichFaces 4 5 2 Final Release Announcement,developer.jboss.org -11,1421341541,6,Class Reloading in Java A Tutorial,toptal.com -10,1421341391,10,Mysterious 4 4 1 20150109 Eclipse Luna update is SR1a,jdevelopment.nl -14,1421335863,12,HighFaces new open source JSF 2 chart component library based on HighCharts,highfaces.org -6,1421333917,8,Surprisingly useful methods that do nothing at all,benjiweber.co.uk -2,1421332080,17,Question would it be better to change my KryoNet based communication between programs for a RabbitMQ RPC,self.java -8,1421327360,6,Thoughts on Object Oriented Class Design,chase-seibert.github.io -4,1421326522,5,Lightweight Java Database APIs Frameworks,self.java -13,1421325157,20,What s the best way to throw exceptions The old school don t use go to s or returns debate,self.java -6,1421321695,5,Spring Clound and centralized configuration,spring.io -3,1421317666,7,How do you evaluate a Java Game,self.java -0,1421316597,4,The Rubber Ducky Debugging,youtube.com -0,1421306368,10,Stream js The Java 8 Streams API ported to JavaScript,github.com -8,1421288621,10,What is working for a company that uses Java like,self.java -8,1421286538,6,Where do you go for hosting,self.java -5,1421278504,7,12 Factor App Style Configuration with Spring,spring.io -0,1421278414,4,FourorLess my first App,gcclinux.co.uk -61,1421272866,9,What s the neatest code you ve ever seen,self.java -1,1421267119,10,static mustache Statically checked compiled logicless templating engine for java,github.com -1,1421264079,7,Stalwarts of Tech Interview with John Davies,jclarity.com -1,1421259535,5,A question about lambda expressions,self.java -18,1421255662,6,Advanced Java Application Deployment Using Docker,blog.tutum.co -1,1421252592,19,Is there a way I can use the libraries imported by another java file w o importing it again,self.java -4,1421246754,7,JSF amp PrimeFaces amp Spring video tutorial,javavids.com -11,1421245017,9,Is Java pass by value or pass by reference,javaguru.co -22,1421242240,7,Good news Java developers Everyone wants you,infoworld.com -28,1421241785,10,Four techniques to improve the performance of multi threaded applications,plumbr.eu -7,1421214037,14,Self Contained Systems and ROCA A complete example using Spring Boot Thymeleaf and Bootstrap,blog.codecentric.de -25,1421199938,6,JUnit tests that read like documentation,mikedeluna.com -0,1421197971,6,Lerning Java Online Where to start,self.java -0,1421187174,10,Idea gathering for Java related course project topic 100 150hours,self.java -0,1421186530,8,Stop webapp on tomcat from CMD line issues,self.java -7,1421185698,19,Switching from the love of my life Intellij Idea to eclipse A quick question that bugs me like crazy,self.java -1,1421174827,8,Java 8 Streams API as Friendly ForkJoinPool Facade,squirrel.pl -4,1421172114,5,Valhalla Caution bleeding edge ahead,mail.openjdk.java.net -0,1421169042,12,Mental Manna Traverse a BST in order using iteration instead of recursion,geekviewpoint.com -8,1421167677,5,Java8 Sorting BEWARE Performance Pitfall,rationaljava.com -0,1421164859,10,What s Stopping Me Using Java8 Lambdas Try Debugging Them,rationaljava.com -2,1421164615,16,Looking for conference topics what is new and exciting in the world of Java in 2015,self.java -26,1421162706,22,What topics would you include in an hour long lecture on Java for students with no prior experience with object oriented programming,self.java -14,1421162285,9,Running tests on both JavaFX and Swing using Junit,blog.idrsolutions.com -12,1421160754,7,Easy to understand Java 8 predicate example,howtodoinjava.com -10,1421157190,5,System in stdin through Tomcat,self.java -13,1421143228,12,Neanderthal a fast native Clojure matrix library 2x faster than jBLAS benchmarks,neanderthal.uncomplicate.org -4,1421142581,6,PrimeFaces Elite 5 1 8 Released,blog.primefaces.org -18,1421139302,7,DoorNFX Touchscreen JavaFX 8 on Raspberry Pi,voxxed.com -5,1421128699,5,Spring Security Roles and Privileges,baeldung.com -11,1421116021,8,How to tell if a file is accessed,self.java -0,1421113499,7,Why Java could not compete with PHP,github.com -1,1421112805,17,15 Want to get a jump on Java before taking my school s AP Computer Science class,self.java -31,1421097555,5,What ORM do you use,self.java -3,1421092776,14,How does Facebook integration work with web applications when retrieving data from their database,self.java -0,1421089335,9,How often do you need to configure a bean,self.java -12,1421088377,10,Flavors of Concurrency in Java Threads Executors ForkJoin and Actors,zeroturnaround.com -12,1421084611,7,Getting Started With IntelliJ IDEA Live Templates,voxxed.com -1,1421083929,8,AYLIEN Java client Library for Text Analysis SDK,github.com -75,1421073543,5,Java 8 No more loops,deadcoderising.com -7,1421071804,5,Flyway 2014 Year in Review,flywaydb.org -6,1421063462,9,How do you handle Configuration for your web apps,self.java -3,1421048988,8,A beginner s guide to Java Persistence locking,vladmihalcea.com -62,1421044559,18,Code Bubbles is an IDE that allows you to lay out and edit your code visually by function,cs.brown.edu -2,1421021230,5,College Student New to Java,self.java -25,1421003322,5,New Blog for Java 8,java8examples.com -41,1421002370,10,Brian Goetz Lambdas in Java A peek under the hood,youtube.com -33,1420956291,9,Any projects open source projects need a java developer,self.java -0,1420953231,5,Python vs Java Numerical Computing,self.java -0,1420908720,8,Get Keywords By Using Regular Expression in Java,programcreek.com -5,1420905378,13,Eclipse not being able to guess the types of elements in a collection,self.java -1,1420903673,5,Good introductory texts for Java,self.java -4,1420890437,7,Business Rules Management in Java with Drools,ayobamiadewole.com -27,1420877028,5,First rule of performance optimisation,rationaljava.com -0,1420833824,11,Why Now is the Perfect Time to Upgrade to Java 8,blog.appdynamics.com -8,1420831837,11,Why is there no official mature library for modern Rest Authentication,self.java -18,1420830582,7,How to get Groovy with Java 8,javaguru.co -5,1420827857,8,Arquillian Container WebLogic 1 0 0 Alpha3 Released,arquillian.org -6,1420827310,8,Any good JSF libraries for JCR Modeshape content,self.java -6,1420819946,9,Make your Primefaces app load faster with lazy loading,blogs.realdolmen.com -11,1420817610,8,A Look Back at 2014 8 Great Things,blogs.oracle.com -9,1420796777,6,Initial milestone of JSF 2 3,blogs.oracle.com -0,1420792276,9,Calendar to Date issue This could cause big problems,stackoverflow.com -78,1420791085,5,Java quirks and interview gotchas,dandreamsofcoding.com -8,1420790412,12,Open source APM tool for large scale distributed systems written in Java,github.com -8,1420782826,6,Spring Session 1 0 0 RELEASE,spring.io -5,1420756636,5,Java 8 Streams and JPA,blog.informatech.cr -0,1420754377,9,Call stored proc using Spring JDBC with input output,self.java -1,1420752275,10,Curious What did you read to help you learn Java,self.java -2,1420723345,6,I need advice for solo Java,self.java -65,1420722483,8,Java 8 Default Methods Explained in 5 minutes,blog.idrsolutions.com -4,1420721286,3,Fastest Matrix Library,self.java -9,1420716922,4,Lambda VS clean code,self.java -0,1420716417,9,My Journey away from Play Framework and back again,medium.com -9,1420709806,7,New advanced diagram component introduced in PrimeFaces,blog.primefaces.org -6,1420700990,12,NetBeans Software for Explosive Ordnance Disposal amp Clearance Divers Geertjan s Blog,blogs.oracle.com -7,1420698985,7,New Javadoc Tags apiNote implSpec and implNote,blog.codefx.org -13,1420697204,8,gngr a browser under development in pure Java,gngr.info -8,1420695836,16,Interview with Charles Nutter co lead of the JRuby project on the future of the JVM,ugtastic.com -9,1420678842,9,How to make some sort of an executable file,self.java -9,1420678377,11,Need Advice What would the best way to modularize JSF applications,self.java -0,1420654896,18,Get started in no time with JAX RS Jersey with Spring Boot Spring Data Spring Security Spring Test,blog.codeleak.pl -16,1420647199,6,Using Comsat with Standalone Servlet Containers,blog.paralleluniverse.co -30,1420645742,9,Inside the Hotspot VM Clocks Timers and Scheduling Events,blogs.oracle.com -30,1420645135,14,Thread Magic Tricks 5 Things You Never Knew You Can Do with Java Threads,blog.takipi.com -9,1420640559,5,Need recommendations on Cassandra books,self.java -17,1420636334,10,Tutorial IntelliJ IDEA Plugin Development Getting Started and the StartupActivity,cqse.eu -2,1420632349,12,using uniVocity 1 0 7 to export data and generate test databases,univocity.com -1,1420620338,16,Beginner with the Java tech What softwares do i need on my computer to learn efficiently,self.java -0,1420601906,10,Scraping Vine Videos from the Twitter Streaming APIs in Java,dannydelott.com -23,1420592628,10,I want to get ahead of my Computer Science class,self.java -12,1420587601,7,Java EE authorization JACC revisited part II,arjan-tijms.omnifaces.org -0,1420585358,9,Caching and Messaging Improvements in Spring Framework 4 1,infoq.com -0,1420583891,7,Package JSF Flow in a JAR file,byteslounge.com -2,1420582276,8,IntelliJ idea Any video tutorial to run jUnit,self.java -0,1420576723,5,Java code noob help plz,self.java -6,1420573479,12,Loading view templates from a database with Thymeleaf composing multiple template resolvers,blog.kaczmarzyk.net -17,1420572777,9,Simple Java to Java remoting library using HTTP S,self.java -5,1420567662,9,From JPA to Hibernate legacy and enhanced identifier generators,vladmihalcea.com -3,1420566949,9,Building a HATEOAS API with JAX RS and Spring,blog.codeleak.pl -8,1420562089,20,Any Spring Roo users here How does the new 1 3 version compare with Spring Boot for a new project,self.java -2,1420554169,9,FreeBuilder automatic builder pattern implementation for your value types,freebuilder.inferred.org -8,1420549316,14,5 reasons why JavaFX is better than Swing for developing a Java PDF viewer,dzone.com -9,1420534526,9,NetBeans Top 5 Highlights of 2014 Geertjan s Blog,blogs.oracle.com -0,1420522888,6,Using Netflix Hystrix annotations with Spring,java-allandsundry.com -2,1420521565,8,How to get NBA scores for my application,self.java -0,1420511386,26,Seeking opinions Does the fact that Oracle s Java Mission Control was built on the Eclipse platform mean anything for the future of the NetBeans platform,self.java -1,1420506426,9,Java Web Start In or Out of the Browser,blogs.oracle.com -10,1420505177,16,la4j 0 5 0 with composable iterators is released up to 20x speedup on sparse data,github.com -24,1420504069,11,A Persistent KeyValue Server in 40 Lines and a Sad Fact,voxxed.com -3,1420487192,16,Simple Flat Mapper v 1 2 0 fast and easy to use mapper from flat record,github.com -3,1420456719,4,Finally Retry for Spring,java-allandsundry.com -5,1420456162,10,Login For a Spring Web App Error Handling and Localization,baeldung.com -33,1420453319,12,Difference between WeakReference vs SoftReference vs PhantomReference vs Strong reference in Java,javacodegeeks.com -0,1420445047,12,Spring from the Trenches Resetting Auto Increment Columns Before Each Test Method,petrikainulainen.net -0,1420442573,13,An alternative API for filtering data with Spring MVC amp Spring Data JPA,blog.kaczmarzyk.net -29,1420441832,15,Java 9 and Beyond Oracle s Brian Goetz and John Rose Glimpse into the Future,infoq.com -2,1420400192,9,Anyone have any J2EE EJB primer books to recommend,self.java -0,1420390837,4,Learn Java with Examples,adarshspatel.in -7,1420382516,4,Twitter bot with Java,self.java -49,1420373917,3,Java without IDE,self.java -5,1420370593,14,Spring Framework 4 1 4 amp 4 0 9 amp 3 2 13 released,spring.io -8,1420328929,5,Java Past Present and Future,infoq.com -4,1420309062,6,Netty 4 0 25 Final released,netty.io -23,1420304550,4,Valhalla The Any problems,mail.openjdk.java.net -5,1420303716,6,Apache Commons Pool 2 3 released,mail-archives.apache.org -53,1420303317,10,My first path tracer that I wrote purely in Java,github.com -10,1420279466,8,Todd Montgomery Discusses Java 8 Lambdas and Aeron,infoq.com -9,1420263186,2,Invokedynamic 101,javaworld.com -2,1420231387,10,A simple use case comparison of JVM libraries for MongoDB,insaneprogramming.be -38,1420215381,6,Mockito Mock Spy Captor and InjectMocks,baeldung.com -15,1420185926,5,Instances of Non Capturing Lambdas,blog.codefx.org -22,1420183912,10,A beginner s guide to JPA Hibernate entity state transitions,vladmihalcea.com -5,1420150616,5,Java 2D game Space Shooter,github.com -0,1420149757,6,how to draw shapes using java,cakejava.com -0,1420144699,8,NetBeans is awfully sluggish laggy on retina MBP,self.java -5,1420134938,7,Is comparing String different than comparing objects,javaguru.co -0,1420126528,14,Anybody wants to create a Java game libgdx for android and ios with me,self.java -12,1420124536,9,Develop powerful Big Data Applications easily with Spring XD,youtube.com -2,1420124223,6,A Spring criticism drawbacks amp pitfalls,web4j.com -0,1420122300,4,Looking to learn Java,self.java -6,1420120212,15,The Firebird JDBC team is happy to announce the release of Jaybird 2 2 6,firebirdsql.org -6,1420114880,2,Android development,self.java -73,1420113268,11,Memory consumption of popular Java data types Java Performance Tuning Guide,java-performance.info -5,1420108752,3,Concepts of Serialization,blog.codefx.org -8,1420102887,4,A handful Akka techniques,manuel.bernhardt.io -19,1420065755,10,What is The Best Way To Monitor A Java Process,self.java -1,1420043485,11,For Spring development is the Spring Tool Suite better than Netbeans,self.java -3,1420039756,13,Article on using FindBugs to squash bugs in Java with NetBeans and Ant,dzone.com -8,1420024804,12,A tutorial for persisting XML data via JAXB and JPA with HyperJAXB3,confluence.highsource.org -31,1420019679,6,Java 8 The Design of Optional,blog.codefx.org -2,1420004818,7,2014 A year review for Spring projects,spring.io -23,1419974615,6,Java 8 WTF Ambiguous Method Lookup,jvilk.com -2,1419973391,9,JAX RS Rest Service Example with Jersey in Java,memorynotfound.com -1,1419973333,14,Tutorial 19 JSTL Afficher le contenu d un fichier XML dans une page JSP,cakejava.com -8,1419972785,10,Calculate Relative Time also known as Time Ago In Java,memorynotfound.com -16,1419968120,21,Fast and stateless API authentication with Spring Security an article with a demo app Java Config embedded Jetty 9 EHCache etc,resilientdatasystems.co.uk -7,1419947636,6,Sizzle java singleton dependency management library,self.java -14,1419941309,2,Hibernate Pagination,baeldung.com -32,1419931276,9,New Java 8 Date and JPA 2 1 Integration,adam-bien.com -0,1419930214,6,Java vs PHP for website development,self.java -9,1419895241,8,Under The Hood With Java 10 Enhanced Generics,infoq.com -0,1419886935,3,Java SE Cakejava,cakejava.com -0,1419883798,4,Java developers on Logging,self.java -5,1419877911,8,Apache Maven Surefire Plugin 2 18 1 Released,maven.40175.n5.nabble.com -15,1419869974,6,Apache Commons Math 3 4 Released,mail-archives.apache.org -0,1419869263,14,What would be the effects of a significant breakthrough in quantum computing for programmers,self.java -0,1419857927,11,Leaky Abstractions or How to Bind Oracle DATE Correctly with Hibernate,blog.jooq.org -74,1419856122,14,Java based open source tool Cryptomator encrypts your cloud files Join me on Github,cryptomator.org -2,1419817218,5,Spring with intellij community edition,self.java -19,1419811403,7,Exact String Matching Algorithms Animation in Java,www-igm.univ-mlv.fr -13,1419804109,7,Java EE authorization JACC revisited part I,arjan-tijms.omnifaces.org -14,1419780000,9,Manipulating JARs WARs and EARs on the command line,javaworld.com -0,1419770177,5,Spring Batch Hello World Tutorial,javahash.com -1,1419767598,11,I d like to learn java No prior experience with programming,self.java -5,1419764821,7,Space verus Time in Java s ObjectOutputStream,maultech.com -5,1419762582,4,Asynchronous timeouts with CompletableFuture,nurkiewicz.com -69,1419758773,12,Marco Behler s 2014 Ultimate Java Developer Library Tool amp People List,marcobehler.com -4,1419752504,9,JPA 2 1 How to implement a Type Converter,thoughts-on-java.org -18,1419718182,18,Can someone explain to me container less deployment and why it s better than using tomcat with spring,self.java -11,1419716950,18,Do you think there s any reason to pick up Scala in 2015 is Java 8 widespread enough,self.java -2,1419708131,6,Should I upgrade to Java 8,self.java -41,1419692550,8,Three Reasons Why I Like the Builder Pattern,petrikainulainen.net -17,1419691689,2,Java Timer,baeldung.com -32,1419674403,6,Apache Maven 3 2 5 Release,maven.40175.n5.nabble.com -11,1419674329,5,Apache POI 3 11 released,mail-archives.apache.org -7,1419617927,6,Java Question Making your database portable,self.java -35,1419606056,6,How to build a Brainfuck interpreter,unnikked.ga -13,1419603250,4,Java 8 flatMap example,adam-bien.com -1,1419588566,6,Java book for an experienced programmer,self.java -0,1419578206,4,Best Java Swing books,self.java -6,1419574052,11,Java question Can you make an iOS game app with Java,self.java -0,1419548318,4,Oracle Certification JSE Programmer,self.java -4,1419543024,8,Interview with Erin Schnabel on the Liberty Profile,infoq.com -31,1419534330,16,Performance of various general compression algorithms some of them are unbelievably fast Java Performance Tuning Guide,java-performance.info -62,1419533467,11,Random value has a 25 75 distribution instead of 50 50,stackoverflow.com -28,1419524368,6,Unsigned int considered harmful for Java,nayuki.io -0,1419497208,6,Books for Java beginners on Nook,self.java -0,1419480821,5,Declaring Objects in java question,self.java -9,1419442350,7,14 Tips for Writing Spring MVC Controller,codejava.net -35,1419438244,6,Merry Christmas to all who Celebrate,self.java -0,1419432879,6,Install Java and Set class path,youtube.com -14,1419431619,8,My 3 Christmas wishes for Java EE Security,self.java -5,1419423648,17,why there is no JSR specification for Aspect oriented programming like jpa servlet if there is no,self.java -16,1419376893,14,Spring XD 1 1M2 introduces Kafka based message bus deeper Reactor and RabbitMQ support,spring.io -3,1419359805,19,Is there anyway i can code an app widget that can help me automate the work that i do,self.java -4,1419341647,12,Developing web sites in Java frameworks JFS JSP MVC good or bad,self.java -10,1419333980,11,What s up with Java EE 8 A Whistle Stop Tour,voxxed.com -15,1419333275,18,PrimeFaces Elite 5 1 7 is released featuring the new Steps Component new PhotoCam improved accessibility and more,blog.primefaces.org -0,1419325692,8,JDK JRE Class Loader Bytecode Bytecode Interpretor JVM,youtube.com -17,1419314844,11,A beginner s guide to transaction isolation levels in enterprise Java,vladmihalcea.com -17,1419312452,8,Audit4j An open source auditing framework for Java,audit4j.org -0,1419301317,7,What can I actually build with Java,self.java -1,1419280080,4,Teaching Kids Java Programming,infoq.com -10,1419271138,7,Easy way to visualize your REST APIs,java.dzone.com -27,1419257069,12,Valhalla Bleah Layers are too complicated was Updated State of the Specialization,mail.openjdk.java.net -18,1419254370,7,Bridging Undertow s authentication events to CDI,jdevelopment.nl -27,1419232537,12,Are You Binding Your Oracle DATEs Correctly I Bet You Aren t,blog.jooq.org -14,1419231659,6,OpenJDK 8 builds for MS Windows,self.java -3,1419186302,5,Commons Codec 1 10 HMAC,commons.apache.org -45,1419146993,11,Looking into the Java 9 Money and Currency API JSR 354,mscharhag.com -10,1419139490,7,Alternative to locks and actors slides pdf,github.com -2,1419130372,5,Hibernate DDL missing a table,self.java -13,1419111586,7,How to modify JSF library load order,beyondjava.net -6,1419109675,10,Fujaba From UML to Java and Back Again CASE tool,fujaba.de -0,1419104129,4,where do I start,self.java -15,1419101486,8,Image Editor App Swing vs Awt vs JavaFX,self.java -3,1419095887,12,Remember that satirically over engineered adding library from a few years back,self.java -5,1419086592,3,AntLR 4 4,github.com -11,1419076898,11,Why standards are hot or why I still like Java EE,adam-bien.com -11,1419065939,6,Valhalla Updated State of the Specialization,mail.openjdk.java.net -193,1419026726,13,The most useful Eclipse shortcuts in gif form and a printable cheat sheet,elsealabs.com -12,1419025177,4,JDBI JDBC or Hibernate,self.java -1,1419020230,5,Mojarra 2 2 9 released,java.net -8,1419014027,13,Spring for Apache Hadoop 2 1 0M3 improves YARN and Spring Boot support,spring.io -6,1419010351,11,Big microservice infrastructure strides with Spring Cloud 1 0 0 RC1,spring.io -8,1419003426,3,Online Java Degree,self.java -12,1418991418,7,Camel Selective Consumer using JMS Selector Example,pretechsol.com -1,1418968691,12,Object Streams Serialization and Deserialization using Serializable Interface to save objects state,codingeek.com -0,1418961112,7,Newbie in need of help with objects,self.java -54,1418951480,8,Why are public fields so demonized in Java,self.java -0,1418946571,5,Restlet framework 2 3 0,restlet.com -1,1418946522,5,Jetty 9 2 6 v20141205,dev.eclipse.org -1,1418943332,5,Junit Timeout 4 12 release,github.com -4,1418941756,10,Looking for a Java Project to Add to the Resume,self.java -2,1418925804,13,A Glance into the Developer s World of Data Graphs RDBMS and NoSQL,zeroturnaround.com -20,1418923421,5,On Servlets and Async Servlets,blog.paralleluniverse.co -5,1418900810,3,Java Advent Calendar,javaadvent.com -16,1418897372,8,First Hibernate OGM release aka 4 1 Final,in.relation.to -8,1418869415,7,Numeric behavior change in 1 8 0_20,self.java -5,1418850990,7,Does anybody have any experience with Lanterna,self.java -4,1418849843,14,Spring IO Platform 1 1 0 adds new Spring Integration tech to platform distro,spring.io -0,1418844379,8,Deploying a Java Application with Docker and Tutum,blog.tutum.co -10,1418840889,8,Dynamic Code Evolution VM for Java 7 8,github.com -0,1418837143,9,Can I get help debugging my breakout game code,self.java -4,1418821689,12,Eric D Schabell Jump Start Your Rules Events Planning and BPM Today,schabell.org -5,1418821153,9,How jOOQ Leverages Generic Type Safety in its DSL,javaadvent.com -18,1418820865,9,All about Java EE 8 End of year update,javaee8.zeef.com -1,1418790142,2,ELI5 Encapsulation,self.java -44,1418781082,8,Can we add r DoMyHomework to the sidebar,self.java -3,1418769703,7,Isomorphic Java Script Apps using ReactJS Nashorn,augustl.com -0,1418760514,5,Best way to learn JAVA,self.java -1,1418753221,4,Understanding containment of GLabel,self.java -1,1418737631,6,Java Socket Stream Connected to Javascript,self.java -9,1418736584,13,Are there Java build tools where the builds are specified in Java itself,self.java -0,1418727754,7,License4J Licensing API and Tools new version,license4j.com -10,1418713099,9,Too Bad Java 8 Doesn t Have Iterable stream,blog.jooq.org -108,1418713049,7,10 Books Every Java Developer Should Read,petrikainulainen.net -7,1418679977,10,Java 8 BYO Super Efficient Maps Quadruple Your Map Performance,self.java -16,1418651159,8,Java Puzzle are you up for a challenge,plumbr.eu -30,1418642474,8,My Sunday hacking project Fast Private Fields Extractor,github.com -8,1418629600,9,Apache Tapestry 5 3 8 compatible with Java 8,tapestry.apache.org -5,1418628826,6,EAGER fetching is a code smell,vladmihalcea.com -0,1418627548,12,Java Project 1 URL opens many links in new tabs seeking help,self.java -4,1418615184,11,You can now suppress the Ask Toolbar prompt when updating Java,itwire.com -1,1418613506,9,Deploying static content via JBoss Application Server AS 7,javawithravi.com -0,1418600019,6,HELP need link to JDK JavaDoc,self.java -0,1418594692,3,Most missed features,self.java -0,1418591027,6,Need advice on making a game,self.java -61,1418589659,25,I ve just finished up a class with a professor that maintains his own parallel computing library in Java You guys should check it out,self.java -2,1418563930,6,VIBeS Variability Intensive system Behavioural teSting,projects.info.unamur.be -1,1418562982,11,spark indexedrdd An efficient updatable key value store for Apache Spark,github.com -1,1418562819,6,Apache PDFBox 1 8 8 released,mail-archives.apache.org -0,1418562538,5,Hipster Library for Heuristic Search,hipster4j.org -42,1418527792,9,Bytecode Viewer 2 2 1 Java Reverse Engineering Suite,github.com -0,1418524552,3,Share Java Projects,learnbasicjava.com -5,1418514319,5,Java Development Reverse Engineering Forum,the.bytecode.club -1,1418506021,7,Micro java framework for web development updates,self.java -19,1418497794,7,Faster Object Arrays in Java InfoQ presentation,infoq.com -6,1418481967,5,How did you learn Java,self.java -8,1418475016,5,State of Flow EclipseMetrics Plugin,stateofflow.com -42,1418470851,8,Nashorn Architecture and Performance Improvements in JDK 8u40,getprismatic.com -18,1418462460,4,Best Java Blogs list,baeldung.com -9,1418454039,5,JMustache Simple templating in Java,github.com -0,1418449823,5,java if statement error help,self.java -8,1418444969,6,Anyone use Undertow in production system,self.java -11,1418440470,12,Core Java Interview Questions Podcast Episode 2 How to fail your interview,corejavainterviewquestions.com -1,1418436899,13,Why doesn t String equals s work sensibly when s is instanceof CharSequence,self.java -9,1418432872,4,Java beginner project ideas,self.java -3,1418430083,7,Options for Building REST APIs in Java,mooreds.com -0,1418416206,13,Effective Java a decent book to either supplement or read after Head First,self.java -27,1418389199,6,Java and services like Docker vagrant,self.java -0,1418383786,11,Building dynamic responsive multi level menus with plain HTML and OmniFaces,self.java -10,1418378722,10,Java Advent Calendar Lightweight Integration with Java EE and Camel,javaadvent.com -7,1418378696,9,Using Lambdas and Streams to find Lambdas and Streams,blogs.oracle.com -2,1418374118,3,JAVA iOS tools,javaworld.com -3,1418357979,14,C guy getting started in Java Simply want to add item to a JList,self.java -1,1418344657,15,How do I allow any kind of data input and test what type it is,self.java -0,1418335585,11,What s the Java Version of Gems Bundler NPM Composer Packagist,self.java -1,1418334469,4,Questions About Server Architecture,self.java -3,1418324007,13,Nginx Clojure v0 3 0 Released Supports Nginx Access Handler amp Header Filter,nginx-clojure.github.io -12,1418322905,9,Spring Security 4 0 0 RC1 improves WebSocket security,spring.io -2,1418310120,5,Free english dictionary eclipse compatible,self.java -10,1418306118,9,Java Advent Calendar Self healing applications are they real,javaadvent.com -0,1418298081,4,Help with Quiz program,self.java -29,1418283853,6,Spring Boot 1 2 0 released,spring.io -1,1418278666,7,Java Beginner Question and Looking for Suggestions,self.java -0,1418269088,3,Beginner seeking help,self.java -19,1418266322,8,What s the lightest servlet container out there,self.java -10,1418265677,10,My Current Personal Project A JSF Component Library Using Foundation,self.java -3,1418262993,6,Any good Java open source CRM,self.java -7,1418249841,5,Why should I use IntelliJ,self.java -1,1418242077,5,Java import and uml dependency,self.java -0,1418236626,5,Ruby better than Java Meh,youtube.com -3,1418234144,10,Flavors of Concurrency in Java Threads Executors ForkJoin and Actors,zeroturnaround.com -2,1418231317,11,Adding WebSocket endpoints on the fly with JRebel and Spring Boot,zeroturnaround.com -0,1418227965,21,What is the point of JSP or JSF or Spring MVC or Struts etc now that we HTML5 and AngularJS etc,self.java -6,1418227507,18,SimpleFlatMapper v1 1 0 fast and easy to use mapper for Jdbc Jooq Csv with lambda stream support,github.com -0,1418222306,6,Idiots Guide to Big O Notation,corejavainterviewquestions.com -0,1418217860,24,I haven t programmed in a year so I m very rusty Any ideas on what I should do as a project to unrustify,self.java -11,1418216927,4,Tiny Types in Java,markphelps.me -2,1418212315,9,What happens internally when the outermost Stream is closed,self.java -3,1418210875,4,Graphical Visualizations in JavaDoc,flowstopper.org -80,1418210252,9,Did you know pure Java 8 can do 3D,self.java -3,1418204332,5,The Evolution of Java Caching,adtmag.com -8,1418198156,7,5 ways to initialize JPA lazy relations,thoughts-on-java.org -1,1418197857,5,Java Annotated Monthly December 2014,blog.jetbrains.com -3,1418190134,9,Can you download Java 1 8 for Snow Leopard,self.java -44,1418187033,8,Over 30 vulnerabilities found in Google App Engine,javaworld.com -2,1418174938,15,ROUGH CUT Interview with Charles Nutter aka the JRuby Guy at GOTO Night Chicago 2015,youtube.com -3,1418165546,12,Looking for an intellij color theme like SublimeText s blackboard color theme,self.java -0,1418162015,6,OOPS Java is same as English,kossip.ameyo.com -3,1418161183,6,Spring Framework 4 1 3 released,spring.io -1,1418161159,6,Latest Jackson integration improvements in Spring,spring.io -1,1418161137,12,SpringOne2GX 2014 Replay Develop powerful Big Data Applications easily with Spring XD,spring.io -17,1418160795,14,Is it just me or is JavaScript a lot harder to learn than Java,self.java -2,1418160327,13,Looking for Java lib for large file transfer push to many local clients,self.java -7,1418158321,9,New Java Version it s not JDK 1 9,infoq.com -0,1418158283,10,One day training on Java 8 Lambda Expressions amp Streams,qconlondon.com -6,1418156482,6,Spark Web Framework 2 1 released,sparkjava.com -1,1418150582,5,Problem with Online Java Applet,self.java -3,1418150385,11,Java 8 vs Scala The Difference in Approaches and Mutual Innovations,kukuruku.co -62,1418141853,10,Don t be clever The double curly braces anti pattern,java.dzone.com -2,1418136519,14,Webinar on Dec 17 Using Docker amp Codenvy to Speed Development Project On Boarding,blog.exoplatform.com -0,1418135873,7,Heavy use of swing in java app,self.java -10,1418134567,5,New Java info site Voxxed,voxxed.com -3,1418129747,11,Java Advent Calendar Own your heap Iterate class instances with JVMTI,javaadvent.com -81,1418128463,8,Top 10 Books For Advanced Level Java Developers,programcreek.com -2,1418120064,3,JGit Authentication Explained,facon-biz.prossl.de -5,1418118022,11,Typesafe survey Java 8 Adoption Strong Users Anxious for Java 9,infoq.com -16,1418113018,9,lwjgl3 Ray tracing with OpenGL Compute Shaders Part I,github.com -10,1418097778,9,Could you create a rainmeter type program in java,self.java -18,1418064202,9,Java Scala Ceylon Evolution in the JVM Petri Dish,dzone.com -34,1418062870,11,JDK 9 Early access Build 41 Available Images are now modular,mreinhold.org -22,1418062468,4,Update My IRC Client,self.java -0,1418060636,6,Usage of serialVersionUID in Java serialization,softwarecave.org -4,1418056775,8,IntelliJ IDEA 14 0 2 Update is Available,blog.jetbrains.com -18,1418056654,18,Watch this video Dr Venkat Subramaniam if you still don t understand the benefits of Java 8 lambdas,vimeo.com -0,1418054717,10,I need some help in making a text based game,self.java -9,1418020733,13,Java Weekly 49 Java doesn t suck annotations everywhere free ebooks and more,thoughts-on-java.org -2,1418016598,6,factory vs dataclassname Datasource on Tomcat,self.java -1,1418002379,11,Data pool issues Moving legacy Java app from Websphere to Tomcat,self.java -0,1417989727,6,Avoid conditional logic in Spring Configuration,blog.frankel.ch -11,1417986916,11,metadata extractor a Java library for reading metadata from image files,github.com -2,1417971077,7,Need some help with my script please,self.java -0,1417968958,8,Switching JPanel when clicking on a JButton Swing,self.java -0,1417962820,11,Can someone help me see what is wrong with this code,imgur.com -2,1417958756,6,Jolokia 1 2 3 Released ssl,jolokia.org -7,1417946955,27,My system OSX Mavericks has 16GB of RAM but I can run programs with Xms32g Xms512gb and even Xms1024gb didn t test further How is this possible,self.java -14,1417928863,5,your personal opinions on Neo4j,self.java -0,1417902839,11,SD DSS Tool Cross border eSignature creation and validation made easier,github.com -8,1417897034,6,Choco solver Library for Constraint Programming,choco-solver.org -7,1417894403,8,Any suggestions on great debugging code analysis tools,self.java -5,1417888184,9,Apache Maven Assembly Plugin Version 2 5 2 Released,self.java -0,1417886575,9,How do I simulate the collision of two objects,self.java -0,1417886161,6,ECLIPSE PROBLEM Dosgi requiredversion 1 6,self.java -0,1417880075,3,Help with swing,self.java -0,1417849923,5,Content Assist Problems with Eclipse,imgur.com -32,1417838072,27,Core Java Interview Questions Podcast 1 is out now The top 5 actions you can take right now to improve your chances of landing your next job,corejavainterviewquestions.com -19,1417836091,7,Apache Maven Review of Concepts amp Theory,youtu.be -2,1417829142,4,Spark Framework Updating staticFileLocation,self.java -0,1417827132,13,Is it okay to store SQL strings in a DB to later execute,self.java -0,1417824464,8,In MVC should a model contain subview models,programmers.stackexchange.com -1,1417819568,5,Administering GlassFish with the CLI,blog.c2b2.co.uk -1,1417794381,3,Intellij Gradle Swing,self.java -21,1417781719,6,First look Spring Boot and Docker,blog.adaofeliz.com -38,1417779650,9,Proposed to Drop JEP 198 Light Weight JSON API,mail.openjdk.java.net -0,1417764795,7,Groovy can someone explain this to me,self.java -3,1417761819,3,java security settings,self.java -1,1417746411,12,Best way to incorporate William Whitaker s Words into a Java program,self.java -13,1417732573,8,JBoss Forge funny tutorial what do you think,youtube.com -3,1417721593,9,How to host a forked Maven project s artifacts,self.java -0,1417720212,6,How do you compare two Dates,self.java -61,1417719970,7,The Java 7 EE Tutorial free eBook,blogs.oracle.com -7,1417717551,10,Cracking Vigenere Cipher using Frequency Analysis in Java Example Code,ktbyte.com -2,1417715600,7,Demonstration of AES CBC Mode in Java,ktbyte.com -13,1417708402,8,IntelliJ IDEA 14 0 2 RC is Out,blog.jetbrains.com -26,1417706554,10,Can t Stop this Release Train JDK 9 Images Modularised,voxxed.com -2,1417704144,6,Using a switch in a constructor,self.java -13,1417682646,9,Review Java Performance The Definitive Guide by Scott Oaks,thoughts-on-java.org -1,1417680633,8,Review my code and give me some criticism,self.java -0,1417672703,8,I need some help updating my Java installation,self.java -3,1417666988,8,What do you like about the NetBeans IDE,self.java -0,1417661405,7,How to horizontally scale websockets on AWS,self.java -6,1417655506,6,Brian Goetz Stewardship the Sobering Parts,m.youtube.com -2,1417647063,12,JDBC DB delta sync util that brings prod data to QA fast,github.com -0,1417642725,9,Looking for a small Java app for testing purposes,self.java -2,1417629525,6,Survey Help make JBoss Tools better,twtsurvey.com -8,1417628166,12,Product vs Project Development 5 factors that can completely alter your approach,zeroturnaround.com -22,1417626758,10,Java Doesn t Suck You re Just Using it Wrong,jamesward.com -0,1417625782,11,Using testng xml with Gradle and handling up to date checks,publicstaticvoidma.in -382,1417620670,10,Every time I need to kill a hung JVM process,i.imgur.com -2,1417603048,4,Best Java books tutorials,self.java -0,1417559502,6,Compile and run java in textpad,youtube.com -9,1417558771,9,Secure Async WebServices using Apache Shiro Guice and RestEasy,github.com -6,1417557440,18,Apache MetaModel data access framework providing a common interface for exploration and querying of different types of datastores,metamodel.apache.org -10,1417556989,8,KillBill Open Source Subscription Billing amp Payment Platform,killbill.io -14,1417554136,9,RESTful web framework setup can it be any simpler,github.com -0,1417552247,19,FormDataMultiPart needs to get all values in a lt select gt multiselect but its only returning the last selected,self.java -0,1417546627,3,Extracting Jar files,self.java -16,1417543960,7,The Fatal Flaw of Finalizers and Phantoms,infoq.com -27,1417532869,9,You Don t Need Spring to Do Dependency Injection,voxxed.com -0,1417527485,4,Need some help please,self.java -1,1417523328,8,Deferred Fetching of Model Elements with JFace Viewers,codeaffine.com -2,1417490460,9,Developing Microservices for PaaS with Spring and Cloud Foundry,java.dzone.com -2,1417479350,5,Acai Guice for JUnit4 tests,blog.lativy.org -10,1417474361,11,Radioactive Java 8 library for building querying mutating and mapping beans,github.com -1,1417468024,6,Creating executable jar file with Maven,softwarecave.org -2,1417461464,11,Manfred Riem discusses JSF 2 3 MVC 1 0 and Mojarra,content.jsfcentral.com -7,1417458711,9,First Milestone of Spring Data Release Train Fowler Available,spring.io -4,1417457826,11,Spring Integration Java DSL pre Java 8 Line by line tutorial,spring.io -1,1417452732,18,Check my quick and dirty unit test helper to assist you debugging and validating non trivial test outputs,github.com -6,1417452677,6,WordPress Drupal CMS alternatives in Java,self.java -37,1417452343,15,What are some of the biggest and well know java applications used in the world,self.java -36,1417449725,10,15 Tools Java Developers Should Use After a Major Release,blog.takipi.com -4,1417449038,15,Bean mapping generator MapStruct 1 0 Beta3 is out with nested properties qualifiers and more,mapstruct.org -33,1417439187,20,Meet Saros An open source Eclipse extension that allows you to work on code with multiple users from different computers,self.java -2,1417423792,11,Java Weekly 48 Modern APIs Entity Graph agile specs and more,thoughts-on-java.org -4,1417423735,9,New Java Version It s not JDK 1 9,infoq.com -1,1417414181,9,Question Question Regarding JavaScript build tool in Java Project,self.java -0,1417411672,7,Can MicroServices Architecture Solve All Your Problems,sivalabs.in -2,1417405696,5,Entity locking in Spring perhaps,self.java -0,1417402016,3,Programming HW help,self.java -0,1417396721,7,How do you dummy proof an input,self.java -97,1417391248,3,Java for Everything,teamten.com -5,1417389756,32,I work with JEE since 2006 I m currently working with grails and with like to keep my JEE and spring knowledge polished updated What kind of personal project could achieve this,self.java -1,1417382591,6,Using getters and setters best practice,self.java -11,1417373520,11,What s the best place to get started with Spring MVC,self.java -28,1417365329,12,IndentGuide a plugin for Eclipse that shows vertical guides based on indentation,sschaef.github.io -8,1417362616,5,The Rise of Cache First,voxxed.com -0,1417341741,24,When i use an Netbeans IDE i get no errors When i attempt to use javac from the command console i get 25 what,self.java -2,1417331076,9,Multi Job Scheduling Service by using Spring and Quartz,java.dzone.com -0,1417330282,10,How do i make a users input a variable integer,self.java -39,1417330071,9,JVM amp Garbage Collection Interview Questions beginner s guide,corejavainterviewquestions.com -0,1417323187,19,Learn about Exception in Java and How to handle exception in Java One of Most important concept in java,learn2geek.com -14,1417303291,5,Aurous Open Source Spotify Alternative,github.com -37,1417301141,3,Java 8 OPEN,youtube.com -0,1417293667,5,Question Public Static Void Abstract,self.java -0,1417288596,2,Animation Problems,self.java -3,1417254448,17,Chance to win free copy of upcoming Java book Beginning Java Programming The Object Oriented Approach Wiley,dataminingapps.com -11,1417234554,3,Java Game Physics,self.java -0,1417214510,12,Spring IOC tutorial in slovak language with english subtitles feedback is welcome,youtube.com -0,1417208313,2,Spring questions,self.java -0,1417194724,5,Need help with java homework,self.java -20,1417191922,6,Java Performance Workshop with Peter Lawrey,vladmihalcea.com -0,1417182899,9,Java frameworks for webservice application in banking think enterprise,self.java -4,1417180182,6,A question about single class programs,self.java -30,1417168978,6,JavaBeans specification is from another era,blog.joda.org -7,1417147336,2,Teacher Mentor,self.java -20,1417140386,9,IntelliJ vs Eclipse speed for program to start running,self.java -9,1417123566,7,Free hosting service for Maven MySQL project,self.java -0,1417118371,4,Java reference static variables,self.java -0,1417117410,12,Java 1 8 Scrambled GUI on Mac OS X 10 7 5,self.java -9,1417116311,7,Newsflash OmniFaces 2 0 released amp reviewed,beyondjava.net -8,1417114056,9,Bootiful Java EE Support in Spring Boot 1 2,java.dzone.com -15,1417110820,10,A Look at the Proposed Java EE 8 Security API,voxxed.com -21,1417110269,7,Data Processing with Apache Crunch at Spotify,labs.spotify.com -13,1417105033,10,IntelliJ IDEA 14 0 2 EAP 139 560 is Out,blog.jetbrains.com -33,1417102358,8,Flyway 3 1 released Database migrations made easy,flywaydb.org -2,1417100715,8,A good book about everything related to Java,self.java -0,1417086058,4,Login system with Java,self.java -0,1417081994,14,Write and compile your java code online with the help of experienced java programmers,myonlinejavaide.com -0,1417046309,15,Coming soon New Real time as a service sing up and get premium for free,realapi.com -0,1417045996,15,My new tutorial about transactions and Spring please feedback are the subtitles convenient to read,youtube.com -0,1417040043,12,Any one can solve this problem Really hard for a new learner,self.java -74,1417032133,10,Why you should use the Eclipse compiler in Intellij IDEA,blog.dripstat.com -0,1417030129,11,Has anyone written an AngularJS application consisting of 100 HTML pages,self.java -20,1417029154,5,Java EE security JSR published,jcp.org -2,1417029044,17,What s the site or package that has everything you need to get started with web development,self.java -0,1417017034,5,Secure Containers for the Cloud,waratek.com -65,1417011350,13,Docker for Java Developers How to sandbox your app in a clean environment,zeroturnaround.com -3,1417004769,4,SWT Mouse Click Implementation,codeaffine.com -0,1416983448,7,There Is No Cluster in Java EE,java.dzone.com -1,1416983316,6,Writing Complex MongoDB Queries Using QueryBuilder,java.dzone.com -0,1416965539,9,I need help with a really basic Java class,self.java -0,1416964567,7,Measure overhead of JNI invocation on Android,self.java -17,1416960058,9,JSF and MVC 1 0 a comparison in code,arjan-tijms.omnifaces.org -20,1416959458,12,Any recommendations for an installer software to package up Java desktop apps,self.java -6,1416950448,4,Writing Java in iOS,self.java -7,1416940876,15,Spring Cloud 1 0 0 M3 project release train introduces new Cloud Foundry AWS Support,spring.io -7,1416939565,16,Mite Mitreski Java2Days 2014 From JavaSpaces JINI and GigaSpaces to SpringBoot Akka reactive and microservice pitfalls,blog.mitemitreski.com -14,1416938084,13,Anyone depends on Java applets They may stop working in chrome next year,blog.chromium.org -4,1416930994,8,Spring Integration Java DSL Line by line tutorial,spring.io -1,1416929881,12,Does anyone offer classroom training for WAS 7 8 8 5 anymore,self.java -15,1416927920,9,Setting JSF components conditionally read only through custom components,knowles.co.za -12,1416927739,5,Locating JSF components by ID,blogs.oracle.com -8,1416927385,5,Implementing JASPIC in the application,trajano.net -0,1416907115,4,vrais ou faux jumeaux,infoq.com -5,1416906184,7,Order of Servlets in Tomcat Application Deployment,self.java -0,1416889674,9,Spring Roo 1 3 0 Introduces JDK 8 support,java.dzone.com -2,1416889579,11,Externalizing Session State for a Spring Boot Application Using Spring Session,java.dzone.com -3,1416889472,8,Where do you guys read to on java,self.java -37,1416889325,7,Java threading from the start interview questions,corejavainterviewquestions.com -11,1416887550,8,I need an idea for a test project,self.java -0,1416879380,7,why is my java program not repeating,self.java -15,1416860929,4,OmniFaces 2 0 released,arjan-tijms.omnifaces.org -0,1416839302,11,Why is eclipse complaining that it cant find the main class,self.java -5,1416839089,14,Java Weekly 47 Java 9 tweet index compress and authenticate REST service and more,thoughts-on-java.org -50,1416833527,13,ubuntu specific call for action openjdk 8 needs packaging on 14 04 LTS,bugs.launchpad.net -3,1416831229,11,Beat O n space complexity in Spring REST with Streams API,airpair.com -2,1416831176,16,How to parse and execute arithmetic expressions with the Shunting Jard algorithm x post r programming,unnikked.ga -3,1416825270,8,Spring Integration Java DSL 1 0 GA Released,spring.io -0,1416812395,14,lt Help gt User Object count and GDI object count of application in java,self.java -23,1416809657,7,Searchable Javadoc a prototype for JEP 225,winterbe.com -4,1416790393,9,Plugins etc for being more productive developing in Java,self.java -0,1416789555,11,Can someone please explain how to debug a program with eclipse,self.java -0,1416786331,4,NullPointerException in OlympicAthlete class,self.java -0,1416772218,8,Question with Euclids algorithm and the remainder operator,self.java -13,1416770226,3,Salary in US,self.java -0,1416755330,5,Are you concerned about this,indeed.com -9,1416754459,5,Java ranks highly as usual,news.dice.com -31,1416752897,19,We are developing a new browser atop Java not released yet Here s our justification C amp C welcome,gngr.info -2,1416752201,7,Java Primitive Sort arrays using primitive comparators,github.com -0,1416750023,12,uniVocity parsers 1 3 0 is here with some useful new features,univocity.com -97,1416748964,20,A look into the mind of Brian Goetz Java Language Architect the advantages of Java 10 Value Types at 45min,youtube.com -0,1416685244,6,R dplyr Group by field dynamically,java.dzone.com -4,1416685175,12,SpringOne2GX 2014 Replay Developer Tooling What s New and What s Next,java.dzone.com -0,1416677694,4,ELI5 Interfaces in Java,self.java -0,1416677202,11,Keep connection or resume if the connection gets lost on socket,self.java -2,1416673263,7,A layout optimized Java data structure package,objectlayout.org -0,1416672752,6,Aplikasi Java Buat Gambar Kartun Sendiri,pulungrwo.in -56,1416671017,5,ExecutorService 10 tips and tricks,nurkiewicz.com -0,1416664407,17,How can I get java to do nothing if the condition of an if statement is true,self.java -0,1416664192,5,How to debug a ArrayIndexOutOfBoundsException,self.java -1,1416661334,7,structure like switch but defined at runtime,self.java -3,1416636262,12,I want to be a professional Java developer any advice Details inside,self.java -0,1416621005,17,Hey r java Need a project to work on Help with my abstract game engine on GitHub,github.com -0,1416616294,4,SharePoint Crossword Puzzle Generator,self.java -15,1416600656,9,Spring Roo 1 3 0 introduces Java 8 support,spring.io -10,1416598810,9,Spring Boot 1 2 0 RC2 introduces Undertow support,spring.io -6,1416596142,28,Could DukeScript take off in popularity Its not like GWT It can actually run Java with HTML views in a browser environment without a Java plugin or applet,dukescript.com -5,1416592631,3,Help writing bits,self.java -7,1416590685,9,Methods and Field Literals in a future Java version,mail.openjdk.java.net -6,1416589144,6,Seven Virtues of a Good Object,yegor256.com -2,1416588882,10,Decimal Precision with doubles storing in arrays Need help please,self.java -35,1416571930,5,WildFly 8 2 is released,wildfly.org -3,1416563982,12,Speedment Partners with Hazelcast for SQL Based In Memory Operational Data Store,blog.hazelcast.com -3,1416559404,7,File Paths on Linux Pi Vs Windows,self.java -13,1416547586,5,OrientDB 2 0 M3 Released,self.java -0,1416509447,13,SpringOne2GX 2014 Replay Java 8 Language Capabilities What s in it for you,java.dzone.com -50,1416509371,6,Oracle Confirms New Java 9 Features,java.dzone.com -0,1416504516,6,Hiring Philadelphia PA Java Software Developer,self.java -13,1416504070,10,IntelliJ IDEA 14 0 2 EAP 139 463 is Out,blog.jetbrains.com -0,1416501403,9,Restful designs and use of Spring MVC Spring Core,self.java -0,1416497233,2,Java question,self.java -1,1416496206,10,Using technical tests to screen candidates Good or bad idea,corejavainterviewquestions.com -23,1416495000,15,SPARC Needs 30 Java Devs in the Next 30 Days Want to Move to Charleston,sparcedge.com -15,1416490629,10,Spring MVC save memory with lazy streams in RESTful services,airpair.com -7,1416484667,7,OmniFaces 2 0 RC2 available for testing,arjan-tijms.omnifaces.org -8,1416477712,5,New shared OverlayPanel in PrimeFaces,blog.primefaces.org -0,1416450398,10,For loop isn t resetting the counter when it repeats,self.java -28,1416425857,19,My employer is rolling out a 20 week Java developer course for existing staff I would appreciate some advice,self.java -4,1416422056,10,Spring XD 1 1M1 debuts Apache Spark Kafka Redis support,spring.io -1,1416408602,5,Referencing file location in webapp,self.java -2,1416406407,6,A Skeptic s Adventure with Hazelcast,worthingtoncloud.com -2,1416405581,9,How to use angularJS directives to replace JSF components,entwicklertagebuch.com -3,1416403372,3,Interrupting Executor Tasks,techblog.bozho.net -2,1416400269,4,Java generics runtime resolution,github.com -0,1416399316,8,Help making an int work in a Jframe,self.java -2,1416399008,5,Java EE patterns book recommendations,self.java -26,1416391673,4,JPA Entity Graphs explained,radcortez.com -5,1416388503,4,LWJGL First 10 days,blog.lwjgl.org -1,1416369396,8,Hybrid Deployments with MongoDB and MySQL 3 Examples,java.dzone.com -0,1416369187,9,Data Inconsistencies on MySQL Replicas Beyond pt table checksum,java.dzone.com -4,1416361788,3,LWJGL 3 Help,self.java -1,1416346852,11,Read Write access to a virtual directory from JVM on windows,self.java -0,1416346026,6,Running Tomcat on a cell phone,self.java -4,1416345543,5,JSF in the Modern Age,infoq.com -2,1416344253,6,Advice With Java Scheduling Frameworks APIs,self.java -28,1416339971,6,Java 9 JSON Jackson and Maven,self.java -0,1416322993,6,Help with 50 state capitals program,self.java -17,1416320872,9,Can you safely serialize an object between java versions,self.java -2,1416313977,3,Nodeclipse Plugins List,nodeclipse.org -0,1416286021,5,Ninja JAX RS and Servlets,blog.ltgt.net -5,1416285351,28,Stack trace doesn t contain cause s stack trace Am I dreaming or what AFAIR exception stack traces used to contain child cause exception s stack traces too,self.java -0,1416283804,11,What s are the differences between a Set and an Array,self.java -6,1416280476,24,Was just shown this and even though I was explained to how it works all I can say is it s just like magic,xstream.codehaus.org -1,1416264872,7,JFrame slides in rather than just appearing,self.java -0,1416263262,8,Can someone please help with my Java program,self.java -11,1416260751,8,Is there anything like Flask framework for Java,self.java -2,1416255793,12,Help with making a final project for my class connect four game,self.java -1,1416251967,4,Java 8 0 Update,self.java -33,1416250708,4,JDK Dynamic Proxies explained,byteslounge.com -0,1416247314,4,Package JRE with Webstart,self.java -1,1416244336,3,Spring Boot Books,self.java -3,1416235792,6,Java only solution to Cache Busting,supposed.nl -7,1416218096,14,Java Weekly 46 Joda Time to Java8 new Apache Tamaya Java internals and more,thoughts-on-java.org -9,1416214352,4,PrimeFaces Elite Triple Release,blog.primefaces.org -9,1416212535,16,Latest NetBeans podcast discusses Java IDEs coding and how we can encourage more people into coding,blogs.oracle.com -18,1416209694,7,jcabi aspects Useful Java AOP AspectJ Aspects,aspects.jcabi.com -12,1416183119,5,Animated path morphing in JavaFX,tomsondev.bestsolution.at -10,1416179915,7,Java 8 s Date Time API Quickstart,blog.stackhunter.com -22,1416179517,8,Header based stateless token authentication for JAX RS,arjan-tijms.omnifaces.org -2,1416177752,14,SimpleFlatMapper 1 0 0b3 now with JPA column annotation support stream and iterator support,github.com -0,1416162424,20,Help installing java 7 for windows vista 32bit I can t find links anywhere or tutorials that aren t outdated,self.java -4,1416144644,6,Can you explain your system design,corejavainterviewquestions.com -3,1416138989,11,Little Known Things about the Eclipse Infocenter Language Switching 4 5,java.dzone.com -1,1416135007,17,Help Robotality beta test native desktop builds of its Java and libGDX based game Halfway on Steam,robotality.com -56,1416106872,8,Java is still the most popular language Woo,devsbuild.it -8,1416092625,5,What is an UnannType exactly,self.java -0,1416086874,9,Need help with reflecting an image in java eclipse,self.java -14,1416067168,6,Jetty 9 2 5 v20141112 Released,dev.eclipse.org -14,1416061009,7,HttpComponents Client 4 3 6 GA Released,mail-archives.apache.org -15,1416060785,5,Apache JMeter 2 12 released,mail-archives.apache.org -31,1416057349,7,Lambda2sql Convert Java 8 lambdas to SQL,github.com -14,1416050550,7,Dependency Injection with Dagger 2 Devoxx 2014,speakerdeck.com -0,1416048703,4,Java code output result,self.java -12,1416043992,8,Unorthodox Enterprise Practices presentation from Java ONE 2014,parleys.com -14,1416007682,10,TIL Java RegEx fails on some whitespaces SO link inside,self.java -0,1416001823,5,ICEfaces 4 0 Final Released,icesoft.org -12,1415987830,4,5 Evolving Docker Technologies,java.dzone.com -25,1415987728,6,Java 8 Collectors for Guava Collections,java.dzone.com -0,1415983694,5,Ajax for interacting with websites,self.java -10,1415977758,4,Java crawlers and scrapers,self.java -4,1415977567,3,Eclipse over Cloud,self.java -3,1415966246,7,using mysql with java on a lan,self.java -1,1415965262,8,IntelliJ IDEA 14 0 1 Update is Available,blog.jetbrains.com -4,1415962990,4,Typeclasses in Java 8,codepoetics.com -12,1415961520,14,What are the leading tools and frameworks for Java web applications development in 2014,self.java -3,1415960843,7,Has someone fiddled with the Currency JSR,self.java -7,1415959305,7,Java 8 s Date Time API Quickstart,blog.stackhunter.com -55,1415936509,24,Can someone explain Docker to me and whether its good for java backend servers and if so is it better than regular cloud VMs,self.java -11,1415933944,11,Whats a good idea for a program that s text based,self.java -5,1415928800,7,Object Oriented Programming and why is important,mfrias.info -11,1415901186,9,Does anybody of you use clean architecture in production,self.java -1,1415886314,9,Agile Smells Versus Agile Zombies in the Uncanny Valley,java.dzone.com -0,1415886200,10,Four Ways to Optimize Your Cluster With Tag Aware Sharding,java.dzone.com -61,1415845927,10,What is a good modern Java stack for web apps,self.java -25,1415844568,15,I m probably some of you s worst nightmare Can you help me not be,self.java -1,1415832099,11,Visualizing the class import network in 5 top open source projects,allthingsgraphed.com -7,1415821641,12,Do i need to learn native Hibernate or is JPA Hibernate enough,self.java -0,1415820550,22,DZone research SpringIntegration leads ESB space at 42 learn more about the 4 1 GA release now bit ly 1ECwXG4 java springio,spring.io -1,1415812860,8,Is there a non Eclipse analog to JIVE,cse.buffalo.edu -65,1415812022,18,NET core is now open source does r java have any opinions on how this will affect Java,blogs.msdn.com -4,1415802713,7,Websites apps for rust removal on java,self.java -0,1415793185,7,uniVocity parsers 1 2 0 is here,univocity.com -0,1415788645,8,What is the best way to lear Java,self.java -0,1415787857,7,Whitepaper Hazelcast for IBM for eXtremeScale users,hazelcast.com -22,1415781169,5,Java Annotated Monthly November 2014,blog.jetbrains.com -2,1415752071,9,Spring Framework Component Scanner in Executable jar not working,self.java -4,1415747581,12,Seeking information regarding getting a Java applet we ve developed digitally signed,self.java -1,1415739613,11,Top Java IDE Keyboard Shortcuts for Eclipse IntelliJ IDEA amp NetBeans,zeroturnaround.com -0,1415736684,6,Java Software Licensing API and Application,license4j.com -0,1415735958,3,License4J License Manager,community.spiceworks.com -8,1415735188,13,Learning Java Android Studio or Eclipse End goal is developing apps for Android,self.java -23,1415734878,11,Should I learn Java EE 7 or Spring Framework 4 x,self.java -11,1415732508,18,eBay Connecting Buyers and Sellers Globally via JSF and PrimeFaces handling more than 2 million visits per day,parleys.com -33,1415725485,6,The Complete Java Phone Interview Guide,self.java -2,1415723127,5,Netbeans IDE for Spring development,self.java -0,1415722919,8,hey guys can you check my code out,self.java -7,1415722386,9,Why would you use Spring MVC and AngularJS together,self.java -1,1415721700,3,OpenJDK vs oracle,self.java -4,1415721623,7,PriorityQueue and mutable item behavior Freenode java,javachannel.org -5,1415711463,4,Eclipse exit code 13,self.java -5,1415708774,9,EditBox Eclipse plugin highlighter of the source code background,editbox.sourceforge.net -78,1415707035,14,Jodd is set of Java micro frameworks tools and utilities under 1 5 MB,jodd.org -9,1415702632,8,An Entity Modelling Strategy for Scaling Optimistic Locking,java.dzone.com -6,1415702462,8,Testing HTTPS Connections with Apache HttpClient 4 2,java.dzone.com -0,1415674518,10,JRE8 Required Need some testing for this UI Based program,self.java -1,1415645315,6,Catching and implementing exceptions Freenode java,javachannel.org -2,1415645205,4,Update My TicTacToe game,self.java -21,1415642558,6,Tutorial sites for creating actual programs,self.java -4,1415615169,8,grant codeBase in java policy not taking effect,self.java -0,1415604487,24,Can someone explain this better for me I already downloaded the most recent version of java and what is the search field too broad,imgur.com -17,1415597956,10,Building Microservices with Spring Boot and Apache Thrift Part 1,java.dzone.com -8,1415597179,6,Missing Stack Traces for Repeated Exceptions,java.dzone.com -0,1415583622,10,Having trouble building a gridpane that changes depending on value,self.java -0,1415571052,15,java IntelliJIDEA 14 cannot run Spring Project with Tomcat but with Eclipse it runs smoothly,stackoverflow.com -1,1415564383,10,How to install and use the Datumbox Machine Learning Framework,blog.datumbox.com -4,1415548107,5,Just finished my TicTacToe application,self.java -0,1415531939,9,How can I install java without the toolbar crap,self.java -2,1415527226,15,Is there a Java IDE that can use a remote JDK JRE for each project,self.java -12,1415524851,5,Famous Java Apps UI solutions,self.java -10,1415515754,4,Any java bedtime videos,self.java -9,1415458064,7,OmniFaces 2 0 RC1 available for testing,arjan-tijms.omnifaces.org -0,1415455654,6,LWJGL Display update slowing down application,stackoverflow.com -57,1415453279,15,Conducted an interview for a senior Java developer where my questions too hard see inside,self.java -19,1415447424,7,Java Functions Every Java FunctionalInterface you want,github.com -50,1415403380,6,Short and sweet Java Docker tutorial,blog.giantswarm.io -28,1415395327,5,Java 8 for Financial Services,infoq.com -1,1415387850,5,Tomcat standalone vs Installation Windows,self.java -1,1415387170,12,JSF Versus JSP Which One Fits Your CRUD Application Needs Part 2,java.dzone.com -2,1415379661,18,Trying to get Java 7 on Mac no 1 7 0 jdk in Java Virtual Machines folder Halp,self.java -2,1415346242,24,How can I use printStackTrace from a Throwable or getStackTrace from Thread to see a running thread s called methods AND the initializers constructors,self.java -10,1415340528,4,Cool Raspberry Pi Ideas,self.java -10,1415331423,8,So I want to build an IRC client,self.java -1,1415312677,8,Create war with version but explode without it,self.java -5,1415301449,9,Providing alternatives for JSF 2 3 s injected artifacts,jdevelopment.nl -14,1415295146,3,JRebel 6 Released,zeroturnaround.com -3,1415286082,5,Event Driven Updates in JSF,github.com -2,1415284784,6,Dev of the Week Markus Eisele,java.dzone.com -47,1415284077,5,Better nulls in Java 10,blog.joda.org -8,1415283026,9,Live Webinar What s New in IntelliJ IDEA 14,blog.jetbrains.com -6,1415278452,8,Can someone ELI5 the hashcode method for me,self.java -13,1415273618,11,The difference between runtime and checked exceptions and using them properly,javachannel.org -6,1415272655,5,Java socket via proxy server,self.java -5,1415240966,8,Want to make something visual Looking for advice,self.java -7,1415239143,12,EasyCriteria has evolved to UaiCriteria New name and more features for JPA,uaihebert.com -78,1415228811,6,Why is dynamic typing so popular,self.java -6,1415228003,10,Hibernate doesn t use PostgreSQL sequence to generate primary key,self.java -3,1415225851,5,On Java Generics and Erasure,techblog.bozho.net -2,1415209015,7,Question Tomcat parallel deployment or hot deployment,self.java -2,1415206580,6,Injecting dependencies for scalability with Hazelcast,blog.hazelcast.com -3,1415205019,12,Microservices with the Spring Cloud 1 0 0M2 release train of projects,spring.io -1,1415202673,7,Looking for a Graph DB with OGM,self.java -4,1415197236,3,Maven with tomcat8,self.java -88,1415190437,5,IntelliJ IDEA 14 is Released,blog.jetbrains.com -2,1415189313,11,Censum 2 0 0 with Java 8 Support and G1 Analysis,jclarity.com -4,1415186395,12,Best or most widely used libraries that can do HMAC SHA1 encoding,self.java -3,1415184506,8,Building Bootful UIs with Spring Boot and Vaadin,java.dzone.com -0,1415184107,11,Calculate amp Find All Possible Combinations of an Array Using Java,hmkcode.com -6,1415183025,7,Infinispan 7 0 0 Final is out,blog.infinispan.org -48,1415180445,10,New fast hash Java implementations Murmur3 3 7 GB s,github.com -9,1415180157,7,Valhalla Aggressive unboxing of values status update,mail.openjdk.java.net -2,1415179996,11,Is there more to csv that just a comma separated String,self.java -0,1415156335,9,Whats Wrong Returns must return a type of double,self.java -0,1415154722,10,Help with multidimensional arrays no response in R programming help,self.java -0,1415147427,10,Why are conditional statements able to be formatted like this,self.java -8,1415142420,9,Developing WebGL Globe Apps in Java with Cesium GWT,cesiumjs.org -4,1415141432,6,Applying Java Code Conventions Using Walkmod,methodsandtools.com -12,1415125851,5,Java 8 Streams Micro Katas,technologyconversations.com -0,1415117511,3,Java blocks everything,self.java -0,1415116345,10,How to disambiguate Spring Bean references with the Qualifier Annotation,spring.io -54,1415114511,12,Beyond Thread Pools Java Concurrency is Not as Bad as You Think,takipioncode.com -0,1415113314,22,What s the hype about RESTful services Its the same thing as servlets which we have been using since the stone age,self.java -2,1415108075,17,Should i do a masters in IT I have a lot of experience as a Java Developer,self.java -18,1415104685,7,Spring Caching Abstraction and Google Guava Cache,java.dzone.com -0,1415104486,7,Provisioning with Ansible Within the Vagrant Guest,java.dzone.com -9,1415092952,7,Object Oriented Wrapper of Amazon S3 SDK,github.com -17,1415081822,6,Builder Pattern with Java 8 Lambdas,benjiweber.co.uk -4,1415076639,5,Help with intellij and github,self.java -0,1415068262,8,is there a solution manual for imagine java,self.java -1,1415066358,7,What Happened to the Spring MVC tutorial,self.java -0,1415065141,7,Question Deploying app to Tomcat vs WebSphere,self.java -1,1415056462,4,What can I expect,self.java -0,1415050470,13,Can anyone point me in the right direction for open source java projects,self.java -0,1415042802,4,Question about while loops,self.java -1,1415037852,6,Code style Where to put Override,self.java -2,1415037181,5,Practical uses for short type,self.java -3,1414993027,13,Where can I learn the basics of logging and Log4J in under 2hours,self.java -5,1414989254,2,JPA Joins,self.java -0,1414973063,30,I could use some help with a program I m writing for school I m not getting any errors on compile but something goes wrong when trying to get input,self.java -1,1414961642,13,Tried to implement the example but I got the error in the title,self.java -26,1414957117,17,Java Devs have any of you make the switch to functional programming Scala x post r learnprogramming,self.java -0,1414950242,4,Help with Java Error,self.java -4,1414950238,7,Rationale for new keyword being the language,self.java -17,1414944045,7,IntelliJ IDEA 14 RC 2 Looking Good,java.dzone.com -0,1414943902,5,Sorting Descending order Java Map,stackoverflow.com -20,1414938938,12,F X yz An open source JavaFX 3D Visualization and Component Library,birdasaur.github.io -7,1414925477,6,Apache Camel 2 13 3 Released,mail-archives.apache.org -0,1414919309,8,Looking for a partner to maintain WhateverOrigin org,self.java -30,1414893712,15,I want to get started learning web development but keep hearing that JSP is dying,self.java -8,1414882909,6,Are you doing the polygot boogie,self.java -7,1414864968,15,Turn a Client Server Socket chat To A Client Server SSl socket chat for security,self.java -7,1414849080,4,Hibernate collections optimistic locking,vladmihalcea.com -15,1414848662,11,How to Setup Custom SSLSocketFactory s TrustManager per Each URL Connection,java.dzone.com -5,1414848431,8,Eclipse shines light on cloud based app dev,javaworld.com -10,1414804811,7,Java EE process cycles and server availability,arjan-tijms.omnifaces.org -11,1414791963,15,Spring Integration 4 1 s Java DSL RC1 introduces deeper Java 8 Method Scope Functions,spring.io -13,1414783075,7,Using stability patterns in a RESTful architecture,javaworld.com -5,1414769137,6,writejava4me Easy code generation for Java,github.com -0,1414767199,7,Grails RAD development for UI is lacking,self.java -4,1414766584,12,A good servlet jsp book enough to move to spring hibernate etc,self.java -17,1414764704,12,Mysterious new Java EE 6 server shows up at Oracle certification pages,jdevelopment.nl -1,1414763746,7,Multi Tenancy with Java EE and JBoss,lambda-et-al.eu -29,1414754776,9,Zero allocation thoroughly tested implementation of CityHash64 for Java,github.com -9,1414735114,21,Java 8 Collect how to use the collect operation over Java 8 streams in order to implement functional style programming reductions,byteslounge.com -1,1414717439,18,Inexperienced Java programmer Do you guys think I could wing this and be able to pull it off,self.java -1,1414716545,7,When do I connect to a database,self.java -8,1414705482,7,Apache Maven Assembly Plugin 2 5 Released,maven.40175.n5.nabble.com -99,1414704097,14,slides Java 8 The good parts A lean amp comprehensive catchup for experienced developers,bentolor.github.io -10,1414702947,5,Netty 4 0 24 Final,netty.io -0,1414698050,4,Problems with Cmd Prompt,self.java -1,1414697909,12,any clever ways to ensure code coverage for XSLT in my application,self.java -1,1414696135,8,Question Java web development and hiding source code,self.java -6,1414684397,10,JaveLink Java s MAVLink implementation x post from r multicopters,github.com -3,1414680505,15,How would you go about making a program that allows multiple users to log in,self.java -41,1414667791,4,W3C Finalizes HTML5 Standard,java.dzone.com -0,1414666836,14,Idea for Java Simplified value range syntax if 0 lt idx lt myList size,self.java -0,1414661854,5,A boon to Java developers,self.java -1,1414635813,8,About to begin upgrading Hibernate versions lessons learned,self.java -25,1414634544,11,Java Robot Class I designed a Texas Hold em Poker Bot,self.java -5,1414629458,7,Why the JVM Development Tools Market Rocks,zeroturnaround.com -0,1414622159,4,Legacy Java Data Risk,waratek.com -8,1414608219,10,What are your opinions on Apache Wink Jersey and RestEasy,self.java -2,1414608164,4,Java 8u20 security question,self.java -9,1414606456,7,RichFaces 4 5 0 Final Release Announcement,bleathem.ca -0,1414604696,4,Help Object Oriented Programming,self.java -35,1414591453,7,RoboVM beckons Java 8 programmers to iOS,infoworld.com -4,1414575215,5,JavaOne 2014 Day Four Notes,weblogs.java.net -11,1414572714,9,Hazelcast 3 0 An Interview with Founder Talip Ozturk,blog.hazelcast.com -0,1414559615,6,When will Eclipse focus on UI,self.java -0,1414557287,5,Writing parameterized tests with TestNG,publicstaticvoidma.in -14,1414540166,4,ProGuard Real World Example,alexeyshmalko.com -0,1414531919,5,Know some Java What now,self.java -11,1414522614,17,I have hours a day I can just read not program any suggestions on content to study,self.java -1,1414515746,9,Spring Boot Play Grails analysis for RestFul Backend Chat,self.java -0,1414513138,5,Java student question about loops,self.java -1,1414509962,6,Looking for comprehensive java book s,self.java -8,1414509248,13,Why are you learning Java if you already know PHP C or RoR,self.java -7,1414490985,11,Develop and manage Java Apps with IBM Bluemix and DevOps Services,ibm.com -7,1414488042,10,Firebird Conference 2014 presentations and source code Jaybird and Jooq,firebirdnews.org -4,1414463123,5,Complete Beginner Help Needed Please,self.java -0,1414459585,4,Help with JSF Primefaces,self.java -1,1414453574,7,Can anything slow the Java 8 train,techrepublic.com -0,1414444710,7,Want to learn but not from scratch,self.java -5,1414437260,4,Multiline Strings in Java,github.com -1,1414433714,10,What to call a group of Repository Entity and Query,self.java -17,1414433261,13,Spring Integration 4 1 RC1 introduces web socket JDK8 support and much more,spring.io -48,1414431254,15,350 Developers Voted for Features in Java 9 Have They Decided the Same as Oracle,takipioncode.com -1,1414421506,14,Who are some notable people using JVM as its backend for their personal website,self.java -12,1414421116,10,Spring Security and AngularJS Authentication and Authorization a Whitelisting Approach,youtube.com -0,1414416837,10,Can someone help make a Java based installer for me,self.java -0,1414412103,16,What s the easiest for a program to check if a typed number is a prime,self.java -5,1414411242,7,How to get into Java Web development,self.java -1,1414405153,6,Spring Tool Suite web application tutorials,self.java -1,1414400073,13,JCDP a lib to print colored messages or debug messages on a console,diogonunes.com -3,1414391234,3,PrimeFaces Mobile DataTable,blog.primefaces.org -0,1414370956,6,Eclipse not working after Java update,self.java -2,1414368248,8,How would you format this method method signature,self.java -0,1414366880,7,Must have keyboard shortcuts for java programming,self.java -5,1414366320,9,What is the best way to learn java EE,self.java -0,1414361682,18,How might I go about making an instant messenger GUI similar to the gmail or Facebook IM bar,self.java -83,1414356987,11,Bill Gates answers questions about Java during a deposition 1998 video,youtube.com -1,1414356407,1,Exercises,self.java -2,1414355954,12,Struggling to understand enqueue in a linked list implementation of a queue,self.java -2,1414351241,3,JBoss rules help,self.java -1,1414346957,8,Eclipse isn t interfacing with the JavaFX project,self.java -0,1414326655,6,HOW to turn off eclipse tips,self.java -17,1414322051,5,Apache Log4j 2 1 released,mail-archives.apache.org -6,1414321187,5,Using a webcam with Java,self.java -9,1414300408,26,Can you please provide me requirements for a good Spring Hibernate Project that makes me use and learn Spring Core Security Web Services MVC and Hibernate,self.java -10,1414290938,8,What are some alternatives to DAO for JPA,self.java -0,1414282599,15,What libraries can give me a background application that can count keystrokes NOT A KEYLOGGER,self.java -2,1414280530,12,How efficient is Eclipse in dealing with deleting files and unnecessary information,self.java -3,1414270609,6,Before I get started on GUI,self.java -5,1414261835,3,Spring Tutorial Removed,self.java -10,1414256557,14,show r java a request router for java 8 comments and critics are appreciated,github.com -33,1414256339,7,What program can I make for practice,self.java -7,1414225195,20,Which part component of the JVM is responsible for allocating memory for objects when a constructor is invoked via new,self.java -6,1414222329,2,Jsoup help,self.java -13,1414213867,4,Is this bad practice,self.java -0,1414199754,20,How do I make it so other squares move independently without me having to hold a key on the keyboard,self.java -42,1414191029,6,JEP 218 Generics over Primitive Types,openjdk.java.net -0,1414183090,27,How do I get rid of this It s just annoying and makes what could be a fast line take twice as long as it should Eclipse,imgur.com -7,1414172829,10,Working with Java 7 security requirements for RIA hurdles encountered,self.java -0,1414172457,4,Java Boids Swarm intelligence,rawcoders.com -0,1414171835,4,java constructor overloading doubt,self.java -0,1414159627,5,Java A Beginner s Introduction,rawcoders.com -17,1414151605,12,Should I learn JSF Does it work with JQuery Bootstrap style design,self.java -6,1414147033,15,What is your favorite book exhaustive blog post about the new stuff from Java 8,self.java -0,1414143275,7,Addison Wesley eBook Processing XML with Java,freecomputerbooks.pickatutorial.com -8,1414138837,7,JSF 2 3 changes late October update,weblogs.java.net -1,1414130000,6,Spring AMQP 1 4 RC1 Released,spring.io -0,1414115881,3,help with JSON,self.java -0,1414112096,6,Good introduction guide references for Eclipse,self.java -55,1414109437,13,List of java encryption method examples with explanations on how why they work,cs.saddleback.edu -1,1414098210,4,Environment Variable in Tomcat,self.java -0,1414097458,5,Can you help with this,self.java -2,1414094291,7,HttpComponents Core 4 3 3 GA released,markmail.org -14,1414090594,5,High performance libraries in Java,javacodegeeks.com -3,1414086944,8,Tool for generating JUnit tests for Android Free,testdroid.com -0,1414083952,14,Learning Java Don t know why my teacher added an extra Scanner please explain,self.java -0,1414083027,13,Analyzing tricks competitors play making the claim that list price comparisons are misleading,planet.jboss.org -4,1414076916,10,Seeking advice on what to study after learning Core Java,self.java -4,1414076159,14,Configuring amp Running Specific Methods in Maven Projects in NetBeans IDE Geertjan s Blog,blogs.oracle.com -0,1414076082,5,Question Computing for kinetic energy,self.java -40,1414073628,12,Coming to Java from Python frustrated Any tips for connecting the dots,self.java -1,1414052045,6,Experiences of development using Virtualbox Linux,self.java -12,1414051357,4,Java Sleight of Hand,infoq.com -1,1414046236,10,How can I create a panel as a new frame,self.java -2,1414040701,7,What is the C equivalent of JEE,self.java -0,1414029547,17,I m receiving an error message every time I attempt to install JDK Details in the post,self.java -0,1414027598,11,create a stream builder of a given type other than Object,self.java -0,1414018458,6,Arrays While could use some help,self.java -0,1414007637,5,Which IDE IntelliJ or Eclipse,self.java -11,1414007309,5,Csv Parser Performance comparaison extended,self.java -0,1414005380,1,collaboration,self.java -0,1414002363,5,How to Manage pf Rules,prolificprogrammer.com -0,1413999581,9,Syntax error on token else delete this token ERROR,self.java -3,1413997232,8,Want to help write documentation for Spark Framework,self.java -0,1413996692,8,Need to enhance best practices in web frameworks,self.java -13,1413995892,9,CDI 2 0 first Face to face meeting feedback,cdi-spec.org -2,1413976741,2,Android develpment,self.java -0,1413971073,2,Storing SQL,self.java -2,1413967970,9,Java Error Tracker StackHunter v1 2 Available for Download,blog.stackhunter.com -3,1413941714,8,A new way to avoid SQL in Java,dbvolution.gregs.co.nz -5,1413930287,27,Can anyone recommend a good Java tutorial series video online class book that will have me build something from scratch all the way to a finished product,self.java -2,1413929999,2,Security settings,self.java -1,1413923712,5,MinuteProject Release 0 8 8,minuteproject.wikispaces.com -4,1413920694,9,ProjectHierarchy tries to reinvent Java using a NoDB database,projecthierarchy.org -2,1413916519,8,I have a bit of a installation conundrum,self.java -6,1413911027,12,A new free amp state of the art natural language processing library,blog.dlib.net -58,1413902021,7,Developers Are Adopting Java 8 In Droves,readwrite.com -19,1413900972,9,Why yet another MVC framework in Java EE 8,blogs.oracle.com -2,1413898079,7,Product for automatic implementation of web service,self.java -13,1413891318,7,Java dev and deployment operating systems choice,self.java -0,1413873490,9,How to install ask com toolbar on a smartcard,self.java -15,1413853433,5,Java Annotated Monthly October 2014,blog.jetbrains.com -28,1413828258,12,I figured out why Java updates never seem to work on Chrome,self.java -1,1413821267,4,Java Tutorial Through Katas,technologyconversations.com -6,1413815689,17,Java Developer Survey Gives Current Stats on Java 8 Apache Spark Docker Container Usage by Java Devs,java.dzone.com -0,1413812501,2,Priority queue,self.java -31,1413806800,9,Supercharged jstack How to Debug Your Servers at 100mph,takipioncode.com -0,1413798810,5,Java Console in gui form,self.java -7,1413796638,11,Java Weekly 16 Named Parameters Java Batch JavaOne Recordings and more,thoughts-on-java.org -3,1413775916,7,Which environment to use for JSF project,self.java -18,1413755589,9,Java oriented tech interview coming up what to expect,self.java -0,1413749978,5,Little help with java applets,self.java -5,1413747431,7,question about the rules of this subreddit,self.java -14,1413740831,6,Functional Programming with Java 8 Functions,blog.informatech.cr -5,1413723727,7,Parsing and Translating Java 8 lambda expressions,stackoverflow.com -80,1413717934,5,Why does everyone hate Eclipse,self.java -17,1413717811,9,New open source Machine Learning Framework written in Java,blog.datumbox.com -1,1413701007,7,trouble getting started with libGDX JAVA_HOME error,self.java -1,1413693019,12,A method annotation based contrast with bean annotation validator inspired by JUnit,github.com -0,1413686435,9,Ask Toolbar Bundle How is this still a thing,self.java -17,1413681808,4,Java Bytecode Viewer Decompiler,github.com -1,1413681183,11,Java Castor How to Generate an Attribute with an Embedded Colon,self.java -30,1413672976,13,How current are the Spring frameworks How do they compare to the alternatives,self.java -1,1413666549,11,JSF 2 3 Servlet 4 0 EG JavaOne meeting audio transcript,java.net -1,1413666526,11,what am I doing wrong with sorting an array of Objects,self.java -0,1413660987,3,CSV Parsers Comparison,github.com -5,1413653247,8,How to account for multiple attributes in XML,self.java -4,1413635819,14,Maven plugin for simple releasing It only updates automatically pom version as be needed,github.com -0,1413635725,7,Apache HttpComponents HttpAsyncClient 4 1 beta1 Released,mail-archives.apache.org -0,1413611764,11,Need help with putting all methods in one world frame turtle,self.java -43,1413611312,6,First JavaOne 2014 talks now available,parleys.com -5,1413597902,17,JRE 7 update 71 72 no longer honors auto configuration script in IE Anyone else seeing this,self.java -1,1413576705,3,Head First Spring,self.java -0,1413574434,22,so im going to start learning java and i want to make games like notch does any idea where i should start,self.java -2,1413570438,9,JSF Tip 63 Another way to override a renderer,weblogs.java.net -1,1413568549,3,JSF and Ajax,self.java -4,1413563944,6,Java Tutorial Through Katas Mars Rover,technologyconversations.com -0,1413560983,19,First time writing a blog post Decided to do it on Spring Batch Let me know what you think,makeandbuild.com -0,1413560041,6,Matching Latin characters with regular expressions,mscharhag.com -0,1413559769,3,Groovier Groovy DSL,eclecticlogic.com -5,1413554092,6,A list of Dependency Injection framework,self.java -0,1413552603,14,Log DEBUG level messages of the flow only if there is an exception error,self.java -0,1413515852,8,Having trouble understanding how to get this loop,self.java -2,1413515729,7,Simple component based full stack web framework,self.java -0,1413502555,8,How do I create a Node in java,self.java -2,1413497630,5,Java interfacing with roblox questions,self.java -3,1413493560,7,Setting up lwjgl for cross platform usage,stackoverflow.com -14,1413492590,11,What is the difference between an Interface and an Abstract class,self.java -0,1413485712,10,Can you please give examples of well known Java applications,self.java -6,1413482278,7,RichFaces 4 5 0 CR2 Release Announcement,bleathem.ca -0,1413463932,3,ArrayList advice please,self.java -1,1413441056,8,Having trouble with running code in code runner,self.java -44,1413432949,18,IDEs vs Build Tools How Eclipse IntelliJ IDEA amp NetBeans users work with Maven Ant SBT amp Gradle,zeroturnaround.com -11,1413424742,21,Gatling Load testing tool for analyzing and measuring the performance of a variety of services with a focus on web applications,gatling.io -0,1413415795,4,Help using Netbeans IDE,self.java -35,1413414735,6,Why should fields be kept private,self.java -3,1413414661,7,Thinking of porting some libraries to Java,self.java -6,1413405067,6,Maven Compiler Plugin 3 2 Released,maven.40175.n5.nabble.com -3,1413400849,9,Add version to war builds with jenkins or ant,self.java -0,1413400224,6,Does anybody else hate Eclipse rant,self.java -0,1413399249,14,Oracle keeps telling us that JSP is dead So what is a good alternative,self.java -1,1413390412,11,DAE find it difficult to add JPA support to your projects,self.java -0,1413387457,11,How to use MouseListener Interface to handle Mouse Events in Java,thecomputerstudents.com -13,1413363041,5,JSF 2 3 Inject ExternalContext,weblogs.java.net -17,1413346920,9,Difference between Java CPU 7u71 and PSU 7u72 release,blogs.oracle.com -0,1413332082,6,Interfacts abstract oop uncertain use case,self.java -11,1413327464,3,Little java project,self.java -0,1413311833,4,Need help learning Java,self.java -11,1413306379,5,OAuth 2 0 JASPIC implementation,trajano.net -76,1413296732,22,Java SE 8 is ready to debut as the default on Java com Java 7 SE Update 71 amp 72 Release today,blogs.oracle.com -18,1413285233,10,Looking for somewhere to learn ASM bytecode modification with Examples,self.java -0,1413284905,12,How do I block letters when I m doing a console calculator,self.java -6,1413245949,2,Collaboration project,self.java -10,1413236988,7,Large amount of resources about Spring Security,spring-security.zeef.com -11,1413228170,7,50 New Features of Java EE 7,java-tv.com -15,1413212918,6,Calling Java 8 functions from Scala,michaelpollmeier.com -2,1413207541,7,Gradle GORM Map to many performance question,self.java -3,1413201057,24,Are there other interpreters REPLs live evaluators like what is in Light Table for Python and JavaScript but for Java x post r learnprogramming,self.java -0,1413198613,10,View Source Code of A Java Class File 100 Working,frd4.com -8,1413197008,10,Java Weekly 15 JavaOne Lambdas authentication HTTP 2 and more,thoughts-on-java.org -3,1413189662,11,The road to Java EE 7 Liberty EE 7 October update,developer.ibm.com -60,1413178116,9,What exactly does IntelliJ do better than Netbeans Eclipse,self.java -0,1413170128,4,Length of an object,self.java -1,1413154358,7,Injecting domain objects instead of infrastructure components,mscharhag.com -0,1413145333,4,XWiki 6 2 1,xwiki.org -3,1413143561,8,Apache Maven WAR Plugin Version 2 5 Released,maven.40175.n5.nabble.com -3,1413133012,7,Any extensible Java based Cellular Automata engines,self.java -3,1413128323,8,JXTN LINQ extensions to Java 8 collections API,github.com -0,1413128163,2,Android Logic,self.java -13,1413119514,6,wollsmoth The unpleasantly pleasant Java obfuscator,bitbucket.org -73,1413114475,22,Do you know any fun projects in the open sorce that is written in Java and needs a helping pair of hands,self.java -0,1413111169,6,You shouldn t follow rules blindly,blog.frankel.ch -15,1413101072,12,Show r java Implementation of value based classes for JDKs 1 7,github.com -0,1413076077,3,Simple Android Question,self.java -36,1413056477,9,Spark Java A small and great Java web framework,sparkjava.com -6,1413043063,7,Single page menu with Spring MVC JSP,self.java -0,1413041316,6,Javamex Java tutorials and performance information,javamex.com -6,1413040269,6,Creating a simple JASPIC auth module,trajano.net -8,1413027572,6,The Heroes of Java Dan Allen,blog.eisele.net -1,1413024355,2,Dependency mediator,vongosling.github.io -43,1413022453,5,DL4J Deep Learning for Java,deeplearning4j.org -20,1413019655,8,Apache Commons Compress 1 9 Released 7zip fixes,mail-archives.apache.org -12,1413019584,6,Apache Tomcat 7 0 56 released,mail-archives.apache.org -5,1413018630,14,Xuggler easy way to uncompress modify and re compress any media file or stream,xuggle.com -0,1412994577,13,uniVocity parsers 1 1 0 released with TSV CSV and Fixed Width support,univocity.com -12,1412993462,8,Java threading library Threadly 3 0 0 released,self.java -1,1412991547,14,How can I include a library in my assignments and still have it compile,self.java -36,1412963281,10,Video JavaOne Keynote about Java 8 Java 9 and beyond,medianetwork.oracle.com -0,1412955233,9,My first very self made programm in java German,puu.sh -5,1412952690,7,Java chat app with sockets need help,self.java -6,1412951997,4,java net MulticastSocket Example,examples.javacodegeeks.com -2,1412950988,12,Nginx Clojure v0 2 6 released Fix bugs of dynamic proxying balancer,self.java -12,1412930968,4,GlassFish Tools for Luna,blogs.oracle.com -8,1412929605,6,looking for web mvc platform advice,self.java -2,1412924675,14,Bayou HttpServer v0 9 7 release supporting CONNECT method for acting as HTTPS proxy,bayou.io -0,1412904770,5,Import an entire classes methods,self.java -0,1412902229,5,Need help with switch method,self.java -65,1412892018,9,Google asks Supreme Court to decide Android copyright case,javaworld.com -1,1412879608,4,What is Typesafe Activator,typesafe.com -6,1412879484,8,How A Major Bank Hacked Its Java Security,darkreading.com -6,1412874130,6,Question about JBoss and Unit testing,self.java -41,1412865336,19,People that own Effective Java by Joshua Bloch How do you apply concepts to the actual code you write,self.java -0,1412860423,11,What is the simple way to repeat a string in Java,stackoverflow.com -6,1412853800,18,Fresh unzip of Eclipse 4 4 1 throws exception right away release happened without even starting it once,bugs.eclipse.org -14,1412840971,8,Who s using RoboVM x post r programming,blog.robovm.org -1,1412821357,11,java output to file problem Outputting chinese characters and inexplicable symbols,self.java -83,1412812247,9,3 Ways IBM is bringing GPU Computing to Java,devblogs.nvidia.com -8,1412807501,8,Infinispan 7 0 0 Candidate Release 1 Available,blog.infinispan.org -0,1412801448,3,Graphics in java,self.java -0,1412789648,15,Using Java 8 s Date and Time API for delaying failed tests after a refactoring,dzone.com -27,1412787682,11,I Wish Other Text Programs word Utilized Some IDE based features,self.java -16,1412786902,10,Interview with Java Stalwart Peter Lawrey Chronicle Stackoverflow and Performance,jclarity.com -10,1412786580,8,JavaOne Hazelcast Announces JCache Support amp JCP Run,infoq.com -1,1412777731,7,Code Snippet Mail Approvals with Spring Integration,blog.techdev.de -4,1412776337,6,Digraphs Dags and Trees in Java,stevewedig.com -0,1412774068,13,New to Java Taking AP Computer Science and I m lost Please help,self.java -1,1412756796,5,JavaOne 2014 Day One Notes,weblogs.java.net -13,1412750802,8,Alertify4J Better alerts and notifications for Java applications,github.com -1,1412735070,11,Is there a way to do anonymous arrays in Java 8,self.java -0,1412734908,21,New to this subreddit currently in an OOP course which focuses on Java Having a bit of a hangup help appreciated,self.java -2,1412726746,3,Java Development Environments,self.java -10,1412713611,12,SimpleFlatMapper 0 9 8 released Fast lightweight mapping from database and csv,github.com -3,1412684008,13,What is the best technique to learn Data Structures and Algorithms in Java,self.java -21,1412670874,9,What would your typical Java developer CV look like,self.java -15,1412670424,6,Weld 3 0 0 Alpha1 released,weld.cdi-spec.org -9,1412667441,4,PrimeFaces 5 1 Released,blog.primefaces.org -0,1412660249,1,NullPointerException,self.java -0,1412653122,8,Can I generate int variables with a loop,self.java -14,1412649793,9,What are some must learn libraries for game dev,self.java -0,1412633424,2,College project,self.java -0,1412614047,3,Black jack help,self.java -0,1412607588,9,Does setLenient false do anything when calling simpleDateFormat format,self.java -2,1412607532,9,Questions about FX based kiosks x post r javafx,self.java -11,1412589467,9,Thread pool configuration for inbound resource adapters on TomEE,robertpanzer.github.io -9,1412578751,9,j u Random sampling How to introduce targeted bias,self.java -2,1412554061,7,JSP Java and sending data on click,self.java -6,1412545147,8,should you concentrate on just one programming language,self.java -0,1412526151,9,Trouble with math arithmetic operators and the percent operator,self.java -0,1412524295,7,Apache XML Graphics Commons 2 0 Released,mail-archives.apache.org -35,1412520579,11,Best NLP Natural Language Processing Solution in Java preferrably Open Source,self.java -0,1412520201,45,I have created a very basic digital diary there is still a lot to adjust but I decided to release it today I did this to see my skills at programming in Java but it seems that I still need to work on my GUI,filedropper.com -7,1412508010,7,RichFaces 4 5 0 CR1 Release Announcement,bleathem.ca -0,1412504897,16,What s the difference between a private method and a public method defined within a class,self.java -6,1412503701,16,Data from 2 or more database tables to one Java object JdbcTemplate How to implement it,self.java -0,1412495904,12,List of Must Knows and ToDos When Migrating To IntelliJ From Eclipse,sdchang.com -3,1412491622,4,Checkstyle errors in Java,self.java -1,1412486148,9,Re Java Co op Interview Showing off Project Code,self.java -2,1412474057,13,Benchmarking every working CSV parser for Java in existence x post from programming,github.com -6,1412459159,5,Which weaknesses does JSF have,self.java -1,1412456453,10,Does the java compiler javac optimize a large boolean array,self.java -9,1412451901,8,REST API Visualizer for any java REST frameworks,apivisualizer.cuubez.com -74,1412434905,17,What should a programmer really know and or have experienced before attaining the title senior software engineer,self.java -8,1412431363,8,Using Raygun and Proguard There and Back again,spacecowboyrocketcompany.com -3,1412430393,14,Can you provide an example where you used Adapter Design Pattern in your project,self.java -0,1412426725,8,do i really need java on Windows 7,self.java -1,1412425675,9,How to download Eclipse for Mac OSX 10 6,self.java -0,1412410556,8,lisztomania Get percentage based sub lists of Lists,github.com -23,1412409254,9,Announcing Jetty 7 and Jetty 8 End of Life,jetty.4.x6.nabble.com -0,1412392759,19,Newbie Is there an animation tool to display how your Java code works as it executes A visual compiler,self.java -0,1412383868,6,Help with making a simple table,self.java -21,1412358367,10,Can anyone recommend a good IDE for a beginner programmer,self.java -1,1412357008,12,Anyone know a great Java String parsing Library for extracting Image Links,self.java -0,1412350973,10,Detecting Roots in a Graph and a challenge Freenode java,javachannel.org -4,1412350099,11,Rant Is Java community any good Better than PHP at least,self.java -0,1412348944,15,Writing a program that shows busy or available status for techs on a local network,self.java -1,1412340297,6,Help with time zones and conversions,self.java -2,1412327504,7,O R like mapping to Hashmaps framework,self.java -0,1412324100,17,Migrating 3 million cities into your database in around a minute with the uniVocity data integration framework,github.com -35,1412321867,18,Are you looking for a Xml free open source Java rules engine Take a look at Easy Rules,easyrules.org -7,1412296052,6,Reducing the frequency of GC pauses,plumbr.eu -18,1412288623,20,When importing assets to Java why not just import the all inclusive asterisk everytime Is it to save memory space,self.java -0,1412274647,1,Arrays,self.java -3,1412271365,6,Architecting a servlet app for scalability,self.java -25,1412265985,8,CERT Java Coding Guidelines Now Available Free Online,securecoding.cert.org -28,1412265691,21,Java SE 8 Update 20 no Medium security setting anymore Applies to RIAs unsigned applications that request all permissions are blocked,java.com -12,1412262005,15,CDI Properties on GitHub Leverage resource bundle management in your CDI enabled Java EE application,github.com -7,1412253665,6,Classpath scanning with Spring Eclectic Logic,eclecticlogic.com -10,1412248881,6,The path to cdi 2 0,slideshare.net -1,1412247746,14,Im missing something very simple with Maven and it making me rage now help,self.java -13,1412224412,6,Apache Tomcat 8 0 14 available,mail-archives.apache.org -3,1412224376,7,Apache Maven Changes Plugin 2 11 Released,maven.40175.n5.nabble.com -1,1412211000,3,Casting objects explicit,self.java -0,1412194743,53,Noob After only a 2 hours lesson in school with Java I managed to make a fully functioning bot in less than 15 minutes qhen I got home an hour later without any help Java really is an easy language This year is going to be so much fun X post r pcmasterrace,i.imgur.com -1,1412193467,9,Are there any free resources to program Android apps,self.java -2,1412193105,20,I have trouble being purely object oriented when I use EJBs and JPA Is there a solution to this problem,self.java -3,1412189126,8,gson vs json simple for simple data transmission,self.java -39,1412170475,18,A good explanation of working with floats in Java Why does adding 0 1 multiple times remain lossless,stackoverflow.com -12,1412166727,16,Are you making sure you have your permissions manifest and code signing done in your JARs,oracle.com -26,1412158066,10,Project Valhalla Notes about Valhalla from a non Java perspective,mail.openjdk.java.net -0,1412148666,5,How to start learning DI,self.java -0,1412138957,5,Apache Cayenne ORM 3 1,markmail.org -1,1412138381,6,Easy rules In memory rules engine,speakerdeck.com -0,1412126767,4,help with a homework,self.java -2,1412123936,31,So I had to make a town for geometry My teacher told it s to be creative so I used java as a topic I hope I get a good grade,imgur.com -15,1412113555,8,Your top 3 design patterns for daily use,self.java -4,1412109040,10,Why does Oracle s Java com still recommend Java 7,self.java -2,1412101332,9,How many java time zones follow the same rules,self.java -5,1412098297,5,Front end developer learning Java,self.java -9,1412097982,6,PrimeFaces Elite 5 0 10 Released,blog.primefaces.org -1,1412090160,6,Anyone have experience using Play Framework,self.java -2,1412086367,8,Reasons to stick with Java or dump it,infoworld.com -3,1412073811,7,Does containers cause overhead in Java EE,self.java -0,1412070588,6,Java EE 8 on its way,zishanbilal.com -0,1412068356,4,Help with changing _JAVA_OPTIONS,self.java -11,1412065556,11,Oracle highlights continued Java SE momentum and innovation at JavaOne 2014,oracle.com -1,1412024328,8,How to manually generate a serialVersionUID with Eclipse,self.java -2,1412018516,13,Java Weekly 13 Everything Java real Java EE new config JSR and more,thoughts-on-java.org -56,1412018216,6,libGDX wins Duke s Choice Award,badlogicgames.com -5,1412000148,17,Eclipse Debug Step Filtering Found out about this today so handy when debugging code that uses reflection,java.dzone.com -71,1411995862,9,Eclipse 4 4 SR1 once again completely silently released,jdevelopment.nl -0,1411994808,10,Book Or Open Source Project To Learn Spring Best Practicies,self.java -0,1411953130,4,Converting Decimals to Time,self.java -2,1411949560,15,Java Question regarding new keyword and accessing classes in project Difference between same resultant code,self.java -4,1411936575,4,LonelyPlanet lighting in LWJGL,youtube.com -5,1411935984,5,JavaOne 2014 Keynote Live Streaming,oracle.com -38,1411935763,6,Welcome to JavaOne 2014 Opening Video,youtube.com -10,1411931290,6,Attending JavaOne Check this guide directory,javaone-2014.zeef.com -12,1411919230,9,OpenJDK project opens up Java 9 to collaboration experimentation,infoworld.com -18,1411916780,7,Safe Publication and Safe Initialization in Java,shipilev.net -5,1411911116,3,My First Program,self.java -53,1411898208,15,Oracle Labs releases a technology preview of its high performance GraalVM and Truffle JavaScript project,oracle.com -0,1411870480,9,My first completed Java project Pretty useful for men,self.java -0,1411812523,9,New to java Need some help with If statements,self.java -4,1411808920,2,Javadoc problem,self.java -6,1411774633,7,Apache Jackrabbit Oak 1 0 6 released,mail-archives.apache.org -0,1411774451,8,Help Need some help figuring out my code,self.java -8,1411774363,19,restCommander Fast Parallel Async HTTP client as a Service to monitor and manage 10 000 web servers Java Akka,github.com -0,1411773375,16,SmartFrog powerful and flexible Java based software framework for configuring deploying and managing distributed software systems,smartfrog.org -4,1411773090,9,Java Pesistence like API for the Active Record pattern,github.com -1,1411772693,5,Tapestry 5 4 beta 22,tapestry.apache.org -0,1411752758,6,Help with templating in Jersey 2,self.java -23,1411746726,13,As an IT contractor what should I know and ask about my contract,self.java -20,1411745562,7,Java Operator Overloading give it some love,amelentev.github.io -0,1411743632,8,Importing frameworks into eclipse Specifically the JZY3d framework,self.java -0,1411734929,6,JAVA SWING GUI PROGRAMMING TUTORIAL SERIES,youtube.com -2,1411724275,9,JBoss EAP Wildfly Three ways to invoke remote EJBs,blog.akquinet.de -16,1411705011,7,Pros and Cons of Application Plugin Development,self.java -0,1411699511,9,Binary Tree 20 Questions Like Game Using Binary Tree,self.java -3,1411695832,15,writing a small program assignment in java using dr java issue with the program running,self.java -0,1411690934,5,Recursion in Game of Nim,self.java -0,1411685728,10,My first java program in two years No tutorials used,self.java -4,1411679784,6,Apache MINA 2 0 8 release,mail-archives.apache.org -3,1411679642,6,RunDeck Job Scheduler and Runbook Automation,rundeck.org -9,1411679122,9,SimpleFlatMapper 0 9 4 with QueryDsl support and CsvMapper,github.com -1,1411670791,5,Intelligent Mail Barcode Native Encoder,bitbucket.org -9,1411669647,10,I m not sure I understand what Java Pathfinder is,self.java -9,1411665652,3,Open source suggestions,self.java -2,1411661612,5,Spring Boot and STS Gradle,self.java -16,1411656492,11,What are some solutions to The Codeless Code Case 83 Consequences,thecodelesscode.com -27,1411651213,44,Some time ago I stumbled upon a server side tool that could track and monitor exceptions and show you the source code and where the exception was thrown from in a well presented manner and nice UI Does anybody remember what it was called,self.java -1,1411649140,14,Introducing frostwire jlibtorrent a Java based libtorrent wrapper API by the makers of FrostWire,frostwire.wordpress.com -3,1411640199,5,Anyone has experience with Netty,self.java -0,1411630615,8,Java parser that parses java files Yo dawg,self.java -0,1411629626,17,I need a Java event listener that will call a function whenever a text input is changed,self.java -1,1411601547,7,Is this a pattern If so which,self.java -0,1411600400,17,for System out println jdjdjjdd Why does this work And more importantly Why does this cause flashing,self.java -8,1411591580,16,Java amp FFMPEG Youtube Video downloading meta search normalization silence removal and coverting from 150 sites,github.com -1,1411580646,6,Unit testing lambda expressions and streams,java8training.com -5,1411572068,7,Watching HotSpot in action deductively Freenode java,javachannel.org -47,1411569820,6,A Short History of Everything Java,zeroturnaround.com -3,1411567871,6,Is any of you using jcenter,self.java -10,1411564469,11,Worth waiting until IntelliJ IDEA 14 before buying a personal licence,self.java -5,1411559837,7,Jackson use custom JSON deserializer with default,self.java -4,1411548022,6,Fast XML Parser gt MySQL DB,self.java -0,1411547282,16,New to Java and want to know where is the best free resource to learn it,self.java -0,1411534247,4,Intro to java question,self.java -0,1411525341,5,New to Java quick question,self.java -0,1411511821,5,ICEpdf 5 1 0 released,icesoft.org -20,1411502727,10,Reduce Boilerplate Code in your Java applications with Project Lombok,mscharhag.com -142,1411494272,7,JetBrains Makes its Products Free for Students,blog.jetbrains.com -0,1411493924,8,Fastest way to learn the essentials in Java,self.java -5,1411473382,7,Everything about Java EE 8 fall update,javaee8.zeef.com -1,1411467622,4,JBoss EAP JNDI Federation,blog-emmartins.rhcloud.com -35,1411460370,6,Java EE 8 JSRs Unanimously Approved,blogs.oracle.com -0,1411444071,14,Is there a way to link arrays or lists in parallel to one another,self.java -0,1411442499,5,java help for converting temperature,self.java -0,1411437759,23,Learning Java just started If I want to review the documentation should I download the docs for JDK 7 JDK 8 or both,self.java -8,1411436435,8,Does anyone here know how to use Lanterna,self.java -0,1411434246,2,First Program,self.java -0,1411433371,13,Dragging images into the eclipse project tree turns file into text file help,self.java -0,1411426511,26,So I built a great database in MS Access and now I want to make it in Java but I have no clue where to start,self.java -0,1411426360,3,Best book guides,self.java -6,1411419381,8,Apache Maven Dependency Plugin Version 2 9 Released,maven.40175.n5.nabble.com -0,1411414328,6,Modern java approaches to web applications,self.java -0,1411401176,5,Modern Java Approval Testing port,github.com -14,1411395274,7,Core Support for JSON in Java 9,infoq.com -8,1411391173,11,Java Weekly 12 JavaEE Boot Java 9 functional programming and more,thoughts-on-java.org -3,1411389856,5,Updating a JProgressBar Freenode java,javachannel.org -101,1411377872,9,Move help wanted questions to javahelp yay or nay,self.java -8,1411371308,5,PrimeFaces 5 1 RC1 Released,blog.primefaces.org -3,1411370370,8,How to Access a Git Repository with JGit,codeaffine.com -0,1411370316,4,Make a project online,self.java -15,1411363064,14,Everything You Never Wanted to Know About java util concurrent ExecutorService But Needed To,blog.jessitron.com -0,1411355432,3,Help a beginner,self.java -0,1411350493,23,Any way when using java swing to force a popup of a gif on focus lost if it doesn t meet certain requirements,self.java -0,1411333109,6,Quick question about decimals in java,self.java -0,1411320572,7,Help with a piece of my coding,self.java -0,1411316955,10,Does anyone know why this code is giving me errors,self.java -21,1411311359,12,Unit testing and Date equality how Joda Time helps and alternative approaches,resilientdatasystems.co.uk -0,1411305815,11,I need help with a project that I have in mind,self.java -14,1411304119,5,Apache Tez cluster on Docker,blog.sequenceiq.com -0,1411294822,29,H ng d n h c l p tr nh Java t c b n n n ng cao seri h c l p tr nh hi u qu,cafeitvn.com -0,1411290521,7,Question about Inheriting Data Fields and getters,self.java -42,1411289076,7,Software Engineer by Day Designer by Never,blog.aurous.me -12,1411282128,9,Will Double parseDouble always return the same exact value,self.java -0,1411270877,2,Constructor Parameters,self.java -0,1411266795,21,Hello I have 2 lines reader close and writer close and in Eclipse it ways they cannot resolve Why is this,self.java -6,1411250303,20,I made a Java program that combines random picture of Gary Busey with a random Nietzche quote You re welcome,github.com -0,1411245189,9,So whatever happened to that security issue with Java,self.java -0,1411242478,16,What is wrong with my if else statement Seems to be ignoring on of my statements,self.java -0,1411240238,7,Library Feedback Statically typed SI Unit Conversion,self.java -0,1411235350,9,Trying to force the user to enter a number,self.java -0,1411230545,6,Java Variables Examples 1 Instance Variables,lookami.com -0,1411212420,6,Real life applications of Data Structures,self.java -0,1411206393,9,Do subclasses inherit the data fields of the superclass,self.java -0,1411170533,9,never programmed before and having trouble with java math,self.java -0,1411140094,5,Lemon Class Missing a Method,self.java -0,1411139837,20,One of my bests programs Converter I ll add more stuff to convert in a future More info in comments,github.com -9,1411139731,10,What every Java developer needs to know about Java 9,radar.oreilly.com -52,1411139025,6,Happy talk like a pirate day,self.java -0,1411138457,9,WTF Java Why not overload for java lang Long,stackoverflow.com -0,1411131190,19,Anyway I can pass a List of my Objects and my Object as a parameter using the same parameter,self.java -10,1411086966,8,4 Security Vulnerabilities Related Coding Practices to Avoid,vitalflux.com -10,1411077004,6,Transitioning from C WPF to Java,self.java -8,1411075806,13,modernizer maven plugin detects use of legacy APIs which modern Java versions supersede,github.com -4,1411075742,6,Cate Continuation based Asynchronous Task Executor,github.com -126,1411074906,9,12 Java Snippets you won t believe actually compile,journeyofcode.com -2,1411071279,12,AngularJSF Does combining Angular and JSF create a princess or a monster,theserverside.com -0,1411070360,26,Stack and Queue in Java I know what they are in theory but I don t why to use them why they are useful to know,self.java -0,1411069093,13,Here s some code for some awesome random lines No expo class XD,self.java -0,1411067725,10,Espresso in chocolate dipped waffle cup Bite into your java,usatoday.com -6,1411066724,10,Spotlight on GlassFish 4 1 3 Changing the release number,blogs.oracle.com -2,1411063076,13,limit exposure to a dependency while still providing access to a common function,self.java -11,1411055921,9,Overview of JBoss EAP Wildfly Management Interfaces and Clients,blog.akquinet.de -0,1411039314,3,Help with DataInputStream,self.java -7,1411037728,7,Configuration can do wonders to your throughput,plumbr.eu -14,1411028790,14,10 Reasons Why Java Rocks More Than Ever Part 3 amp 8211 Open Source,zeroturnaround.com -0,1410994780,3,java Math Sqrt,self.java -2,1410989326,3,Static class reference,self.java -7,1410988904,5,Java EE Configuration JSR Deferred,blogs.oracle.com -3,1410986276,6,generating password digest for ws security,self.java -8,1410983640,3,Replicating Reference parameters,self.java -6,1410976656,7,WalnutiQ Biologically inspired machine learning in Java,github.com -1,1410975968,10,Best way for a beginner to learn Programming especially java,self.java -18,1410974155,4,Advantages Disadvantages of WebSphere,self.java -8,1410972839,18,Eclipse and Egit users Do you create your repos in the project parent folder or home yourname git,self.java -17,1410970078,6,Infinispan 7 0 0 Beta2 Released,blog.infinispan.org -12,1410967117,6,Dependency Injection with Java 8 Features,benjiweber.co.uk -6,1410957747,13,Release dates for bXX releases of Java such as 7u67 b33 if any,self.java -15,1410954179,8,Implementing container authorization in Java EE with JACC,arjan-tijms.omnifaces.org -8,1410953978,13,Java intellij debugging question Comparing object snapshots between test runs Is it possible,self.java -13,1410953737,5,Core java questionnaire for experienced,self.java -1,1410951484,7,Taint tracking protects from unvalidated input vulnerabilities,waratek.com -9,1410949078,8,JPA s FETCH JOIN is still a JOIN,piotrnowicki.com -52,1410943373,10,Why String replace in a loop is a bad idea,cqse.eu -9,1410943128,7,HZ 3 3 Client Performance Almost Doubled,blog.hazelcast.com -0,1410939603,8,What is the need for Atomics in java,self.java -30,1410932038,6,Anyone doing NFC programming in Java,self.java -0,1410928633,12,How we write unit test against database in a Spring based application,esofthead.com -0,1410922987,10,Best sorting algorithm for a relatively small group of numbers,self.java -12,1410922784,11,What is an anonymous inner class and why are they useful,self.java -0,1410910969,4,Moving Object Towards Mouse,self.java -7,1410908932,7,Detecting JSF Session Bloat Early with XRebel,zeroturnaround.com -1,1410906038,14,A really stupid question that I m just absolutely stuck on int vs double,self.java -15,1410880123,7,An example project on Tomcat using JNDI,javachannel.org -47,1410879311,10,Videos from 146 JavaZone talks 6 000 hours of video,2014.javazone.no -5,1410877812,3,Primitive Copy Generators,self.java -2,1410877474,8,help with ZooKeeper s wrapper Curator amp JUnit,self.java -44,1410861209,4,Java 9 Features list,self.java -6,1410859233,6,must know library pattern methodology frameworks,self.java -1,1410850985,4,Karel J Robot help,self.java -14,1410849755,6,Interview tomorrow expecting assessment any tips,self.java -0,1410837162,7,How to make a graph in lwjgl,self.java -2,1410835620,4,Scalable Web App Q,self.java -0,1410830408,6,Need some help with my Homework,self.java -0,1410829407,11,Could someone explain to me the evolution of Java web technologies,self.java -0,1410824553,10,No Errors But My Code Still Won t Output Anything,self.java -6,1410820081,9,Getting the target of value expressions in Java EE,arjan-tijms.omnifaces.org -20,1410818795,6,WildFly 9 0 0 Alpha1 Released,lists.jboss.org -5,1410818359,4,Java 8 upgrade survey,survey.qualtrics.com -5,1410785948,12,What s New in Java The Best Java Resources Around the Web,javais.cool -6,1410781746,13,Monitoring the JBoss EAP Wildfly Application Server with the Command Line Interface CLI,blog.akquinet.de -0,1410779135,8,What is Encapsulation and Why we need it,prabodhak.co.in -10,1410779064,13,Java Weekly 11 Missing stream method Java 9 overview lost updates and more,thoughts-on-java.org -36,1410767265,11,Java 8 Not Just For Developers Any More Henrik on Java,blogs.oracle.com -16,1410766339,10,LightAdmin Pluggable CRUD administration UI library for java web applications,lightadmin.org -1,1410761793,5,Another valid Open Closed principle,blog.frankel.ch -6,1410755754,10,What are some good intermediate open source programs to review,self.java -2,1410747044,5,Any help would be appreciated,self.java -11,1410716257,12,Netbeans IDE running very slow and laggy how can I fix this,self.java -0,1410712609,14,Anyone have any working java code to log into facebook not using their api,self.java -3,1410704947,7,Quickest way to setup Java dev environment,self.java -0,1410692485,13,Pluggable UI library for runtime logging configuration in Java web application Spring WebSockets,la-team.github.io -0,1410690155,13,is there any website that can teach me open source software s code,self.java -4,1410690083,6,JSF 2 2 HTML5 Cheat Sheet,beyondjava.net -0,1410689703,7,Mutable keys in HashMap A dangerous practice,java-fries.com -0,1410688318,12,Pluggable UI library for runtime logging level configuration in Java web application,github.com -3,1410660302,4,Design Pattern Bussines Delegate,self.java -9,1410646965,7,Scared to Apply for Java Co op,self.java -0,1410634015,6,My Java MMO First Java Game,self.java -0,1410632115,5,Is C Java made right,self.java -2,1410609079,6,Apache OFBiz 12 04 05 released,mail-archives.apache.org -2,1410600957,12,Liberty Java EE 7 beta now implements Java Batch and Concurrent specs,developer.ibm.com -0,1410600437,7,RichFaces 4 5 0 Beta2 Release Announcement,bleathem.ca -16,1410583105,8,Tips for learning java having trouble in classroom,self.java -29,1410559915,6,BalusC joins JSF 2 3 EG,jdevelopment.nl -2,1410549406,9,Help with organizing this snippet More info in comments,gist.github.com -3,1410543061,5,A Question About Background Processes,self.java -0,1410535143,16,I have installed and re installed Java 3 times now and it s still not verifying,self.java -21,1410533178,13,Why do you instantiate local variables on a separate line from the declaration,self.java -6,1410532029,12,What is the purpose of having upper bounded wildcard in Collection addAll,self.java -4,1410530250,12,Moving past Java towards front end web interfaces which direction to take,self.java -1,1410529637,5,Looking to get into Programming,self.java -19,1410526102,13,My first Maven published lib a set of Hamcrest matchers for java time,github.com -7,1410521607,8,How JSF works and how to debug it,blog.jhades.org -2,1410519035,10,TomEE Security Episode 1 Apache Tomcat and Apache TomEE S,tomitribe.com -4,1410485778,3,separation of concerns,self.java -9,1410485584,3,Multi Computer Develoment,self.java -55,1410484318,8,Do Java performance issues exist in modern development,self.java -0,1410479013,4,Convert string to int,self.java -7,1410469463,9,Best practices deploying java ears on websphere and tomcat,self.java -2,1410466453,9,Java COM bridge advice implementing excel RDT in java,self.java -6,1410428399,10,How does REST and SOAP web services actually work internally,self.java -2,1410426731,9,What is the alternative to Web Services JSP Swing,self.java -32,1410423725,4,Lambda for old programmers,self.java -2,1410420214,10,Issues with eclipse in two environments PC amp amp OSX,imgur.com -1,1410419085,6,Interacting with a specific object instance,self.java -0,1410417913,1,HELP,self.java -0,1410398215,7,Best books to study for Java Certifications,self.java -6,1410398073,6,What s next after basic Java,self.java -5,1410380483,14,SimpleFlatMapper v0 9 1 released JdbcTemplate support complex object and list mapping lambda support,github.com -2,1410377272,9,Need help with Applet loading an image in browser,self.java -0,1410376251,3,Java Result 1073741819,self.java -3,1410365112,9,Data Pipeline 2 3 4 includes Twitter search endpoint,northconcepts.com -16,1410364298,11,Using Spring MVC with JRebel Adding and autowiring beans without restarting,zeroturnaround.com -0,1410361164,8,Java is good but i dont know how,self.java -3,1410358711,2,Generics question,self.java -7,1410352143,9,When the Java 8 Streams API is not Enough,blog.jooq.org -8,1410351711,13,What is the best component library to start off with when learning JSF,self.java -15,1410342858,7,Simple Fuzzy Logic Tool for Java 8,github.com -5,1410342368,4,Typeclasses in Java 8,self.java -12,1410338507,7,JUnit in a Nutshell Unit Test Assertion,codeaffine.com -5,1410336688,7,Would like my code to be reviewed,self.java -21,1410334750,13,Hazelcast 3 3 Tops Charts in In Memory Data Grid Moves Into NoSQL,blog.hazelcast.com -6,1410312025,7,Apache DeltaSpike 1 0 2 is out,deltaspike.apache.org -12,1410307314,14,Trying to get up the Java EE learning curve need help getting past tutorials,self.java -2,1410303642,31,Whenever i try to use setRequestProperties to set cookies i just got from a URLConnection the compiler gives me gives me an already connected error message how do i fix this,self.java -5,1410297295,7,Programmers could get REPL in official Java,javaworld.com -2,1410295374,13,Did anyone already do DDD using a graph database like Neo4J as storage,self.java -0,1410293795,17,Know of a company in Europe that will sponsor an American Java Developer for a work visa,self.java -6,1410289509,5,Does Java have this functionality,self.java -3,1410289458,8,Ideal path for mobile development for Java developers,self.java -0,1410282043,9,Java C falter in popularity but still in demand,infoworld.com -31,1410280725,10,GlassFish Server Open Source Edition 4 1 Released The Aquarium,blogs.oracle.com -3,1410269129,15,Java Annotated Monthly Large overview and discussion of Java related news from the previous month,blog.jetbrains.com -13,1410268550,7,JavaOne what are your must attend sessions,oracleus.activeevents.com -1,1410268179,17,Java developers with network experience needed for open source MMO development platform x post from r gameDevClassifieds,self.java -2,1410266753,6,First Class Functions in Java 8,java8training.com -1,1410257972,5,Ideal way to exercise java,self.java -3,1410257215,20,Need help with uploading multiple files with Jersey I ve searched all over the place but cannot find a solution,self.java -8,1410255900,8,JAVA question about error handling and root cause,self.java -0,1410250380,7,RichFaces 4 5 0 Beta1 Release Announcement,bleathem.ca -0,1410243527,12,We re looking for Java devs sidebar did say anything Java related,eroad.com -18,1410235816,5,Java Optimizations and the JMM,playingwithpointers.com -0,1410233702,16,I don t know where to turn to need help with my first hello world assignment,self.java -4,1410212989,10,How do I get input from a USB video device,self.java -1,1410212099,5,need help with java code,self.java -2,1410211881,7,I need some help with a program,self.java -4,1410208955,12,How JSF Works and how to Debug it is polyglot an alternative,blog.jhades.org -8,1410204479,13,Hazelcast 3 3 released an Open Source in memory data grid for Java,hazelcast.org -34,1410203483,9,How good is Java for game development these days,self.java -50,1410193926,18,Aurous My attempt at an open source alternative to Spotify which allows for instant streaming from various services,github.com -12,1410189072,5,Performance Considerations For Elasticsearch Indexing,elasticsearch.org -3,1410187690,4,Someone creative needed please,self.java -14,1410187051,9,What s your biggest pain developing Java web apps,self.java -8,1410185041,7,Program a game in half a year,self.java -9,1410182208,5,Java Annotated Monthly September 2014,blog.jetbrains.com -3,1410181943,11,walkmod an open source tool to apply and share code conventions,walkmod.com -8,1410179552,9,How to execute a group of tasks with ExecutorService,javachannel.org -37,1410172603,9,Job interviews Does everyone but me actually know everything,self.java -11,1410169428,11,Java Weekly 10 Concurrency no config JSR MVC JCP and more,thoughts-on-java.org -5,1410165181,6,PrimeFaces Elite 5 0 8 Released,blog.primefaces.org -11,1410155340,13,LightAdmin Pluggable CRUD administration UI library for java web applications powered by SpringBoot,lightadmin.org -3,1410149144,7,Recommendations for structuring a library for distribution,self.java -23,1410147094,7,Building and Deploying Android Apps Using JavaFX,infoq.com -0,1410132992,8,First practical and or relatively large java project,self.java -13,1410127472,12,On Memory Barriers and Reordering On The Fence With Dependencies Java Performance,shipilev.net -2,1410116667,12,Migrating Google Calendar API from v2 to v3 I m completely lost,self.java -1,1410114794,6,Java GUI SWT Application gt Website,self.java -0,1410114302,9,programming Binary Sudoku in Java live on Twitch tv,twitch.tv -4,1410085409,9,Java Programming Can anyone suggest projects for beginning programmers,self.java -24,1410084900,9,Java puzzle NullPointerException when using Java s conditional expression,self.java -9,1410077844,10,Book Recommendation Java 8 In Action Great functional programming read,self.java -25,1410057576,7,Programmers could get REPL in official Java,m.infoworld.com -4,1410048702,4,Basic Iterators and Collections,self.java -12,1410045694,8,Hazelcast JCache API is more than just JCache,blog.dogan.io -1,1410035544,10,Which of these could be the best source for learning,self.java -9,1410029347,9,Casting to an interface different from casting between classes,self.java -5,1410025386,4,Very basic help needed,self.java -4,1410015359,4,Easy theming with Valo,morevaadin.com -0,1410008102,5,Easy run of Maven project,blog.mintcube.solutions -0,1409997249,4,Should I learn HTML5,self.java -6,1409992836,4,JSF conditional comment encoding,leveluplunch.com -1,1409974512,7,Using repaint and where to call it,self.java -2,1409972516,13,How valid is the statement write once debug everywhere by some Java users,self.java -0,1409972095,3,Netbeans to Desktop,self.java -14,1409959426,1,Encryption,self.java -5,1409957295,3,Preferred program formatting,self.java -0,1409953144,22,8 gigs of ram but 32bit only lets me use 1g I have 84bit Windows does java for 84 solve this issue,self.java -50,1409938172,8,In memory NIO file system for Java 7,github.com -12,1409933243,8,Getting started with RabbitMQ using the Spring framework,syntx.io -2,1409932417,12,Suggestion for a distributed database which is simple secure and open source,self.java -1,1409930628,3,Spring WebMVC resource,self.java -4,1409925672,3,Caveats of HttpURLConnection,techblog.bozho.net -2,1409923130,6,New ultrabook 1920x1080 touchscreen Windows 8,self.java -2,1409920384,7,Java Programming What should I do now,self.java -3,1409913730,15,Why are Marker interfaces required at all Does JVM process these in a different manner,self.java -35,1409904591,4,Coursera Algorithms Part I,coursera.org -6,1409903574,5,Java E Books For Beginners,self.java -9,1409900216,28,What is the need to write your own exceptions Anyway we are extending the Exception we can as well throw the custom exception as a general exception right,self.java -40,1409886226,22,I have been working on a Reddit API wrapper in Java for the past few months How can I make it better,github.com -4,1409884156,11,Anyone know how to switch between Java versions in Windows 7,self.java -6,1409851077,16,Looking for updated info Which inexpensive CA to use for code signing trusted by Java 7,self.java -49,1409845886,12,Spring Framework 4 1 introduces JMS jCache SpringMVC WebSocket features better performance,spring.io -1,1409845760,11,Java object oriented coding style Which one is preferred and why,self.java -1,1409845594,9,Whiley Final should be Default for Classes in Java,whiley.org -7,1409834234,8,Stats about memory leaks size velocity and frequency,plumbr.eu -1,1409826995,13,My first Java Program Need someone to quickly read over it before submitting,self.java -18,1409822984,7,JVM Language Summit 2014 Videos and Slides,oracle.com -24,1409798778,10,What are some online courses for java similar to codeacademy,self.java -5,1409794354,20,Wondering what the r java community perceives to be the advantages or disadvantages of developing in java vs NET C,self.java -6,1409787591,10,How do I interface my Java program with an Arduino,self.java -1,1409786533,20,X Post from JavaHelp DnD using custom drag types into an FXCanvas Java 8 FX 2 2 SWT 4 4,self.java -1,1409783416,7,Anyone have some simple examples showing networking,self.java -0,1409782295,36,OK PEOPLES Need help on taking an external text document parsing the first two integers as a 2d array location and then using the final bit nextLine as a string that goes into that array location,self.java -0,1409777373,7,After 13 years JCache specification is complete,sdtimes.com -28,1409772768,20,What does r Java think about JRebel and do its features justify the 360 per year price for Indie development,self.java -1,1409771140,3,Learning more java,self.java -0,1409767947,5,How do i learn Java,self.java -3,1409765859,8,How to make a connection and send data,self.java -0,1409764511,10,Do you have an interesting idea for open source project,self.java -0,1409761649,7,DEBUG YOUR JAVA APPLICATION WITH ECLIPSE IDE,prabodhak.co.in -7,1409758460,12,Using XRebel to fix Spring JDBC Templates N 1 SQL SELECTs Issues,zeroturnaround.com -0,1409755114,5,Why Should I Learn Scala,toptal.com -14,1409754976,8,After 13 years JCache specification is finally complete,sdtimes.com -2,1409748711,7,Remote debugging in Red Hat JBoss Fuse,blog.andyserver.com -8,1409747045,5,PrimeFaces 5 1 Video Trailer,vimeo.com -28,1409746135,7,Apache Log4j 2 0 Worth the Upgrade,infoq.com -2,1409739890,7,Writing compact Java with functions and data,dev.solita.fi -22,1409730553,6,JUnit in a Nutshell Test Runners,codeaffine.com -22,1409718642,12,When to use Java SE 8 parallel streams Doug Lea answers it,gee.cs.oswego.edu -7,1409713436,10,A cool syntax example with lambda expressions and functional interfaces,self.java -3,1409706539,10,I m getting a registry error when downloading the JDK,self.java -0,1409703677,29,I m working on a project where I will need an open sourced game Is Java the right language to be looking in or should I look else where,self.java -3,1409698624,21,I m on a quest for an error through mountains of Java and I have no idea what I m doing,self.java -21,1409679300,7,Why another MVC framework in Java EE,oracle.com -38,1409678446,14,Protonpack a Streams utility library for Java 8 supplying takeWhile skipWhile zip and unfold,github.com -47,1409654420,12,I just can t start to understand what lambdas and closures are,self.java -0,1409635865,8,Why NetBeans IDE is Great for Teaching Java,netbeans.dzone.com -0,1409607297,17,Help New to NetBeans and Win8 when I run my program a dialog box doesn t open,self.java -2,1409601933,7,Need help finding a dynamic graphing library,self.java -54,1409599748,7,Predicting the next Math random in Java,franklinta.com -0,1409597523,9,Haha a wonderful Game of Thrones parody for Java,youtube.com -3,1409590124,7,Jar file not running on other machines,self.java -14,1409588048,11,JHipster the Yeoman generator for Spring AngularJS reaches version 1 0,jhipster.github.io -15,1409580315,9,Explain Android development like I am a Java developer,self.java -3,1409579376,13,Java Weekly 9 Money retired DTOs JSR for MVC JDK tools and more,thoughts-on-java.org -2,1409578752,8,SimpleFlatMapper fastest lightweight no configuration ORMapping for java,github.com -1,1409575388,8,What Maven dependency do you use for JTidy,self.java -6,1409565828,12,A good chance to learn or refresh basic JAVA terms and concepts,sharplet.com -4,1409565432,9,Nashorn bug when calling overloaded method with varargs parameter,stackoverflow.com -13,1409564790,9,Major Java events in September JavaOne JavaZone and SpringOne,java2014.org -10,1409562391,6,Travis Continuous Integration for GitHub Projects,codeaffine.com -17,1409559604,9,Liberty beta now implements most Java EE 7 features,developer.ibm.com -0,1409544850,13,Getters and setters considered evil counter to OOP and should be used sparingly,javaworld.com -7,1409537192,3,OO Problem Statements,self.java -3,1409530498,10,How do I get an older update of Java 8,self.java -4,1409526750,12,Watch me make Snake in Java live on Twitch using best practices,twitch.tv -5,1409525377,7,Making a 3D map from an image,self.java -0,1409515271,2,HELP ME,self.java -18,1409512912,8,Differences between Java on Win and OS X,self.java -8,1409512309,8,In browser widget to monitor java application performance,stagemonitor.org -7,1409511255,7,What Java IDE should I switch to,self.java -6,1409506595,13,Eclipse 4 4 Windows 8 1 taskbar issues x post from r eclipse,self.java -10,1409505202,19,Is it considered better practice for a class to use its own getter and setter methods in other methods,self.java -0,1409503752,4,Fixing Java language anyone,self.java -9,1409493938,6,Using exceptions when designing an API,blog.frankel.ch -0,1409486898,3,Basic Java Worksheet,i.imgur.com -14,1409485503,5,Fast API testing with Restfuse,blog.mintcube.solutions -3,1409442321,11,Looking for some fellow Java beginners to skype text only with,self.java -6,1409414981,3,Eclipse installation question,self.java -2,1409412986,6,Basic Symmetric Encryption example with Java,syntx.io -0,1409406097,15,Java program to change the color of the circle if I click on to it,self.java -5,1409404293,7,Clean HTML from XSS or malicious input,self.java -8,1409392405,9,Setting project specific VM options in IntelIJ IDEA Ultimate,self.java -9,1409369907,5,Java REST Service best practices,self.java -6,1409369137,6,Trying to learn Java please help,self.java -6,1409361972,7,Draw many objects more efficiently with LWJGL,self.java -3,1409358910,4,Looking for a mentor,self.java -0,1409351905,4,JetBrains ignoring community feedback,self.java -0,1409346166,8,Getting testThis main out of classes for production,self.java -85,1409334051,7,My JAVA MMO inspiration it s bad,diamondhunt.co -0,1409330246,10,What is the best way to get started with J2EE,self.java -82,1409330130,10,String Deduplication A new feature in Java 8 Update 20,blog.codecentric.de -8,1409321330,15,Is it possible to create a restful api with plain old java without any framework,self.java -0,1409286831,1,Java,self.java -9,1409282947,8,What would be a good example REST service,self.java -3,1409262961,6,Apache Jackrabbit 2 9 0 released,mail-archives.apache.org -2,1409262932,4,What should i do,self.java -16,1409262838,9,Jar Hell made Easy Demystifying the classpath with jHades,blog.jhades.org -23,1409262647,7,The Principles of Java Application Performance Tuning,java.dzone.com -9,1409254562,14,Blurry misconceptions when combining Java via JDBC with SQL to create a database system,self.java -5,1409248719,6,Type Safe Heterogenous Containers in Java,stevewedig.com -30,1409246754,5,Mirah Where Java Meets Ruby,blog.engineyard.com -6,1409239126,11,Sample task to give to candidates for a graduate level interview,self.java -6,1409238707,8,Any good links or tips on good design,self.java -17,1409238266,6,Spurious Wake ups are very real,mdogan.github.io -21,1409234619,5,Caudit Java Easy performance monitoring,cetsoft.github.io -0,1409228444,2,Transforming Strings,self.java -0,1409188070,9,might seem dumb but i have a simple question,self.java -2,1409186359,10,How can I make a module block based collision system,self.java -2,1409182954,18,Processing org is it good for learning Java or should I consider it something completely different from Java,self.java -37,1409153764,16,codecademy com has a really nice class for JavaScript is there anything like this for Java,self.java -1,1409153123,4,Practice problems for student,self.java -28,1409140759,22,I m going in for an entry level java development position in a few hours Any tips on what interviewers might ask,self.java -13,1409128348,6,JUnit in a Nutshell Test Isolation,codeaffine.com -1,1409118888,3,Question about timers,self.java -22,1409118443,12,Wow learning Java is much easier than I thought it would be,self.java -24,1409093343,7,Type of qualifications for Junior Java Developer,self.java -22,1409090137,5,ActiveMQ 5 10 0 Release,activemq.apache.org -14,1409075179,15,What s the new to java equivalent book to Effective Java for more advanced people,self.java -9,1409070460,8,StackHunter Java exception tracker beta 1 1 released,blog.stackhunter.com -8,1409070096,6,Glassfish amp Chrome Extension Episode 1,youtube.com -3,1409067601,6,IoC Question about building my own,self.java -36,1409066808,8,What s with all the anti Spring sentiment,self.java -0,1409061136,14,If you are asked design twitter in a Java telephonic what would you answer,self.java -0,1409059492,8,Java knowledge expected for 8 years work experience,self.java -0,1409054903,3,Thoughts on Hibernate,java.dzone.com -1,1409046413,12,Writing JSR 352 style jobs with Spring Batch Part 1 Configuration options,blog.codecentric.de -2,1409041306,8,JPA enum OmniFaces enum converter select items sample,ballwarm.com -5,1409041185,4,Status update generic specializer,self.java -47,1409039277,5,JEP 159 Enhanced Class Redefinition,openjdk.java.net -6,1409032121,18,Book about general GUI design using OO It can be about JAVA but showing some general generic ideas,self.java -25,1409019397,7,Why do you prefer java for programming,self.java -0,1409008467,3,simple array issue,self.java -1,1409004465,12,x post Need help writing clean testable multi socket listener using ServerSocketChannel,self.java -80,1408989676,7,Java 9 is coming with money api,weblogs.java.net -14,1408987763,6,Has anyone tried Honest Profiler yet,self.java -15,1408972458,10,Improve IntelliJ IDEA and Eclipse Interop and Win a License,blog.jetbrains.com -0,1408969900,10,Web Development Using Spring and AngularJS Tutorial 11 Using ngResource,youtube.com -44,1408969156,9,Jinq a new db query tool for Java 8,jinq.org -6,1408968385,2,Debugging OpenJDK,java.dzone.com -9,1408962410,4,Novice Spring Framework question,self.java -27,1408955869,6,Interesting way to learn Design Patterns,self.java -0,1408932699,2,Augmented Reality,self.java -0,1408927190,8,Has anyone here ever created an android app,self.java -2,1408918930,3,Problem with JOptionPane,self.java -6,1408906630,7,Java 7 Backports for java util Optional,self.java -5,1408889099,7,Meetup Reactive Programming using scala and akka,blog.knoldus.com -3,1408883188,9,JavaZone 2014 Game of Codes Game of Thrones parody,youtu.be -72,1408880427,5,JAVA 4 EVER Official Trailer,youtube.com -5,1408877443,8,Is it fun to be a Java developer,self.java -4,1408861775,6,Ideas for a tough Java project,self.java -4,1408854580,23,Was anyone used RxJava in a java 6 7 environment Did the benefit of reactive programming outweigh the terribleness of nested anonymous classes,self.java -17,1408836998,6,Looking for Basic Intermediate Java Challenges,self.java -2,1408826752,8,Need some explanation about this Generics type erasure,self.java -9,1408816237,14,Scala template engine like JSP but without the crap and with added scala coolness,github.com -2,1408813736,7,Looking for advice on GUI building tools,self.java -12,1408811638,5,Should I use an IDE,self.java -13,1408807844,13,Library for download and handle a countries ips list from a CSV file,github.com -0,1408754014,7,Whats the Best website to practice JAVA,self.java -49,1408744921,12,Capsule One Jar to Rule Them All x post from r programming,dig.floatingsun.net -0,1408722045,3,Forget about LinkedList,self.java -9,1408721040,3,Question about servlets,self.java -4,1408720872,9,Help Error when trying to run a web applet,self.java -0,1408720413,8,Why is JavaFX being continued Nobody uses it,self.java -43,1408717148,19,Eclipse compilation run is faster by factor of 3x then NetBeans and IntelliJ IDEA on slow and old hardware,self.java -15,1408715461,4,Java Advanced Management Console,blogs.oracle.com -14,1408712414,6,The ultimate guide to JavaOne 2014,javaone-2014.zeef.com -0,1408681616,17,What are the benefits of using a scanner for command line input as opposed to a BufferedInputStreamReader,self.java -3,1408676771,13,Need help with Java assignment It is about Inheritance and I am lost,self.java -0,1408670704,8,Current approaches to Java application protection are problematic,technewsworld.com -0,1408662564,4,JDBC Basics Part I,go4expert.com -10,1408656298,9,Everything you need to know about Java EE 8,javaee8.zeef.com -0,1408654505,4,What is Reactive Programming,medium.com -3,1408644752,7,Eclipse advanced statistical debugging Where is it,self.java -1,1408644391,11,java error when igpu multi monitor is enabled hs err pid,self.java -2,1408628744,16,Eric D Schabell New integration scenarios highlighted in JBoss BPM Suite amp JBoss FSW integration demo,schabell.org -0,1408627403,4,MultiThread in Java help,self.java -98,1408627039,14,The 6 built in JDK tools the average developer should learn to use more,zeroturnaround.com -6,1408564320,9,eCommerce case study for in memory caching at scale,hazelcast.com -18,1408563818,19,Frontend development in HTML CSS and Java only or GWT in a different way The JBoss Errai web framework,self.java -10,1408563205,4,Online IDE for Java,self.java -28,1408562251,9,Why Developer Estimation is Hard With a Cool Puzzle,zeroturnaround.com -4,1408553590,4,Novice programming problem java,self.java -25,1408548900,8,Java 9 Features Announced What Do You Think,java.dzone.com -0,1408539575,7,How to solve Java s security problem,infoworld.com -0,1408537012,10,Web Development Using Spring and AngularJS Tutorial 10 New Release,youtube.com -1,1408536720,10,Web Development Using Spring and AngularJS Tutorial 9 New Release,youtube.com -1,1408536247,6,Locks escalating due classloading issues example,plumbr.eu -3,1408497602,4,java install key error,self.java -29,1408487516,8,Release Oracle Java Development Kit 8 Update 20,blogs.oracle.com -14,1408485045,20,JSR posted for MVC 1 0 a Spring MVC clone in Java EE as second web framework next to JSF,java.net -2,1408474014,12,Apache POI 3 10 1 released CVE 2014 3529 CVE 2014 3574,mail-archives.apache.org -1,1408473369,23,CVE 2014 3577 Apache HttpComponents client Hostname verification susceptible to MITM attack fixed in HttpClient 4 3 5 and HttpAsyncClient 4 0 2,markmail.org -1,1408466048,2,Java Certifications,self.java -3,1408463080,11,I have questions about Java Java EE development with NoSQL databases,self.java -7,1408455837,11,Drools amp jBPM Drools Execution Server demo 6 2 0 Beta1,blog.athico.com -2,1408455324,8,Freenode java Initializing arrays of arrays avoid fill,javachannel.org -13,1408440072,7,Freenode java How to access static resources,javachannel.org -9,1408423073,6,Object already exists java install error,self.java -28,1408417677,8,What do I need to know about maven,self.java -10,1408406823,5,Open source Java GWT libraries,self.java -0,1408398054,2,Eclipse Error,stackoverflow.com -7,1408392946,13,The first official feature set announcement for OpenJDK 9 and Java SE 9,sdtimes.com -15,1408383539,10,Java Weekly 8 Java9 JMS 2 JUnit Microservices and more,thoughts-on-java.org -28,1408377808,10,Java 8 compilation speed 7 times slower than Java 7,self.java -1,1408370842,7,Error with geany compiler when compiling java,self.java -22,1408349223,6,JUnit in a Nutshell Test Structure,codeaffine.com -10,1408327041,15,Almost got a job as a Java developer Just need to pass a technical assessment,self.java -7,1408306333,24,When to Use Nested Classes Local Classes Anonymous Classes and Lambda Expressions The Java Tutorials gt Learning the Java Language gt Classes and Objects,docs.oracle.com -5,1408295257,8,Help integrating a library into my java project,self.java -12,1408253559,5,Understanding JUnit s Runner architecture,mscharhag.com -10,1408241703,5,Use of System out print,self.java -1,1408224163,5,Help with setters and this,self.java -1,1408215962,8,How stable is the android developer job market,self.java -24,1408205499,9,What s a good universal GUI framework for Java,self.java -7,1408192626,19,Quick snippet to get list of your facebook friends who have liked atleast one post in a particular page,csnipp.com -13,1408185955,9,Humanize facility for adding a human touch to data,github.com -4,1408185892,4,iCal4j iCalendar specification RFC2445,wiki.modularity.net.au -23,1408179640,9,Working with Date and Time API Java 8 Feature,groupkt.com -14,1408157227,2,Question jHipster,self.java -46,1408153996,15,Heat map of which keys I used to create a simple java program with vim,i.imgur.com -0,1408144406,3,Java not updating,self.java -0,1408140689,5,Java Advanced books to get,self.java -8,1408139527,9,Transactions mis management how REQUIRES_NEW can kill your app,resilientdatasystems.co.uk -4,1408127055,8,Is there such thing as a reminder interface,self.java -1,1408126054,11,Need help with strange Java Error JVM Entry point not found,self.java -11,1408124747,17,Introducing QuickML A powerful machine learning library for Java including Random Forests and a hyper parameter optimizer,quickml.org -19,1408116333,6,Apache Commons CSV 1 0 released,mail-archives.apache.org -4,1408105721,3,Introduction vaadin com,vaadin.com -7,1408105161,8,TempusFugitLibrary helps you write and test concurrent code,tempusfugitlibrary.org -64,1408097304,5,JavaZone 2014 Game of Codes,youtube.com -25,1408093982,5,Learning JVM nuts and bolts,self.java -4,1408067963,4,Monitor Java with SNMP,badllama.com -5,1408053674,5,Nemo SonarQube opensource code quality,nemo.sonarqube.org -12,1408044400,6,Where how to learn JSF properly,self.java -47,1408040317,9,1407 FindBugs 3 0 0 released Java 8 compatible,mailman.cs.umd.edu -2,1408039948,5,Netty 4 0 22 released,github.com -4,1408037941,12,Demonstration how to write from one database to another using SPRING Batch,self.java -3,1408033207,9,Looking for a good tutorial for java 7 8,self.java -9,1408032954,7,Mojarra 2 2 8 has been released,java.net -8,1408022994,10,Using Javascript Libs like Backbone js with Nashorn Java 8,winterbe.com -7,1408019411,9,The 3 different transport modes with vaadin and push,blog.codecentric.de -7,1408015636,5,Cadmus A Primer in Java,cadmus.herokuapp.com -6,1408014349,6,Opensource Java projects for junior developers,self.java -7,1407998439,8,Creating a lazy infinite fibonacci stream using JDK8,jacobsvanroy.be -0,1407981025,9,Bootstrapping Vaadin Applications Using Gradle Spring Boot and vaadin4spring,dev.knacht.net -1,1407975400,3,Java textbook advice,self.java -159,1407967212,22,I know it probably isn t much but I just completed my first Game Loop alone and I m so proud Haha,i.imgur.com -6,1407965450,12,Looking for an online IDE submission site for intro to programming class,self.java -0,1407962164,6,Personal favorite programming software for Java,self.java -8,1407961520,7,What are your favorite IntelliJ IDEA features,self.java -2,1407956047,3,SSLSocket and getChannel,self.java -2,1407942154,10,Is this a good function to encrypt and decrypt strings,csnipp.com -5,1407936671,5,Working with Java s BigDecimal,drdobbs.com -0,1407936655,10,My company HCA in Nashville is expanding our Java team,self.java -11,1407931536,8,Brian Goetz Lambda A Peek Under the Hood,vimeo.com -11,1407924400,9,Java Best Practices Queue battle and the Linked ConcurrentHashMap,javacodegeeks.com -2,1407914579,10,Meet Christoph Engelbert One of July s Most Interesting Developers,blog.jelastic.com -10,1407912540,5,OpenSource project to learn from,self.java -0,1407903923,2,Libgdx exception,self.java -2,1407881775,7,Need some help conquering the learning curve,self.java -21,1407877810,5,Read data from USB port,self.java -7,1407875548,8,Time4J Advanced date and time library for Java,github.com -0,1407873625,10,Java CAS Client 3 3 2 fix CVE 2014 4172,apereo.org -1,1407862047,6,Trying to pass Type to interface,self.java -2,1407841354,15,Java Software Solutions Foundations of Program Design 8th Edition by John Lewis amp William Loftus,self.java -26,1407834953,6,JUnit in a Nutshell Hello World,codeaffine.com -12,1407834912,8,Understanding the benefits of volatile via an example,plumbr.eu -4,1407834332,4,Keeping track of releases,self.java -28,1407834083,10,How to get started with a desktop UI in Java,self.java -9,1407832763,5,My single class parser generator,mistas.se -61,1407826181,8,Get real Oracle is strengthening not killing Java,infoworld.com -0,1407817358,21,Certain sbt installs fail on OS X 10 9 when running Java 8 how do I install Java 7 alongside 8,self.java -2,1407801966,14,what s a good way to validate that you know enough to be hireable,self.java -2,1407796765,7,How to embed HSQLDB in Netbeans project,self.java -3,1407796304,7,What to read after Head First Java,self.java -0,1407795614,11,uniVocity a Java framework for the development of data integration processes,self.java -0,1407792177,7,HttpComponents Client 4 3 5 GA Released,mail-archives.apache.org -0,1407792149,7,HttpComponents HttpAsyncClient 4 0 2 GA Released,mail-archives.apache.org -10,1407792121,4,Brian Goetz Evolving Java,infoq.com -65,1407787064,11,So the stickers I sent out for have arrived Plus extras,imgur.com -7,1407782517,8,Charts with jqPlot Spring REST AJAX and JQuery,softwarecave.org -6,1407781577,10,Is there anyway I can get Eclipse on my Chromebook,self.java -11,1407780754,5,JavE Java Ascii Versatile Editor,jave.de -32,1407778784,9,First batch of JEPs proposed to target JDK 9,mail.openjdk.java.net -26,1407770649,2,Goodbye LiveRebel,zeroturnaround.com -8,1407769678,6,Any solutions for JSP Unit Testing,self.java -19,1407750845,8,A sudo inspired security model for Java applications,supposed.nl -13,1407745603,5,Generating equals hashCode and toString,techblog.bozho.net -16,1407737955,11,Java Weekly 7 Generics with Lambda unified type conversion and more,thoughts-on-java.org -0,1407736021,12,Okay I want to start doing Java can you answer 2 questions,self.java -3,1407726885,15,Would using a persistence database not cause writing objects to it to have a StackOverflowError,self.java -0,1407724761,6,Anyone know how this is done,self.java -41,1407720662,10,Something I wasn t aware about random numbers in java,engineering.medallia.com -2,1407715775,7,Finding the inside of a closed shape,self.java -10,1407706233,8,Best swing layout for vertical list of buttons,self.java -50,1407697043,8,Best way to learn advanced java from home,self.java -8,1407691632,8,Can I turn a jar into a exe,self.java -1,1407685129,7,Sanitizing webapp outputs as an an afterthought,blog.frankel.ch -6,1407684966,17,Just bought a pogoplug mobile and installed Debian on it Question about java apps and resource usage,self.java -41,1407664170,9,Generics How They Work and Why They Are Important,oracle.com -3,1407647145,4,Best Java library reference,self.java -10,1407638437,3,Thread sleep Alternatives,self.java -10,1407638427,9,Java certification which one and what materials to use,self.java -24,1407621954,6,Essential Gradle snippet for Intellij users,movingfulcrum.tumblr.com -5,1407618990,14,Showing how to use Java 8 dates and functional programming to write a timer,selikoff.net -5,1407587337,2,JCheckBox Help,self.java -30,1407582443,4,jFairy Java Faker Library,codearte.github.io -21,1407571860,9,jclouds 1 8 released the Java multi cloud toolkit,jclouds.apache.org -10,1407533056,11,Will HTML5 make good old JSPs popular again by Adam Bien,adam-bien.com -1,1407500223,4,Code coverage with Netbeans,self.java -2,1407444048,11,Gost hash Pure Java Russian GOST 34 11 94 hash implementation,github.com -18,1407438447,7,High time to standardize Java EE converters,arjan-tijms.blogspot.com -0,1407435022,2,Java Botnet,self.java -6,1407428192,3,Order of modifiers,self.java -5,1407425624,10,Help Coding A Genetic Algorithm to Solve the Knapsack Problem,self.java -23,1407423206,7,ArrayList and HashMap Changes in JDK 7,javarevisited.blogspot.sg -3,1407415033,6,Getting JDK installers working on Yosemite,self.java -7,1407413900,5,StringJoiner in Java SE 8,blog.joda.org -10,1407411660,13,Oracle s Latest Java 8 Update Broke Your Tools How Did it Happen,takipiblog.com -1,1407408934,2,What course,self.java -1,1407406578,4,Spring Data Jpa Filters,self.java -149,1407405335,6,Get rid of the frickin toolbar,self.java -4,1407401638,8,Internet Explorer to start blocking old Java plugins,arstechnica.com -2,1407401407,9,Should I use direct references to classes as delegates,self.java -0,1407390847,10,6 Reasons Not to Switch to Java 8 Just Yet,javacodegeeks.com -6,1407373455,8,HSQLDB timestamp field that automatically updates on update,self.java -7,1407372471,3,Java learning problems,self.java -2,1407369429,5,Java Annotated Monthly July 2014,blog.jetbrains.com -0,1407366864,9,The attributes of an object are often coded as,self.java -1,1407364945,6,Suggestion for Loan Calculator UML diagram,self.java -1,1407351983,5,Wrapping Polymer components with JSF,self.java -51,1407349780,7,CodeExchange A new Java code search engine,codeexchange.ics.uci.edu -7,1407349669,9,Needing no annotation no external mapping reflection only ORM,self.java -4,1407344810,7,UI framework suggestions for single page application,self.java -16,1407342086,5,presentation State of Netty Project,youtube.com -2,1407322568,9,Java Blog Beginner s Guide to Hazelcast Part 3,darylmathison.wordpress.com -5,1407321725,10,Question Spring mvc ErrorPageFilter creates random overflow and high CPU,stackoverflow.com -8,1407318400,4,gaffer foreman on JVM,github.com -26,1407314637,12,OhmDB The Hybrid RDBMS NoSQL Database for Java Released under Apache License,github.com -18,1407311357,10,OptaPlanner 6 1 0 Final released open source constraint optimizer,optaplanner.org -4,1407308165,11,Setting up Liquibase for Database change Management With Java Web Application,groupkt.com -2,1407301723,6,Cool little JSON library I made,youtube.com -4,1407298447,24,Anyone here who could offer some help with JOGL I am more less a beginner with absolutely no knowledge when it comes to graphics,self.java -5,1407289478,11,Y combinator in Java in case someone needs it probably never,self.java -13,1407288242,12,Hibernate ORM with XRebel Revealing Multi Query Issues with an Interactive Profiler,zeroturnaround.com -5,1407281602,8,HELP Coding and compiling in Sublime Text 3,self.java -9,1407274419,3,Java docopt implementation,github.com -8,1407272934,9,Best way for AJAX like search functionality in JTable,self.java -3,1407259402,8,JCP News Many Java EE 8 specs started,blogs.oracle.com -1,1407249540,7,Web Based Application using Java Flex Development,elegantmicroweb.com -8,1407248481,6,UDP Packets EOFException on ObjectInputStream readObject,self.java -17,1407241419,7,Getting into programming with no experience network,self.java -38,1407221595,6,The Art of Separation of Concerns,aspiringcraftsman.com -16,1407221087,4,Java 8 Stream Tutorial,winterbe.com -15,1407219146,5,Lambda Expressions Java 8 Feature,groupkt.com -7,1407212774,15,In Detail A Simple Selection Sort In Java Along With Generics Implementation Code In Action,speakingcs.com -5,1407207559,11,Can someone tell me why nothing is rendering to my screen,pastebin.com -6,1407183706,11,Can I teach Java with Pi or Arduino xpost r programming,self.java -13,1407181669,8,Pursuing a career in Java Any tips pointers,self.java -3,1407180309,8,What should I be learning Stuck at swing,self.java -0,1407179504,10,class com java24hours root2 does not have a main method,self.java -0,1407177667,10,I haven t used Java since 2011 What has changed,self.java -4,1407174287,5,Monkey X Raph s Website,raphkoster.com -7,1407171212,6,Feel secure with SSL Think again,blog.bintray.com -27,1407167856,6,Maven Central HTTPS Support Launching Now,central.sonatype.org -0,1407163234,10,A little help with a java program I m making,self.java -13,1407156589,5,Spring Framework and OAuth Tutorial,blog.techdev.de -2,1407139190,11,Java Weekly 6 Micro Services CDI 2 0 NoEstimates and more,thoughts-on-java.org -7,1407130853,6,How to choose between Web Frameworks,self.java -22,1407130616,4,Java 8 Stream Tutorial,winterbe.com -136,1407123631,6,Falling back in love with Java,self.java -0,1407103122,7,How to undo Git Checkout in Netbeans,self.java -1,1407079159,12,Is it possible to make Spring Roo apps behave like Django apps,self.java -16,1407076214,7,Session Fixation and how to fix it,blog.frankel.ch -0,1407068560,5,Writing amp Reading Text Files,self.java -4,1407065732,5,Why we should love null,codeproject.com -0,1407059725,7,How Jetty embedded with cuubez rest framework,code.google.com -0,1407042039,9,Where can a high school java programmer find employment,self.java -0,1407034990,11,Why does my JSF AJAX only work on the second try,self.java -1,1407025519,8,Java EE Tutorial 11 Built in JSF Validation,youtube.com -3,1407013632,8,JavaFX runnable jar cannot find my music files,self.java -0,1407007088,9,How to add JFXtras to current project without Maven,self.java -0,1407003044,9,Is it a waste of time to learn Java,self.java -8,1407000890,6,Use Maven for Desktop only application,self.java -1,1406995262,8,Parallelism of esProc enhances Oracle Data Import Speed,datathinker.wordpress.com -0,1406994226,7,Comparison between different looping techniques in Java,groupkt.com -1,1406992489,3,Riemann JVM Profiler,github.com -6,1406977160,21,Pherialize Library for serializing Java objects into the PHP serializing format and unserializing data from this format back into Java objects,github.com -13,1406976865,6,Apache Tomcat 7 0 55 released,mail-archives.apache.org -23,1406974498,6,JCommander annotation based parameter parsing framework,jcommander.org -0,1406960809,9,How to Serialize Java Object to XML using Xstream,groupkt.com -6,1406955204,13,Best library to use to implement Grid based D amp D virtual tabletop,self.java -9,1406953623,5,JFreeChart 1 0 19 Released,jroller.com -14,1406937264,10,Best way to implement a desktop event calendar in Java,self.java -3,1406936237,5,Android and an external database,self.java -5,1406934375,11,How do you use Eclipse and Mylyn in the development process,self.java -11,1406933251,22,Alright my imperative and talented Java friends I ask you how would you refactor this code in a pre java 8 environment,self.java -3,1406926718,12,Selma is a bean mapper with compile time checks of correct mapping,xebia-france.github.io -16,1406911326,3,Dynamic CDI producers,jdevelopment.nl -5,1406909419,6,Spring Batch Parallel and distributed processing,blog.cegeka.be -5,1406906908,12,How to Build Java EE 7 Applications with Angular JS Part 1,javacodegeeks.com -7,1406903194,14,The 10 Most Annoying Things Coming Back to Java After Some Days of Scala,blog.jooq.org -3,1406896880,7,How to Learn Java for Free Guide,howtolearn.me -13,1406893506,5,JANSI Eliminating boring console output,jansi.fusesource.org -4,1406884713,8,Java EE Tutorial 10 Using Ajax with JSF,youtube.com -0,1406883762,2,Struts prerequisites,self.java -13,1406877900,5,Skill Sets for large organization,self.java -0,1406875817,3,Java Minecraft help,self.java -2,1406867444,9,Spring REST backend for handling Bitcoin P2SH multisignature addresses,self.java -0,1406833712,6,Value Objects in Java amp Python,stevewedig.com -7,1406832354,12,We built KONA Cloud with Java Javascript with Nashorn Check it out,konacloud.io -9,1406830442,6,Hibernate Statistics with Hawtio and Jolokia,blog.eisele.net -0,1406817918,7,R I P XML in Spring Applications,blog.boxever.com -11,1406808810,9,Maven Shell I only just found out this existed,blog.sonatype.com -3,1406798394,13,Is it good practice to rollback transactions from only unchecked exceptions Spring J2EE,self.java -5,1406788506,6,Java EE Tutorial 9 JSF Navigation,youtube.com -0,1406781994,9,Why one developer switched from Java to Google Go,infoworld.com -22,1406759649,7,Going to Java One What to expect,self.java -1,1406759398,8,Writing min function part 3 Weakening the ordering,componentsprogramming.wordpress.com -16,1406751945,5,Building Web Services with DropWizard,hakkalabs.co -0,1406740858,10,Where to upload jar file on server to run it,self.java -5,1406740184,4,On logging in general,self.java -0,1406736308,20,Web Development Using Spring and AngularJS Eighth Tutorial Released Integration of ng boilerplate for AngularJS Development Setup and General Overview,youtube.com -0,1406735641,10,Need Help Nested if inside switch statement Is it possible,self.java -6,1406734921,11,HawtIO on JBoss Wildfly 8 1 step by step Christian Posta,christianposta.com -9,1406731471,12,The Netflix Tech Blog Functional Reactive in the Netflix API with RxJava,techblog.netflix.com -9,1406723165,5,Best library for creating Reports,self.java -27,1406721948,8,Scala 2 12 Will Only Support Java 8,infoq.com -37,1406720879,9,What are the inherent problems in Logback s architecture,self.java -17,1406718198,12,Eating your own dog food threadlock detection tool finds locks in itself,plumbr.eu -9,1406714763,10,Big execution time difference between java Lambda vs Anonymous class,stackoverflow.com -17,1406710178,4,HTTP 2 and Java,weblogs.java.net -3,1406700391,7,Generate X509 certificate with Bouncycastle s X509v3CertificateBuilder,self.java -0,1406694211,7,Crawling a site and indexing its content,self.java -1,1406689704,18,Spring XD 1 0 GA makes Streaming amp Batch Ingest Analyze Process Export drop dead simple for Hadoop,spring.io -4,1406672893,9,Scala Named a Top 10 Technology for Modern Developers,typesafe.com -2,1406672310,11,Spring MVC and XRebel Uncovering HttpSession Issues with an Interactive Profiler,zeroturnaround.com -6,1406669306,9,Encrypt private key with password when creating certificate programmatically,self.java -7,1406668013,15,Creating a JavaFX Application pure Java VS SceneBuilder amp FXML and testing it with Automaton,sites.google.com -0,1406659547,6,Android Tutorial Contest 10K in Prizes,self.java -1,1406659197,4,Guess a Number game,self.java -1,1406658145,7,Making my code run on a server,self.java -2,1406655078,4,Java ME Certification Prep,self.java -1,1406654388,2,Kata Potter,self.java -0,1406649059,9,Java Concurrency Future Callable and Executor Example Java Hash,javahash.com -3,1406644365,7,MongoJack JAX RS gt Return Dynamic Documents,self.java -66,1406642398,11,IEEE ranks Java as Top Programming Language Despite Ignoring Embedded Capability,twitter.com -0,1406641948,10,Dependency Injection in Scala using MacWire DI in Scala guide,di-in-scala.github.io -0,1406641564,6,Curryfication Java m thodes amp fonctions,infoq.com -6,1406641462,8,Testing Java EE applications on WebLogic using Arquillian,event.on24.com -14,1406636513,9,New to Java What package manager do you use,self.java -15,1406619186,18,One of the most interesting bugs in the Java compiler or Eclipse compiler Or in the JLS itself,stackoverflow.com -0,1406618534,7,A Java 8 Spring 4 reference application,blog.techdev.de -26,1406603897,5,Comparing Java HTTP Servers Latencies,bayou.io -5,1406598999,3,Multidimensional array looping,self.java -8,1406598804,3,Textedit vs Eclipse,self.java -1,1406580816,7,DropWizard MongoDB delivering dynamic documents in JSON,self.java -3,1406578309,3,OpenXaja and ABL,self.java -14,1406575847,9,Library to copy jdbc results into objects Not Hibernate,self.java -18,1406567025,7,Spring Framework 4 1 Spring MVC Improvements,spring.io -0,1406566535,5,Spring Data Dijkstra SR2 released,spring.io -10,1406561524,9,Discover what s in CDI 2 0 specification proposal,cdi-spec.org -2,1406546482,6,External configuration for a Spring Webapp,self.java -16,1406543705,13,Java Weekly 5 Metaspace Server Sent Events Java EE 8 drafts and more,thoughts-on-java.org -16,1406538598,6,Exception Handling in Asynchronous Java Code,blog.lightstreamer.com -0,1406528433,4,Update Java Loop issue,self.java -3,1406526766,10,Remote profiling using SSH Port Forwarding SSH Tunneling on Linux,blog.knoldus.com -1,1406525345,4,Spring MVC with Hibernate,malalanayake.wordpress.com -14,1406520549,3,PrimeFaces Responsive Grid,blog.primefaces.org -0,1406497987,6,Start with JAVA or Android SDK,self.java -5,1406493469,4,Stuck on Java loop,self.java -5,1406475798,6,Spring configuration modularization for Integration Testing,blog.frankel.ch -0,1406467108,3,My Settings class,pilif0.4fan.cz -0,1406447842,4,I need help plz,self.java -0,1406446139,8,Java NewBie with slideshow of display Images Problem,self.java -5,1406401655,6,Jetty 9 2 2 v20140723 Released,jetty.4.x6.nabble.com -25,1406400934,8,The best second language to learn along java,self.java -11,1406390978,18,Pure Java Implementation of an Interactive 3D Graph Rendering Engine and Editor Using a Spring Embedder Algorithm 1200Loc,github.com -26,1406382207,5,Servlet 4 0 The Aquarium,blogs.oracle.com -4,1406351963,6,Help me ramp up in Java,self.java -0,1406337240,29,Anyone looking for a job We are staffing 8 US based Java developers at Accenture for some consulting work PM me your resume contact info if you are interested,self.java -24,1406336899,31,Anyone here using Azul Zing in production Are you happy about your experience Do you recommend it And what are its pros and cons compared to Oracle JVM in your opinion,self.java -0,1406323385,6,Fellow programmers I need your assistance,self.java -10,1406316769,8,Best way to get a Java Developer Internship,self.java -4,1406297796,15,Is JavaScript HTML5 development going to surpass Java JEE as an enterprise platform for development,self.java -0,1406250255,6,How do I get user input,self.java -11,1406249505,4,Working remotely with IntelliJ,self.java -3,1406239798,5,How should I learn Java,self.java -27,1406234582,6,Implement compareTo Using Google Guava Library,dev.knacht.net -4,1406234246,2,CORS Filter,software.dzhuvinov.com -5,1406223025,9,Handling static web resources with Spring Framework 4 1RC1,spring.io -0,1406214549,3,problem with netbeans,self.java -5,1406205586,19,Web Development Using Spring and AngularJS Seventh Tutorial Released Review of code and testing the completed backend using Postman,youtube.com -9,1406196210,3,PrimeFaces Accessibility Update,blog.primefaces.org -8,1406187423,5,Any doc odt java generator,self.java -1,1406173624,8,Can I do this and if so how,self.java -0,1406172768,4,Where do I start,self.java -2,1406163139,11,Has anyone used Lynda com to learn catch up with JAVA,self.java -1,1406156729,11,How to use tab button to change between JTextFields in Netbeans,self.java -21,1406149787,7,Interview with Juergen Hoeller at QCon 2014,infoq.com -10,1406149517,4,Hadoop without code complication,infoq.com -2,1406148668,5,Easy Ways to Learn Java,self.java -46,1406140044,9,How to turn off junkware offers when updating Java,twitter.com -1,1406129648,10,Cloudbreak New Hadoop as a Service API Enters Open Beta,infoq.com -37,1406121275,11,How to Instantly Improve Your Java Logging With 7 Logback Tweaks,takipiblog.com -1,1406121020,9,Do I really have a car in my garage,stackoverflow.com -14,1406067531,5,JDK 8u11 Update Release Notes,oracle.com -23,1406066141,4,Log4j 2 0 released,mail-archives.apache.org -1,1406054512,7,The elements still holding back web xml,movingfulcrum.tumblr.com -0,1406025444,2,Java Developers,nsainsbury.svbtle.com -11,1406025378,9,Time memory tradeoff with the example of Java Maps,java.dzone.com -3,1406018989,14,Whitespace Matching Regex Java Or how you ve probably gotten it wrong so far,stackoverflow.com -75,1406016169,10,RichFaces throws in the towel JBoss to focus on AngularJS,bleathem.ca -6,1406014445,15,I m about to learn Java at uni and I have a couple of questions,self.java -45,1405984191,5,AlgPedia The free algorithm encyclopedia,algpedia.dcc.ufrj.br -0,1405981556,5,Proper Debugging in eclipse video,youtube.com -7,1405979806,5,The best approach to learn,self.java -0,1405959965,1,Tuples,benjiweber.co.uk -11,1405957412,24,Shameless self promotion bignumutils Utility classes for dealing with BigDecimal and BigInteger something I made a while ago to make BigXXXX operations more clear,code.google.com -14,1405945641,6,Implementing size on a concurrent queue,psy-lob-saw.blogspot.com -23,1405944661,5,JEP 191 Foreign Function Interface,openjdk.java.net -9,1405944142,14,Application Servers are Sort of Dead okay not really but they are used differently,beyondjava.net -48,1405933555,8,Introducing Para an open source back end framework,self.java -0,1405911842,11,How to Create and use Enumerated types in Java Java Talk,javatalk.org -5,1405906254,12,Question about public private keys from using keytool to generate certificate keystore,self.java -20,1405883983,11,Looking for a good text texts to learn JSF Spring Hibernate,self.java -10,1405878363,25,Rottentomatoes as of 1 45pm EST Jul 20 I m sure we ve all seen the ol NoClassDefFoundError exception at some point in our lives,i.imgur.com -9,1405873832,8,Spring Guice dependency injection and the new keyword,self.java -7,1405872403,12,Invalid Length in LocalVariableTable Using Spring Hibernate Java 8 streams Any Ideas,self.java -11,1405847986,15,Searching for somebody pointing out the biggest mistakes I made in my first Java game,self.java -3,1405834577,10,Osama Oransa s Blog JPA 2 1 Performance Tuning Tips,osama-oransa.blogspot.sg -9,1405828344,15,The Great White Space Debate space around the terms of a for loop or no,medium.com -2,1405802991,11,Font for any Java related program is displaying improperly ex Minecraft,self.java -0,1405796362,10,Exported jar Program Only Runs on my Desktop Eclipse Issue,self.java -8,1405791405,4,Hybrid JavaFX Desktop Applications,twitter.com -18,1405784600,9,Java Learning Design Patterns using a Problem Solution approach,self.java -0,1405747429,8,Need help removing a jrat from a file,self.java -10,1405740966,2,Fixing TreeSet,self.java -0,1405733978,8,Looking for a Java programmer that loves hockey,self.java -8,1405720690,19,Attention Big Data devs Spring XD 1 0 0 RC1 released now is the time to preview and feedback,spring.io -4,1405714932,7,War deployment in Wildfly using Eclipse Luna,self.java -1,1405714059,4,Maven Shading LGPL Jar,self.java -3,1405708603,7,How to generate a random long number,self.java -52,1405705904,8,Java is the Second Most Popular Coding Language,blog.codeeval.com -13,1405690755,6,Java 8 Functional Interface Naming Guide,blog.orfjackal.net -0,1405690003,2,Need help,self.java -14,1405687351,6,Lambda Expression Basic Example Java 8,ravikiranperumalla.wordpress.com -7,1405687336,6,Serializable What does it acutally do,self.java -11,1405673903,6,Where Has the Java PermGen Gone,infoq.com -84,1405672173,13,Log4J2 is final congrats to the team and welcome our new logging overlords,logging.apache.org -5,1405665995,10,How do I put a video in my Swing application,self.java -0,1405659323,7,java lang StackOverFlowError in java util Hashmap,self.java -13,1405639065,6,Any Eclipse Plugin to Encourage Javadoc,self.java -9,1405630147,11,Contexts and Dependency Injection for Java 2 0 CDI 2 0,blogs.oracle.com -5,1405624023,2,crl checking,self.java -8,1405623527,4,Saving debug variables state,self.java -17,1405611045,3,Java programs grader,self.java -8,1405608887,9,What to learn next x post from r learnjava,self.java -16,1405607829,9,Java API for JSON Binding JSON B The Aquarium,blogs.oracle.com -27,1405604250,14,Recently ran into this problem and this post was really mother f king helpful,code.nomad-labs.com -2,1405587295,7,Jaybird 3 0 snapshot available for testing,firebirdnews.org -0,1405585062,16,The output of my Java code changes arbitrarily Could Date or Calendar be the culprit Help,self.java -26,1405580448,3,JDK8 Fibonacci stream,jacobsvanroy.be -3,1405572040,12,Per request cache of properties query results etc How to do it,self.java -13,1405559558,3,Storing encryption key,self.java -5,1405558749,3,OCAJSE7 failed twice,self.java -2,1405557971,18,Trying to read large txt doc to array but when ran the array is filled with Null values,self.java -0,1405546603,5,NEW TO JAVA NEED HELP,self.java -2,1405543241,6,Hierarchical faceting using Spring data solr,self.java -0,1405538133,13,WTF Java wont add the site to the site list of exceptions HELP,self.java -2,1405533854,5,Chat server client I made,self.java -6,1405531152,34,I am so frustrated I just can t get started with developing somehing with java or an android game I can t get past all the installation stuff on tutorials I always get errors,self.java -10,1405525295,12,Build HTML Trees in Java Code We don t need no template,bayou.io -1,1405520831,15,Having a problem coding with arrays that accepts an array of objects in a class,self.java -3,1405520460,4,Java Debuggers and Timeouts,insightfullogic.com -5,1405518352,9,Creating a Null Pointer Checker for series of objects,self.java -0,1405516686,10,Is Retrofit ErrorHandler acceptable for handle an api level errors,self.java -31,1405508561,20,Hibernate Cache Is Fundamentally Broken and Hibernate team just closed the associated issue after being open for a few years,squirrel.pl -80,1405498101,8,lanterna Easy console text GUI library for Java,code.google.com -1,1405474848,7,Lightweight super fast RESTful web service engine,cuubez.com -2,1405467982,5,AlgPedia the free algorithm encyclopedia,algpedia.dcc.ufrj.br -23,1405462950,11,Java SE 8 Update 11 and Java SE 7 Update 65,blogs.oracle.com -4,1405456131,6,Oracle Critcial Patch Update July 2014,oracle.com -31,1405453046,6,Why doesn t Java have tuples,self.java -3,1405452478,10,Is it bad to import more packages than you need,self.java -8,1405445452,7,JSR 311 JAX RS vs Spring REST,self.java -15,1405444180,5,JSON B draft JSR available,java.net -0,1405443440,14,Programmers of Reddit I need your Help on this java Tic Tac Toe game,self.java -6,1405442609,10,An alternative approach of writing JUnit tests the Jasmine way,mscharhag.com -6,1405434327,7,Intro to Java textbook with actual problems,self.java -8,1405433830,5,Fixing Garbage Collection Issues Easily,blog.codecentric.de -13,1405427672,5,Native launcher for Java applications,richjavablog.com -21,1405421738,9,Library for converting documents into a different document format,documents4j.com -21,1405420331,10,Needing Advice Do I learn Spring MVC JSF or AngularJS,self.java -6,1405414744,4,Java text edit component,self.java -22,1405413967,4,Java s Volatile Modifier,blog.thesoftwarecraft.com -12,1405405413,9,Schedule Java EE 7 Batch Jobs Tech Tip 36,blog.arungupta.me -2,1405393715,5,How to input multiple variables,self.java -14,1405391609,13,Would love a casual code review if you ve got a spare moment,self.java -0,1405381110,6,Java tic tac toe game help,self.java -15,1405371012,11,ArrayList and memory layout in Java and a comparison to C,self.java -4,1405369327,4,Need help with JApplet,self.java -3,1405365782,15,Stuck on a problem involving a method dealing with loops strings and a return value,self.java -0,1405363010,4,Need help with code,self.java -37,1405360978,7,Java s generics are getting more generic,sdtimes.com -9,1405360775,6,Java 8 More Functional Relational Transformation,blog.jooq.org -0,1405355260,20,Will Java EE 6 7 skills be in demand as much as Spring Hibernate over the next couple of years,self.java -11,1405347523,10,Server vs client side rendering AngularJS vs server side MVC,technologyconversations.com -6,1405341998,8,Latest and the best SPRING 4 HIBERNATE 4,jabahan.com -0,1405297784,8,I need some help with a simple problem,self.java -78,1405289582,13,Why do all the code teaching websites like CodeAcademy have everything but java,self.java -4,1405282216,6,Erros occurring during build in Eclipse,self.java -3,1405267228,7,Calculate Hash Values Using Google Guava Library,dev.knacht.net -5,1405257104,13,Summer project first time working with GUI Best way to go around it,self.java -8,1405256917,7,JBoss EAP 6 2 Clustered Setup Testing,self.java -24,1405246678,11,The Java Origins of Angular JS Angular vs JSF vs GWT,blog.jhades.org -23,1405246176,11,July 2014 Infant Edition State of the Specialization by Brian Goetz,cr.openjdk.java.net -12,1405209556,13,Is it considered bad practice to use toString hashCode as the hashCode method,self.java -14,1405196930,13,Get your Event Sourced web application development started with one line using Maven,blogg.bouvet.no -0,1405194713,5,Como conectar Java y Mysql,hermosaprogramacion.blogspot.com -18,1405186227,10,How popular Apache Camel vs Mule ESB vs Spring Integration,andhuvan.wordpress.com -27,1405165884,15,Question What is the real world use case of Nashorn JavaScript engine in Java 8,self.java -3,1405157505,7,IntelliJ IDEA 13 1 is painfully slow,self.java -0,1405150326,8,Fast JSF project startup with happyfaces maven archetype,intelligentjava.wordpress.com -0,1405148726,33,Can anyone help me with setting up some small java programs as assignment It would be very helpful if I can get some links that can provide with some programs Thanks in advance,self.java -2,1405137482,7,Writing to the top of a file,self.java -9,1405126391,9,Musing about a build tool that doesn t exist,self.java -1,1405123864,4,Gson array loading help,self.java -5,1405120054,6,Good free resource to learn Swing,self.java -7,1405111650,4,PC Minecraft on Pi,self.java -7,1405103809,4,Java Built in Exceptions,tutorialspoint.com -35,1405100422,5,Java Memory Model Pragmatics transcript,shipilev.net -3,1405099679,3,eclipse not opening,self.java -8,1405088849,3,Why IntelliJ Idea,self.java -7,1405084977,7,gonsole weeks a git console for eclipse,codeaffine.com -57,1405077698,12,Why Build Your Java Projects with Gradle Rather than Ant or Maven,drdobbs.com -0,1405067404,11,JSF 2 x Tip of the Day Encoding Text for XML,javaevangelist.blogspot.nl -6,1405050589,17,Looking forward to replace Spring Transactional with org softus cdi transaction transaction cdi Has anybody tried it,self.java -3,1405044562,2,Simple GUI,self.java -25,1405043833,12,A performance comparison redux Java C and Renderscript on the Nexus 5,learnopengles.com -1,1405037981,4,Configuring Maven in Eclipse,self.java -9,1405037343,9,Spring Session Project debuts a new approach to HTTPSession,spring.io -14,1405020052,3,PrimeFaces MetroUI Demo,blog.primefaces.org -5,1405018856,12,My first big project need some help with XML StAX based parsing,self.java -11,1405014846,5,Defaults in Java EE 7,blog.arungupta.me -21,1405014212,7,JavaEE From zero to app in minutes,opendevelopmentnotes.blogspot.com -0,1405000357,13,What are some noticeable amp concrete examples of Java applications Particularly web applications,self.java -5,1404996299,15,Web Development Using Spring and AngularJS Tutorial 6 Persistence Configuration using H2 DBCP and Hibernate,youtube.com -0,1404996177,8,Spring Batch Handling exceptions and retrying Cegeka Blog,blog.cegeka.be -6,1404993846,8,Ensuring proper Java character encoding of byte streams,blog.lingohub.com -38,1404987990,6,A Call For Help Awesome Java,self.java -6,1404967019,1,Swing,self.java -5,1404945614,10,What resources do you recommend for 3D java game dev,self.java -11,1404942930,5,Java Annotated Monthly June 2014,blog.jetbrains.com -28,1404936350,13,Forget about JavaOne Let s talk about the feature list for Java 9,theserverside.com -8,1404934035,10,Resurfaced performance issue in mojarra fixed in 2 2 7,blog.oio.de -2,1404933637,4,Java Assignments and Projects,self.java -4,1404924585,4,Result New Project Valhalla,mail.openjdk.java.net -0,1404907760,4,Finally return considered harmful,schneide.wordpress.com -15,1404906944,10,Writing Tests for Data Access Code Unit Tests Are Waste,petrikainulainen.net -28,1404903780,3,Java Classloaders Tutorial,zeroturnaround.com -19,1404902992,9,Convert Java Objects to String With the Iterator Pattern,blog.stackhunter.com -14,1404895732,9,RxJava Java SE 8 Java EE 7 Arquillian Bliss,lordofthejars.com -5,1404864593,8,How to organize projects with custom lambda interfaces,self.java -2,1404858425,2,Clash Inspector,clashinspector.com -1,1404858313,2,RxJava Observable,github.com -11,1404858243,9,Bouncy Castle final beta of 1 51 now available,bouncy-castle.1462172.n4.nabble.com -0,1404858236,9,Where to report bugs found within the java libraries,self.java -1,1404858173,7,VisNow generic visualization framework in Java technology,visnow.icm.edu.pl -3,1404858097,9,Base abstractions and templates for value classes for Java,github.com -0,1404857288,8,Apache Tomcat Native 1 1 31 released SSL,mail-archives.apache.org -2,1404845716,10,Start a service in a thread from application scoped bean,self.java -0,1404845032,5,what kind of this sintax,self.java -1,1404844460,4,Finding Relative File Path,self.java -0,1404839623,8,Building the PrimeFaces Mobile translation demo with NetBeans,robertjliguori.blogspot.com -8,1404833795,38,Can one specialize in one part of java and hope to get a job For example JavaFX or JavaServer Faces Can I specialize in one of them and have a good chance of finding employment as a programmer,self.java -1,1404832479,6,Memory barriers and visibility between threads,self.java -2,1404828419,2,Serializing ScriptEngine,self.java -45,1404825273,7,Top 50 Threading Questions from Java Interviews,javarevisited.blogspot.sg -55,1404815326,8,Develop using IntelliJ IDEA Check your productivity guide,blog.idrsolutions.com -10,1404807470,7,JBoss Tools m2e 1 5 0 improvements,tools.jboss.org -11,1404803902,10,Java EE 7 and more on WebLogic 12 1 3,blogs.oracle.com -3,1404799385,5,Method not returning int help,self.java -8,1404792913,7,Securing Your Applications with PicketLink and DeltaSpike,in.relation.to -1,1404780396,17,Can anyone link me to a really good tutorial on how to use Scene Builder with NetBeans,self.java -1,1404777530,7,Good book for Java and OOP design,self.java -0,1404772919,7,Project I can finish in 4 days,self.java -0,1404772188,26,I don t know if I am asking this right but why don t I have to make an object for third party or external libraries,self.java -9,1404771334,9,JUnit testing exceptions with Java 8 and Lambda Expressions,blog.codeleak.pl -0,1404767968,11,The best way to visualize TONS of data on interactive chart,self.java -0,1404765077,8,How to subtract an int from an int,self.java -2,1404763743,7,Best Way to Learn Web Dev Technologies,self.java -13,1404763421,6,Jaxrs Basic HTTP Authentication sample application,code.google.com -0,1404761281,5,Best java architecture for SaaS,self.java -12,1404759789,7,Java interview questions for a junior beginner,self.java -3,1404749740,6,How can I combine multiple Doclets,self.java -15,1404735672,11,Java Weekly 3 Microservices Java 8 features upcoming events and more,thoughts-on-java.org -0,1404735008,4,Resources to learn java,self.java -12,1404734337,8,Practice before starting a junior Java dev job,self.java -14,1404731630,8,What s the difference between Tomcat and TomEE,self.java -5,1404728298,9,Is there any way to modify code at runtime,self.java -8,1404726456,5,Lambda Behave 0 2 Released,insightfullogic.com -2,1404726393,9,Cluster Analysis in Java with Dirichlet Process Mixture Models,blog.datumbox.com -22,1404719189,6,Videos of all Geekout 2014 presentations,2014.geekout.ee -11,1404718660,5,Free Spring Framework Course 101,youtube.com -4,1404710630,30,I m new to non gui programming languages but not new to programming as a concept What s the best way for me to learn java for all general purposes,self.java -8,1404683134,3,Understanding Scanner Sc,self.java -5,1404681510,5,Mavenize your custom PrimeFaces theme,jsfcorner.blogspot.com -10,1404659671,4,Easier Spring version management,blog.frankel.ch -1,1404620849,16,How can I save a hashmap so I can read it later after terminating my program,self.java -2,1404610823,4,Basic java before android,self.java -3,1404605759,5,Setting up a swing GUI,self.java -10,1404595804,4,Apache Commons Sandbox OpenPgp,commons.apache.org -20,1404586033,5,Maven 3 2 2 Release,maven.40175.n5.nabble.com -15,1404585636,8,Netty 4 0 21 Final released Performance improvements,netty.io -11,1404560920,7,JCP News WebSocket and Batch maintenance reviews,blogs.oracle.com -3,1404511290,9,Best way to visualize transactions within a spring application,self.java -6,1404507268,5,Introducing the Java EE Squad,blogs.oracle.com -7,1404498819,4,Tools for java teacher,self.java -0,1404497631,11,New to java trying to figure Time for scripting in unity,self.java -41,1404493234,6,Java vs Scala Divided We Fail,shipilev.net -4,1404484865,5,Help writing some basic programs,self.java -12,1404475925,8,Spring Social Facebook 2 0 0 M1 Released,spring.io -0,1404473008,3,new to java,self.java -2,1404453991,2,CVQuest feedback,self.java -2,1404424179,13,Everything Developer Need to Know About new Oracle WebLogic 12 1 3 Whitepaper,oracle.com -0,1404422688,7,How to switch between two class implementations,self.java -0,1404415928,12,Spring 4 CGLIB based proxy classes with no default constructor Codeleak pl,blog.codeleak.pl -1,1404414924,15,InfoQ s Matt Raible on Spring IO Platform news what it means to Java devs,infoq.com -0,1404412965,23,Why is Java the most popular language Why do Java programs have terrible UI s Can Java not use the Microsoft Windows look,self.java -8,1404411214,6,Developers Guide to Static Code Analysis,zeroturnaround.com -2,1404407222,8,Problems comparing strings that are supposedly the same,self.java -18,1404406644,28,Michael Vorburger s Blog v2 Java 8 null type annotations in Eclipse Luna v4 4 your last NullPointerException ever The End of the World as we know it,blog2.vorburger.ch -2,1404402697,6,Incompatible JVM Please help a newbie,self.java -8,1404396782,7,Eclipse Luna hangs in every other minute,self.java -57,1404390360,17,Web Development Using Spring and AngularJS Fifth Tutorial Released Spring Exceptions JSON Annotations and the ArgumentCaptor object,youtube.com -8,1404389831,6,Explicit vs Implicit configuration in Spring,literatejava.com -3,1404347709,10,Boncode IIS to Tomcat Connector alternative to Apache ISAPI plugin,tomcatiis.riaforge.org -1,1404347702,6,Help With Coding Priority Queues Java,self.java -2,1404338153,4,Help with magical code,self.java -2,1404337297,19,Beta2 of compile time model mapping generator MapStruct is out with support for Java 8 Joda Time and more,mapstruct.org -0,1404333760,3,Is Java safe,self.java -4,1404333268,9,How to send a webdriver to a javascript link,self.java -12,1404333140,10,Who else thinks that Eclipse Luna looks better on Ubuntu,imgur.com -24,1404328105,5,JAVA 4 EVER Official Trailer,youtube.com -4,1404325402,3,Thoughts on OrientDB,self.java -23,1404323835,4,Project Jigsaw Phase Two,mreinhold.org -8,1404323272,5,Mojarra 2 1 29 released,java.net -27,1404313816,14,You Want to Become a Software Architect Here is Your Reading List Jens Schauder,java.dzone.com -12,1404306483,6,Project Nashorn JavaScript on the JVM,blog.codecentric.de -0,1404304534,18,Are there any tutorials out there showing how you can create a Restful Webservice with Maven and Eclipse,self.java -91,1404289945,9,Why I not impressed by Luna s Dark Theme,imgur.com -3,1404270736,19,I have 50 to spend on books to learn Java and computer science in general What should I buy,self.java -0,1404269037,15,Web application simple and SPA simple page application using Spring MVC Thymeleaf Bootstrap Twitter Flight,apprenticeshipnotes.org -1,1404264832,14,Interview with Fred Guime organizer Chicago Java UG CJUG at GOTO Chicago 2014 UGtastic,ugtastic.com -12,1404245213,9,AnimateJSF a thin JSF library to animate JSF components,animatejsf.org -1,1404243717,14,Codelet Automated insertion of example code into JavaDoc using taglets Call for beta testers,self.java -1,1404242817,10,Yet another way to handle exceptions in JUnit catch exception,blog.codeleak.pl -5,1404242259,10,How to make Java more dynamic with runtime code generation,zeroturnaround.com -1,1404236527,7,Java EE IDE Which do you prefer,self.java -18,1404236490,6,What is the status of Swing,self.java -37,1404235843,9,Next major version of Gradle is out 2 0,reddit.com -1,1404235795,9,Anyone willing to help out with a Geotool issue,self.java -0,1404225145,7,Using Web Components in plain Java Blog,vaadin.com -19,1404210148,8,Widespread locking issue in log4j and logback appenders,plumbr.eu -35,1404183389,6,Open source java projects for beginners,self.java -4,1404174900,20,Beginner here just made a simple program to output random numbers and am proud of myself but have some questions,self.java -1,1404173657,11,Java Update 60 being interrupted every time I try to install,self.java -7,1404167108,5,Performance of Random nextInt n,self.java -2,1404152108,7,Spring Data release train Dijkstra SR1 available,spring.io -9,1404145750,8,Test Data Builders and Object Mother another look,blog.codeleak.pl -12,1404144528,7,Using websockets in Java using Spring 4,syntx.io -3,1404138843,9,Looking for suggestions to supplement my income with Java,self.java -55,1404136156,7,IntelliJ IDEA 14 Early Preview is Available,blog.jetbrains.com -0,1404135619,1,Java,self.java -0,1404132290,12,learn how to create website pages and forms with js and java,webix.com -5,1404130726,13,While comparing java web frameworks what would be the most relevant comparison points,self.java -0,1404127786,4,Des Lenses en Java,infoq.com -5,1404121396,4,Rest web service sample,javafindings.wordpress.com -2,1404119781,5,IDE specific shortcut for sysout,therdnotes.com -54,1404110302,12,Why Lingohub is switching from Ruby on Rails to Java Spring MVC,snip.ly -16,1404075755,8,Why is Spring MVC better than Servlets JSP,self.java -13,1404073934,4,java for game creation,self.java -13,1404073049,13,Java Weekly 2 JPA 2 1 Java8 JSR 351 Eclipse Luna and more,thoughts-on-java.org -10,1404069269,7,Apache Maven JAR Plugin 2 5 Released,maven.40175.n5.nabble.com -29,1404067402,22,Retrofit is a type safe REST client just define an interface with url templates and request bodies x post from r javapro,square.github.io -4,1404065398,8,Java Bean Introspector and Covariant Generic Returns 2012,znetdevelopment.com -1,1404061788,3,Conflicting String Methods,self.java -17,1404061696,7,Apache Tomcat 8 0 9 stable available,mail-archives.apache.org -3,1404058322,8,First release of Integration Testing from the Trenches,blog.frankel.ch -0,1404019728,6,JUnit Testing Private Methods and Fields,markreddy.ie -10,1403993506,6,Jasper Reports JRXML Iterating a list,self.java -2,1403982969,16,Java TIL You can break to an outer loop with a label x post r JavaTIL,reddit.com -0,1403950119,10,How to cast java io file to java lang class,self.java -18,1403941526,7,Bayou Async Http Server for Java 8,bayou.io -0,1403936076,15,A variable timer I wrote in my free time anyone see anything wrong with it,self.java -15,1403905043,4,Java web host recommendations,self.java -10,1403904406,7,nanobench Tiny benchmarking framework for Java 8,github.com -9,1403901592,5,Packaging PostgreSQL with Java Application,self.java -69,1403900575,9,What s some simple code that is really smart,self.java -27,1403899125,19,IntelliJ 14 EAP opens Code Coverage tool Structural Search and Replace and Type Migration refactoring part of Community Edition,blog.jetbrains.com -13,1403889628,6,Using Markdown syntax in Javadoc comments,mscharhag.com -4,1403888125,20,Web Development Using Spring and AngularJS Fourth Tutorial Released Covering Controller Development Integration of HATEOAS Support and The PathVariable Annotation,youtube.com -0,1403885699,13,Please give me the link torrent or direct to download JAVA Tutorial Videos,self.java -21,1403883244,5,Blog Introducing Spring IO Platform,spring.io -2,1403882157,11,Any Vaadin or Struts2 Developers that can answer a few questions,self.java -5,1403880946,7,IntelliJ not refreshing file statuses and diffs,self.java -2,1403873405,11,When do you like to take time to learn new tech,self.java -13,1403864789,19,Oracle WebLogic Server 12 1 3 is released with emphasis on HTML 5 apps JAX RS websocket JSON JPA,blogs.oracle.com -12,1403828033,10,Large projects How do you get up to speed quickest,self.java -0,1403810037,9,Selection from MySql using JDBC Xpost from r MySql,self.java -86,1403806257,5,Top 10 Eclipse Luna Features,eclipsesource.com -6,1403800079,12,Spring IO Platform releases a versioned cohesive Spring as a Maven BOM,spring.io -6,1403796343,5,Notes on False Sharing Manifestations,psy-lob-saw.blogspot.com -15,1403766524,6,Making operations on volatile fields atomic,vanillajava.blogspot.co.uk -9,1403766458,5,New Ribbon component in PrimeFaces,blog.primefaces.org -1,1403754120,23,Is it a common acceptable pattern to have a maven module just for model classes so that it can be shared between apps,self.java -2,1403751751,14,How to test for performance and issues of sharing a database with another app,self.java -0,1403751596,3,Updated Java Tutorials,coffeehouseprogrammers.com -3,1403748538,8,Service for Java Programming similar to Google Docs,self.java -3,1403743973,10,A modern testing and behavioural specification framework for Java 8,richardwarburton.github.io -2,1403737573,9,Help with action bar in eclipse Dev android tutorial,self.java -0,1403735463,8,Why should we dump the Java EE Standard,lofidewanto.blogspot.de -2,1403734492,5,Java EE Code Visualization Tools,self.java -0,1403732082,2,Learning Java,self.java -0,1403725689,25,Trying to generate thumbnails from an array of video files and I have no idea what library or how I would go about doing this,self.java -8,1403725585,4,Eclipse Luna and JDK8,jdevelopment.nl -0,1403724516,19,Spring Boot 1 1 2 available The Ease of Ruby Portability of Spring and the perfect BOYC PaaS container,spring.io -3,1403707635,15,Java class Packet contains array of objects of type Packet Please explain to Java newcomer,self.java -2,1403703010,6,Spring Batch Develop robust batch applications,blog.cegeka.be -109,1403701616,7,Eclipse 4 4 Luna is available now,download.eclipse.org -19,1403695451,8,An ultra lightweight high precision logger for OpenJDK,developerblog.redhat.com -10,1403692098,15,what specific types of apps are best to be developed on specific Java web frameworks,self.java -5,1403670508,7,Design consideration for sharing database between applications,self.java -2,1403655867,17,SpringOne2gGX 2014 Super Early Bird extended to June 30th Dallas TX Omni Hotel Sept 8 11 2014,springone2gx.com -32,1403649486,8,A library to generate PDF from JSON documents,github.com -20,1403641885,6,NetBeans IDE 8 0 Satisfaction Survey,netbeans.org -5,1403637963,12,Experienced C Ruby developer looking to get into Java looking for resources,self.java -0,1403623329,5,Writing a FastCGI listening socket,self.java -5,1403616640,5,Astyanax Connecting to multiple keyspaces,markreddy.ie -13,1403615109,5,starting open source scientific project,self.java -26,1403601401,10,New book Java EE 7 with GlassFish 4 Application Server,blogs.oracle.com -8,1403597768,6,Classes in the Java Language Specification,vanillajava.blogspot.co.uk -35,1403594660,11,Experiences with migrating from JBoss AS 7 to WildFly 8 1,jdevelopment.nl -18,1403584856,4,FizzBuzz and other Questions,self.java -0,1403541688,7,Is Java worth using for web applications,self.java -0,1403538481,5,How treemap works in java,javahungry.blogspot.com -48,1403535747,11,Get free Java stickers to show your love of the language,java.net -13,1403514486,7,Java Tools and Technologies Landscape for 2014,zeroturnaround.com -3,1403511752,8,Broadleaf Commerce Enterprise eCommerce framework based on Spring,github.com -1,1403511531,6,Apache PDFBox 1 8 6 released,mail-archives.apache.org -18,1403509903,9,Java Weekly 1 CDI Java8 Bean Validation and more,thoughts-on-java.org -10,1403505143,5,Netty with Forked Tomcat Native,netty.io -0,1403487393,3,Menu Bar help,self.java -0,1403466998,6,Can someone help me install eclipse,self.java -0,1403464832,7,The right bean at the right place,blog.frankel.ch -0,1403463953,8,Any Unique Software IDEA to Make Money Quickly,self.java -40,1403435976,8,CFV Project Valhalla Project Proposal by Brian Goetz,mail.openjdk.java.net -17,1403428031,5,Enhance your testing with Spock,thejavatar.com -2,1403424592,10,Modifying User s Input on Command Line with Java Code,self.java -4,1403387263,10,Tyche a simple way to make random junit test data,self.java -0,1403385444,5,Need help with this error,self.java -24,1403352604,16,Tweety A comprehensive collection of Java libraries for logical aspects of artificial intelligence and knowledge representation,tweetyproject.org -4,1403352541,10,Implementation of the Try Success Failure Scala API for Java,github.com -2,1403343445,13,It s not Spring anymore it s the summer of Java EE 7,nmpallas.wordpress.com -6,1403322889,9,Bridging the gap between Domain objects data and JavaFX,self.java -18,1403319095,9,What is a good road map for learning Java,self.java -0,1403297811,5,Embedding Perl 6 in Eclipse,donaldh.github.io -10,1403292347,7,Getting started with Java what s relevant,self.java -4,1403291864,6,AWS SDK For Java TransferManager Lifecycle,github.com -18,1403288878,5,e commerce website in java,self.java -11,1403286206,11,It shouldn t hurt to write Command Line Applications in Java,news.ycombinator.com -4,1403275317,18,Zipkin is a distributed tracing system for gathering timing data from distributed architectures x post from r javapro,github.com -12,1403272430,8,Boston area developers JUDCon2014 Boston is next week,developerblog.redhat.com -4,1403269511,18,Web Development Using Spring and AngularJS Third Tutorial Released Covering Jackson Configuration and The Spring MVC Test Framework,youtube.com -8,1403264493,9,The Best Java 8 Resources Your Weekend is Booked,blog.jooq.org -56,1403256867,17,The complete Java Tools and Technology Landscape for 2014 report data in a single mind map image,zeroturnaround.com -2,1403231258,13,How to run javascript code in JavaFx WebView after the page is loaded,self.java -3,1403223728,8,Joins and Mapping many to many in jOOQ,self.java -18,1403219355,10,You think you know everything about CDI events Think again,next-presso.com -6,1403217536,6,Alternative to AWS SDK for Java,self.java -0,1403216787,5,Best way to learn Java,self.java -6,1403201420,8,Help with a project making a video game,self.java -4,1403197310,8,From C to Java to Android Application Development,self.java -8,1403180284,3,Where to now,self.java -17,1403179829,3,Hibernate Search reindexing,self.java -3,1403179183,5,System Tray popup menus Win7,self.java -10,1403156642,3,newFixedThreadPool implementation question,self.java -0,1403155987,14,Why do people keep asking if I m interviewing when asking for java help,self.java -0,1403155389,10,How can I detect if one image collides with another,self.java -0,1403154576,15,Why can I not detect intersection in paint method with one object but not another,self.java -1,1403153008,5,Error when making Celsius Converter,self.java -1,1403152328,6,Best Books or article about Spring,self.java -0,1403144178,9,Using Netbeans table and populating with data form database,self.java -0,1403134212,3,Question about Netbeans,self.java -0,1403134180,7,How to detect collision with another image,self.java -39,1403132972,12,Javascript for Java Developers a dive into the language most unusual features,blog.jhades.org -2,1403120866,17,OpenJDK Panama new connections between the Java virtual machine and well defined but foreign non Java APIs,mail.openjdk.java.net -6,1403109937,7,Top seven Java 8 Books in 2014,codejava.net -5,1403101471,7,gonsole weeks content assist for git commands,codeaffine.com -4,1403098643,8,Java Build Tools Ant vs Maven vs Gradle,technologyconversations.com -5,1403095620,5,Rectangle class java lang Object,self.java -0,1403095409,9,How to put a java game on a website,self.java -10,1403092055,12,Dad asked me to help him out Need advice on how to,self.java -55,1403082403,16,How your addiction to Java 8 default methods may make pandas sad and your teammates angry,zeroturnaround.com -0,1403064406,6,Character Class isDigit char hc question,self.java -37,1403046353,7,An interactive Java tutorial for complete beginners,ktbyte.com -2,1403034696,10,Java Application Architecture Tutorial 1 Wiring up The Spring Framework,youtube.com -5,1403031105,2,Best IDE,self.java -28,1403000615,6,Force inline Java methods with annotations,nicoulaj.github.io -2,1402986356,6,Help with using RescaleOp and BufferedImage,self.java -0,1402953491,2,ELI5 OSGi,self.java -2,1402951164,6,Most Popular Programming Languages of 2014,blog.codeeval.com -48,1402941519,11,Happiest Jobs For The Class Of 2014 Java Dev No 1,forbes.com -8,1402939999,22,Just released my second tutorial on web development using Spring and AngularJS I m covering the basics of JUnit Mockito and TDD,youtube.com -6,1402935974,6,Making Java secure at the JVM,networkworld.com -87,1402932445,11,Eclipse Luna 4 4 is almost here June 25 release date,projects.eclipse.org -0,1402927241,7,Why Abstract class is Important in Java,java67.blogspot.sg -6,1402910661,6,faster way to compare file contents,self.java -2,1402905353,25,Byte Buddy is a code generation library for creating Java classes during the runtime of a Java application and without the help of a compiler,bytebuddy.net -4,1402897640,10,I need help accessing an existing excel document in java,self.java -78,1402897094,5,9 Fallacies of Java Performance,infoq.com -21,1402878654,20,Are you new to Java Link to in progress java tutorial site I will teach everything from scratch starting now,coffeehouseprogrammers.com -6,1402870092,11,Lag and unexpected movement when moving object in JFrame implementing Runnable,self.java -0,1402866455,10,need help debugging small bit of code dealing with parse,self.java -2,1402863386,7,HttpComponents Client 4 3 4 GA Released,mail-archives.apache.org -4,1402863293,6,Apache Continuum 1 4 2 Released,mail-archives.apache.org -5,1402860721,5,Resources about optimizing Java code,self.java -1,1402853280,9,Is there a shortcut for x post r eclipse,reddit.com -1,1402847126,7,Help Imported Image not appearing in JFrame,self.java -15,1402845149,7,Should I migrate from GlassFish to Tomcat,self.java -18,1402842049,3,The Stream API,blog.hartveld.com -4,1402835058,5,Machine for java web Dev,self.java -4,1402830413,6,33 Most Commons Spring MVC Tutorials,programsji.com -0,1402823077,7,What does mean in between return values,self.java -6,1402822877,10,Looking for recommendations on advanced Unit Integration and Behavioral testing,self.java -1,1402785510,13,Integration testing with Arquillian and CDI support deployed into Tomcat 7 application server,codelook.com -46,1402778163,4,Why Java over C,self.java -19,1402777116,7,Packaging by Feature versus Packaging by Layer,javapractices.com -0,1402774940,1,Programming,self.java -5,1402770723,19,Looking for some old posts about some reports on how used are some technologies and can t find them,self.java -17,1402762935,9,JavaFX Why it matters even more with Java 8,justmy2bits.com -0,1402757417,13,Psychosomatic Lobotomy Saw Advice for the concurrently confused AtomicLong JDK7 8 vs LongAdder,psy-lob-saw.blogspot.sg -5,1402754877,15,Netty 4 0 20 Final released and Netty 3 9 2 Final CVE 2014 3488,netty.io -17,1402754263,10,Hotswap agent provides Java unlimited runtime class and resource redefinition,hotswapagent.org -17,1402750493,10,Extractors a Java 8 abstraction for handling possibly absent values,codepoetics.com -4,1402729626,5,Get images from r EarthPorn,self.java -4,1402722262,4,IP address and java,self.java -2,1402710604,16,How to read a text file from an imported file within the same project in Eclipse,self.java -8,1402707863,10,What is was so great about Apache Struts and Tiles,self.java -4,1402706369,8,How to get familiar with coding in eclipse,self.java -13,1402694972,8,10 Subtle Mistakes When Using the Streams API,blog.jooq.org -34,1402694232,21,Is Java the most prevalent language in the finance world And how does it compare to Scala for that use case,self.java -2,1402690936,8,Help with putting JLabels into ArrayLists in NetBeans,self.java -0,1402688023,21,Q I accidentally deleted my input console I am new to eclipse and I can t seem to get it back,self.java -2,1402685053,5,Android lt gt iOS implementation,self.java -4,1402672770,8,Border Collision Question taking object size into account,self.java -26,1402671999,7,Where to Deploy small Java Web apps,self.java -3,1402667044,13,Questions about a Java Test Game keylistener paint paint component Image Graphic repaint,self.java -0,1402665667,14,How to do remote profiling if you have only console access to remote machine,blog.knoldus.com -15,1402662456,8,Implement Validation Using JSR 303 Annotations in Spring,codeproject.com -16,1402633447,2,count logic,self.java -15,1402610581,6,Apache Ant tasks for JMX access,peter-butkovic.blogspot.de -8,1402609902,25,I m new to Java and decided to try start a cipher encoder decoder I currently have one cipher supported and feedback is much appreciated,self.java -0,1402589520,6,JDBC data import to Orchestrate DBaaS,orchestrate.io -15,1402581051,4,Exercises for Java 8,self.java -20,1402564857,10,Advice for the concurrently confused AtomicLong JDK7 8 vs LongAdder,psy-lob-saw.blogspot.com -3,1402527442,11,Why won t the Mac version of Chrome support Java 7,self.java -1,1402525502,5,The jwall tools ModSecurity Toolbox,jwall.org -3,1402525166,6,Jetty 9 2 1 v20140609 Released,jetty.4.x6.nabble.com -0,1402509668,8,RSS Reader Using ROME Spring MVC Embedded Jetty,eyalgo.com -0,1402508865,14,How to do remote profiling if you have only console access to remote machine,dzone.com -0,1402496691,5,Print Diagnostics with Struts2 issue,self.java -0,1402496178,6,How to Install Apache Tomcat 7,youtu.be -0,1402495694,7,A Playful Eye for the JEE Guy,mbarsinai.com -6,1402493995,5,Mojarra 2 2 7 released,java.net -3,1402490324,3,Structuring JavaFX applications,yennicktrevels.com -14,1402486493,6,Java Thumbnail Generator ImageScalar vs ImageMagic,paxcel.net -0,1402484359,13,How to Set Up Apache Tomcat v 7 with Eclipse IDE using WTP,youtu.be -1,1402478334,12,Discover How to Set Up Apache Maven with Eclipse IDE and m2e,youtu.be -0,1402476923,9,Troubleshooting Apache Maven amp Eclipse WTP Web Tools Platform,youtu.be -12,1402473117,7,Feedback for an aspiring JEE software developer,self.java -0,1402443512,13,I need to see if these two Java games work on your computer,self.java -1,1402419084,9,Need some help on java doc rtf pdf generation,self.java -0,1402415274,12,Can you convert Inkscape s svg file to a png in java,self.java -35,1402411432,11,Check out and provide feedback for my java concurrency library Threadly,self.java -16,1402410944,7,A beginner s guide to Hibernate Types,vladmihalcea.com -5,1402409849,13,JetBrains Newsletter June 2014 0xDBE Brand New IDE for DBAs and SQL Developers,info.jetbrains.com -2,1402407901,4,Continuous Delivery Unit Tests,technologyconversations.com -0,1402399146,11,Export CSV and Excel from Java web apps With Data Pipeline,northconcepts.com -1,1402391852,12,Create Auto Refreshing Pie Chart Bar Chart in Servlet dynamically using JFreeChart,simplecodestuffs.com -49,1402390722,9,All java lang OutOfMemoryErrors with causation examples and solutions,plumbr.eu -16,1402387297,5,JDK8 Lottery Davy Van Roy,jacobsvanroy.be -12,1402375835,10,Lambda A Peek Under the Hood must watch very technical,techtalkshub.com -1,1402369477,14,Dynamic Dependent Select Box using JQuery and JSON in JSP amp Servlet via Ajax,simplecodestuffs.com -3,1402369268,13,What are your favorite HTTP clients and how do you handle path parameters,self.java -4,1402336044,8,AJAX implementation in JSP and Servlet using JQuery,simplecodestuffs.com -25,1402333086,10,TIL an important difference with frame pack vs frame validate,self.java -0,1402329124,9,A single simple rule for easier Exception hierarchy design,blog.frankel.ch -0,1402326936,9,A single simple rule for easier Exception hierarchy design,blog.frankel.ch -0,1402325600,6,Introduction to Play 2 for Java,informit.com -20,1402324304,5,Best way to distribute programs,self.java -1,1402317880,6,Good place to start learning Java,self.java -12,1402302883,10,Clean up your kids toy box with the loan pattern,self.java -0,1402298070,14,Could someone explain the purpose of constructors and method parameters in somewhat simple terms,self.java -8,1402297879,7,Java basic medium topics resources for programmers,self.java -7,1402295973,9,OpenJDK Sumatra Project Bringing the GPU to Java TechTalksHub,techtalkshub.com -4,1402295616,9,Java Heap Dump Analysis using Eclipse Memory Analyzer MAT,simplecodestuffs.com -0,1402278743,2,Java help,self.java -33,1402249787,10,Looking for tutorials exercises to practice more advanced Java topics,self.java -7,1402218043,6,Version Control Best Practices from Rainforest,java.dzone.com -1,1402204578,6,Concept associated with web service technology,simplecodestuffs.com -14,1402195031,7,JenkinsCI User Conference 6 18 in Boston,jenkins-ci.org -0,1402190559,14,How can I use junit to unit test java code from the command line,self.java -0,1402187387,10,Any recommendations for a good ultra portable for Java programming,self.java -0,1402176640,13,Why does gradle run only seem to work from the Windows command line,self.java -24,1402176150,5,Safeguarding Against Java Remote Execution,blog.ktbyte.com -0,1402171232,10,World Life Without JAVA Please make it a real film,youtube.com -0,1402167156,3,Hibernate with Spring,softwarecave.org -10,1402164455,7,Help with comparing large amounts of Strings,self.java -0,1402131082,11,Can anyone help feeding a constructor from file into an array,self.java -10,1402124225,12,How to store security permissions roles and role permissions in source code,self.java -2,1402117114,6,Help with building upon Java fundamentals,self.java -14,1402105579,8,Choosing a project to motivate my learning process,self.java -24,1402100837,11,What s the quickest way to build a Java web app,self.java -0,1402092291,6,Can You Make Bots in Java,self.java -1,1402087368,8,Concept of Servlets Vs Concept of Struts 2,simplecodestuffs.com -2,1402078027,6,What is Web Services An Introduction,simplecodestuffs.com -27,1402069731,10,Hazelcast Redis equivalent in pure Java embeddable Apache 2 license,hazelcast.com -2,1402061391,8,Out of memory Kill process or sacrifice child,plumbr.eu -20,1402056239,10,Java 8 Friday JavaScript goes SQL with Nashorn and jOOQ,blog.jooq.org -7,1402053946,9,Spring Question about channels and gateways in Spring Integration,self.java -27,1402045686,7,Eclipse Key Shortcuts for Greater Developers Productivity,vitalflux.com -1,1402043352,12,AJAX based CRUD Operations in Java Web Applications using jTable jQuery plugin,simplecodestuffs.com -43,1402011500,12,New Tutorial Series How To Develop Web Applications Using Spring and AngularJS,youtube.com -18,1402010894,12,Why Java is used more than Python in big and medium corporations,self.java -9,1402002068,5,Java Database File Strategy Pattern,self.java -8,1402001766,13,xcmis An extensible implementation of OASIS s Content Management Interoperability Services CMIS specification,code.google.com -20,1402000512,9,Autocomplete in java web application using Jquery and JSON,simplecodestuffs.com -3,1401986233,5,Can anyone help with raycasting,self.java -0,1401981543,26,I want to improve but don t know how How can I make this code better or faster AFAIK it works perfectly Please help me improve,pastebin.com -9,1401977813,7,Android Resources concept for plain Java applications,self.java -8,1401974758,12,Why touch Leap Motion Controller and JavaFX A new touch less approach,jperedadnr.blogspot.com.es -15,1401973717,6,How does Spring Transactional Really Work,blog.jhades.org -1,1401958154,9,Problem while trying to accept input line by line,self.java -7,1401944197,10,Advice for implementing solr for a Spring based ecommerce application,self.java -7,1401940053,12,Does anyone know how to get an early access version of 7u65,self.java -17,1401937187,14,How much of an asset is the Oracle Certified Java Programmer on a resume,self.java -0,1401930030,18,Trying to figure out a program to take multiple longitude and latitude points and convert them to azimuth,self.java -21,1401927724,1,JavaMoney,javamoney.github.io -13,1401927229,8,How can I create a shortcut using Java,self.java -1,1401912634,13,Can I do complex fraction Echelon row reduction using Java Apache Math Library,self.java -0,1401910999,8,Massachusetts Undergrad Summer classes for object oriented design,self.java -0,1401893068,4,OmniFaces 1 8 released,balusc.blogspot.sg -52,1401883706,5,Twitter Scale Computing with OpenJDK,youtube.com -25,1401881508,5,Considering Learning Java Some Questions,self.java -20,1401880687,10,Which method of using Hibernate is the best mostly used,self.java -1,1401843841,6,Having difficulty with writing an algorithm,self.java -2,1401841513,5,Fun project idea for class,self.java -1,1401829809,11,Xcelite easily serialize and deserialize Java beans to from Excel spreadsheets,github.com -38,1401829745,16,Root Framework a game library written on top of LWJGL for the creation of 2D games,github.com -0,1401829322,5,javassist 3 18 2 GA,github.com -1,1401829185,6,HtmlUnit 2 15 Jun 2 2014,htmlunit.sourceforge.net -0,1401823195,10,Copying a JavaScript Button and send it as a link,self.java -0,1401820402,3,Introducing Spring Cloud,spring.io -3,1401818768,7,Java Training Classes Real Time Online Training,hotfrog.com -19,1401804030,19,Is your Eclipse compiler slow Eclipse Bug 434326 Slow compilation of test cases with a significant amount of generics,bugs.eclipse.org -5,1401803542,10,Building HATEOAS API with Spring MVC JAX RS or VRaptor,zeroturnaround.com -1,1401801278,8,Choosing a fast unique identifier UUID for Lucene,blog.mikemccandless.com -5,1401798560,5,gonsole weeks git init gonsole,codeaffine.com -1,1401778473,10,8 Great Java 8 Features No One s Talking about,infoq.com -29,1401771112,10,Eventhub An open source event analysis platform built in java,github.com -3,1401770523,9,Why is my JDK download always stuck on 99,self.java -0,1401747532,6,Headaches and questions from a Sysadmin,self.java -16,1401738971,11,New release of OmniFaces sees light of day OmniFaces 1 8,balusc.blogspot.com -27,1401723139,9,JDK 8043488 Improved variance for generic classes and interfaces,bugs.openjdk.java.net -16,1401721837,8,Unit Testing how do you guys stay organized,self.java -19,1401719772,4,OmniFaces 1 8 released,showcase.omnifaces.org -29,1401718412,3,Proper password storage,self.java -3,1401713654,20,This guy argues that having too many classes in Java is a bad thing and I couldn t agree more,javacodegeeks.com -7,1401702188,7,Java Maven Struts2 with MS SQL Headache,self.java -19,1401698067,8,Integrate Gulp And Grunt Into Your Maven Build,supposed.nl -9,1401691823,4,Keycloak Beta 1 Released,keycloak.jboss.org -0,1401686858,7,IE Ajax bug amp Spring MVC solution,dominik-mostek.cz -32,1401657855,13,Any thoughts resources general tips for getting the most out of IntelliJ IDEA,self.java -2,1401642406,16,How to have an android project and a dynamic web project running on the same spot,self.java -4,1401636725,7,Scala on Android and stuff lessons learned,blog.frankel.ch -17,1401629635,6,WildFly 8 1 0 Final released,community.jboss.org -46,1401607881,14,Do most java programmers use Eclipse other IDE rather than a simple text editor,self.java -0,1401562431,7,Spring MVC and interfaces of Service class,self.java -2,1401560513,4,How to compile OpenOMR,self.java -0,1401555476,5,How to Compile Audiveris code,self.java -0,1401550428,12,Using the variable value and not the variable itself on an object,self.java -1,1401549957,3,Java in XCode,self.java -0,1401549765,10,How to run your first Java Program in NetBeans IDE,youtube.com -2,1401502906,8,Is there a better way to do this,self.java -32,1401486547,20,Why are the official Hibernate 4 docs so grossly outdated and inaccurate And where can I find a better alternative,self.java -1,1401481633,6,Performance Tuning of Spring Hibernate Applications,blog.jhades.org -7,1401469445,8,Java 8 Friday Most Internal DSLs are Outdated,blog.jooq.org -0,1401468036,5,This applet is so 2001,self.java -3,1401466357,10,After a Decade I m Coding for the VM again,medium.com -20,1401464765,29,I d like to build a modern web app using Java Based on my experience what do you think is a next good step to learn to do that,self.java -4,1401458365,7,Adding SSE support in Java EE 8,blogs.oracle.com -3,1401455872,7,Check out my first ever Java project,pilif0.4fan.cz -5,1401452719,5,Simple and fast logging framework,self.java -0,1401450543,7,Strange Rendering behaviour bug with JavaFX ListView,self.java -76,1401448197,10,8 Great Java 8 Features No One s Talking about,infoq.com -0,1401388255,18,x post from r programming Are you Java or Scala Developer Use Takipi real time code analysis technology,techmafia.net -1,1401376647,12,Policy question can more than one URL be added to a codebase,self.java -2,1401319981,23,Common Simulator is a library to create any simulator which uses field based message such as ISO 8583 message or properties like message,github.com -2,1401319479,4,When to use SharedHashMap,github.com -8,1401318985,11,Apache Tomcat 7 0 54 amp 6 0 41 released CVEs,mail-archives.apache.org -8,1401318391,4,spinoza Lenses for Java,github.com -16,1401318329,18,Rekord Type safe records in Java to be used instead of POJOs Java beans maps or value objects,github.com -7,1401310656,12,Need suggestions on some kind of documentation gathering system for this situation,self.java -0,1401304987,14,Generate a sequence of numbers 1 1 2 2 3 3 1 1 etc,self.java -11,1401300316,8,Hibernate Debugging Finding the Origin of a Query,blog.jhades.org -10,1401297487,16,Are there any open source efforts to create a Java wrapper library for the Steam SDK,self.java -9,1401296118,5,Reccomend Good Tutorials for EJB,self.java -3,1401293051,5,Question about thread safe lists,self.java -18,1401288043,11,The data knowledge stack Concurrency is not for the faint hearted,vladmihalcea.com -39,1401281199,8,Get Started With Lambda Expressions in Java 8,blog.stackhunter.com -15,1401278618,8,CDI 2 0 Survey on proposed new features,cdi-spec.org -22,1401262287,10,Would it be useful to create interfaces for immutable collections,self.java -3,1401256066,15,Why is the correct answer A and B Shouldn t ob have access to finalize,imgur.com -5,1401236001,5,Graphing and Statistical Analysis APIs,self.java -2,1401219571,4,Open Source Java Projects,self.java -23,1401217707,9,Typetools Erasure defeated almost Tools for resolving generic types,github.com -1,1401216107,5,Need help with a program,self.java -14,1401199708,31,As somebody who never programmed in Java and wants to learn from scratch what s a good resource to do so particularly taking advantages of the new features of Java 8,self.java -14,1401197620,7,PrimeFaces 5 0 New JSF Component Showcase,primefaces.org -21,1401197275,8,Why use SerialVersionUID inside Serializable class in Java,javarevisited.blogspot.sg -0,1401181391,14,CodenameOne 1 Java code to run natively on iOS Android Win RIM and Desktop,codenameone.com -0,1401157313,3,Object array construction,self.java -1,1401152623,2,Seeking mentor,self.java -0,1401148212,1,JNA,self.java -4,1401128587,5,My summary of JEEConf 2014,blog.frankel.ch -0,1401126072,5,Recommendation on where to start,self.java -3,1401118647,15,How to move columns from one CSV file into another CSV file using Data Pipeline,northconcepts.com -27,1401116953,4,Java Multiplayer libgdx Tutorial,appwarp.shephertz.com -1,1401113656,6,Most efficient way to learn Java,self.java -11,1401111565,4,Quicksort and Java 8,drew.thecsillags.com -2,1401070881,9,Instantiating an object randomly between multiple triple nested classes,self.java -33,1401065265,11,RoboVM Write IOS app natively in Java Apache License v2 0,robovm.com -94,1401062046,6,Why is choice B not valid,imgur.com -6,1401053464,6,Netty GZip compression problem and question,self.java -0,1401030341,5,What is a SEC page,self.java -18,1400995743,7,Spring Hibernate improved SQL logging with log4jdbc,blog.jhades.org -23,1400891255,7,RoaringBitmap A better compressed bitset in Java,github.com -38,1400887888,6,Apache Commons Math 3 3 Released,mail-archives.apache.org -2,1400887358,5,Tupl The Unnamed Persistence Library,github.com -18,1400881569,12,Techonology Radar advises against the use of JSF Primefaces team reply inside,self.java -16,1400873821,5,GlassFish 4 0 1 Update,blogs.oracle.com -15,1400849943,9,Spring Web Services 2 2 0 introduces annotation support,spring.io -10,1400831502,5,Good source for Physics applets,self.java -10,1400824552,5,Spring Security blocking PUT POST,self.java -1,1400816788,5,Soft Light Mode for images,self.java -6,1400805941,6,iOS for Java Developers full talk,techtalkshub.com -7,1400803926,9,Java Coding Contest Program a Bot and Win Prizes,learneroo.com -102,1400795519,8,Java is now the leader on Stack Overflow,stackoverflow.com -6,1400792155,7,My new super fast distributed messaging project,github.com -11,1400787190,8,Pitfalls of the Hibernate Second Level Query Caches,blog.jhades.org -26,1400785472,15,Why is Eclipse generating argument names as arg0 arg1 arg2 in methods when implementing interfaces,self.java -0,1400784339,4,worries worries worries worries,self.java -6,1400775937,6,Hibernate Tutorial using Maven and MySQL,javahash.com -8,1400774261,8,JRebel is like HotSwap made by Walter White,zeroturnaround.com -1,1400774231,16,1 hour infoq presentation Using Invoke Dynamic to Teach the JVM a New Language Perl 6,infoq.com -1,1400774134,5,Clojure Kata 3 Roman Numerals,elegantcode.com -0,1400773586,4,Whats wrong with this,self.java -0,1400764946,10,Question How to display an image depending on certain data,self.java -2,1400764075,4,Need help unencrypting password,self.java -1,1400763519,5,Which runtime exception to throw,self.java -1,1400759541,9,69 Spring Interview Questions and Answers The ULTIMATE List,javacodegeeks.com -27,1400758339,8,Employers want Java skills more than anything else,infoworld.com -150,1400750221,9,115 Java Interview Questions and Answers The ULTIMATE List,javacodegeeks.com -5,1400746817,17,are there any AI expert systems or similar for teaching people to code in Java or SQL,self.java -5,1400731678,8,Help with GUI project dice game called Pigs,self.java -0,1400725616,26,I m taking a test that will determine if I can go to AP Computer Science next year Does anyone know a good way to practice,self.java -0,1400698955,9,Anyone looking for a job in the IT industry,self.java -3,1400684551,12,Could anyone recommend a best practice for connecting to a REST service,self.java -2,1400684313,8,Java C Programmers need help with your resume,self.java -6,1400683050,17,Looking for a UI Component preferably JavaFX don t know its name but here s a picture,self.java -15,1400677566,7,Spring Data Release Train Dijkstra Goes GA,spring.io -22,1400675495,7,Java Tools and Technologies Landscape for 2014,zeroturnaround.com -6,1400673404,6,How to end reading from console,self.java -3,1400651540,10,Interview with Tim Bray co inventor of XML at GOTOchgo,ugtastic.com -11,1400651494,5,Repeating annotations in Java 8,softwarecave.org -0,1400642071,15,Java beginner here Just trying out a simple program Is this right very simple program,self.java -28,1400641499,6,Initial Java EE 8 JSR Draft,java.net -13,1400624467,9,Xsylum XML parsing and DOM traversal for the sane,github.com -14,1400623832,7,Erlang OTP style object supervision for Java,github.com -4,1400618004,29,I use Struts 2 and Tiles in Eclipse and I d like to know if there is a plugin way to expose the borders between tiles on my project,self.java -9,1400614345,9,Anyone have personal experience with the Quasar Java library,self.java -0,1400606685,8,Configuring Spring Security CAS Providers with Java Config,self.java -2,1400602847,6,Where do I go from here,self.java -0,1400599152,6,Mid Level Java Developer Opportunity MN,self.java -9,1400590549,4,Async Servlets in Java,jayway.com -0,1400572260,7,Hiberanate 4 Tutorial using Maven and MySQL,javahash.com -3,1400561985,5,Understanding Polymorphism in Java Programming,tutorialspoint.com -1,1400549438,4,Help with applet code,self.java -41,1400527554,2,Better Java,blog.seancassidy.me -9,1400518816,4,Any alternatives to JOOQ,self.java -5,1400515638,13,RemoteBridge released access and modify Java objects in third party applications and applets,nektra.com -1,1400513726,9,Why Software Doesn t Follow Moore s Law Forbes,forbes.com -3,1400512142,7,Groovy language features case study with Broadleaf,broadleafcommerce.com -15,1400512096,10,When and why to use StringBuilder over operator and StringBuffer,java-fries.com -6,1400510079,25,EJB JAX WS Is it better to put business logic into a separate session bean and have JAX WS implementation class calling the session bean,self.java -16,1400507347,14,JBoss EAP 6 3 Beta Released WebSockets Domain recovery New console homepage Improved Security,blog.arungupta.me -0,1400494488,12,How do you map a Map lt String MyObject gt using Hibernate,self.java -0,1400460600,4,Tower Defense ScratchForFun help,self.java -2,1400458434,13,Is there a scripting interface for Java similar to Script CS or Cshell,self.java -6,1400450020,8,Java 8 Is An Acceptable Functional Programming Language,codepoetics.com -2,1400432663,4,Java Tower Defense Problems,self.java -42,1400431667,26,I m an experienced software engineer tho not in Java Which are good open source Java projects to get involved in for building my Java experience,self.java -0,1400423240,7,Dead simple API design for Dice Rolling,blog.frankel.ch -17,1400421372,13,Programming Language Popularity Chart Java ranks in as the 2 most popular language,langpop.corger.nl -0,1400407011,3,Incompatible types issue,self.java -0,1400378511,8,Best Video Tutorials To Learn Android Java Development,equallysimple.com -8,1400359165,12,JFRAME Window Creating in Eclipse and setup of Eclipse NEW TUTORIAL SERIES,youtube.com -0,1400350617,5,Help with making a diamond,self.java -2,1400347474,7,Java next Choosing your next JVM language,ibm.com -0,1400329298,4,Java APIs for Developers,geektub.com -44,1400328989,13,How To Design A Good API and Why it Matters Joshua Bloch 2007,youtube.com -5,1400328104,7,Avoid over provisioning fine tuning the heap,plumbr.eu -9,1400317655,5,Defining and executing text commands,self.java -7,1400308250,4,OpenJPA 2 3 0,mail-archives.apache.org -17,1400307913,14,Java Type Erasure not a Total Loss use Java Classmate for resolving generic signatures,cowtowncoder.com -5,1400307873,21,StoreMate building block that implements a simple single node store system to use as a building block for distributed storage systems,github.com -0,1400296427,8,What are oracle gonna do client side java,self.java -0,1400287460,4,Help Comment Some Code,self.java -9,1400275077,6,Open Session In View Design Tradeoffs,blog.jhades.org -14,1400263931,11,Sneak Preview The 14 Leading Java Tools amp Technologies for 2014,zeroturnaround.com -2,1400254084,9,Excelsior JET and libGDX Help fund Save Life Foundation,badlogicgames.com -0,1400252445,11,Sneak Preview The 14 Leading Java Tools amp Technologies for 2014,dzone.com -10,1400249372,10,JRE7 Any alternatives to jar signing for intranet enterprise systems,self.java -9,1400237387,11,Writing Java Socket HTTP Server Chrome thinks the request is empty,self.java -2,1400227411,11,Issues with Inverted Comma while parsing csv x post r javahelp,reddit.com -27,1400227068,7,Java performance tuning guide high performance Java,java-performance.com -2,1400216781,6,Dynamic Tuple Performance On the JVM,boundary.com -0,1400206060,5,Beginner Problem DrawingPanel in Java,self.java -5,1400193268,5,Modern Spring 4 0 demos,self.java -2,1400192076,5,XWiki 6 0 is released,xwiki.org -2,1400191815,7,Apache Commons Compress 1 8 1 Released,mail-archives.apache.org -6,1400191745,6,Apache Jackrabbit 2 8 0 released,mail-archives.apache.org -10,1400188831,4,Flux new IDE deployment,projects.eclipse.org -69,1400172881,10,An Opinionated Guide to Modern Java Part 3 Web Development,blog.paralleluniverse.co -2,1400170110,6,JLabel text won t align properly,self.java -4,1400169899,10,Minnesota becomes first to sign smartphone kill switch into law,androidcommunity.com -6,1400169774,7,Is this possible to do with Java,self.java -21,1400168947,9,Interview with Aleksey Shipilev Oracle s Java Performance Geek,jclarity.com -0,1400168423,7,How to become an expert in Java,self.java -3,1400167735,6,Conclusions and where next for Java,manning.com -8,1400167309,8,Java Configuration A Proposal for Java EE Configuration,javaeeconfig.blogspot.com -6,1400159580,6,An open source JVM Sampling Profiler,insightfullogic.com -7,1400138735,7,Enum vs Constans java file in JAVA,self.java -1,1400105714,4,WindowBuilder for Java GUI,self.java -3,1400099441,9,Getting double values through a String for Rectangle constructor,self.java -69,1400092855,18,TIL enums can implement interfaces and each enum value can be an anonymous class x post r javatil,reddit.com -11,1400083886,21,Brian Goetz earmarka arrays and Value Types as burning issues to solve at conference keynote no mention of the modularity thing,jaxenter.com -0,1400076587,13,Find a number in the array having least difference with the given number,java-fries.com -0,1400075353,21,New Java 8 Optional sounds an awful lot like Guava s Optional I assume we can expect a judgement against Oracle,self.java -0,1400074258,7,Java 8 Optional What s the Point,huguesjohnson.com -37,1400062973,8,How to Use Java 8 s Default Methods,blog.stackhunter.com -0,1400018266,4,TextArea in java applet,self.java -1,1400015420,3,File Request Mac,self.java -2,1400010243,9,is XX UseCompressedOops enabled by default on 64bit JDK8,self.java -5,1399999689,7,Slab guaranteed heap alignment on the JVM,insightfullogic.com -53,1399997859,11,10 JDK 7 Features to Revisit Before You Welcome Java 8,javarevisited.blogspot.ca -4,1399997467,10,Load itextpdf OmniFaces and PrimeFaces as JBoss AS Wildfly Modules,hfluz-jr.blogspot.com -0,1399995315,7,Cyclic Inheritance is not allowed in Java,java-fries.com -9,1399990100,11,Too Fast Too Megamorphic what influences method call performance in Java,insightfullogic.com -84,1399987280,12,Why Oracle s Copyright Victory Over Google Is Bad News for Everyone,wired.com -12,1399986776,12,Java Explorer Code a Robot to Defeat Enemies and Reach the Goal,learneroo.com -5,1399980979,10,Liberty beta starting to add support for Java EE 7,ibmdw.net -5,1399978920,7,Why should Java developers adopt Java 8,zishanbilal.com -0,1399977097,6,Java 8 Features The ULTIMATE Guide,javacodegeeks.com -0,1399976279,3,Comparable and Comparator,kb4dev.com -2,1399959401,8,Proxy Servlet to Forward Requests to remote Server,blog.sodhanalibrary.com -0,1399958972,5,An idea for a program,self.java -1,1399957277,6,Modern imagining of an IRC api,self.java -29,1399950043,7,Java 8 Optional How to Use it,java.dzone.com -17,1399935996,8,Best place to learn about Spring Struts Hibernate,self.java -6,1399913310,7,HTTP responses with Jersey JAX RS noob,self.java -3,1399907884,5,A question about card layout,self.java -0,1399903119,8,Keeping Your Privates Private Java Access Modifiers Unleashed,codealien.wordpress.com -7,1399898613,19,Has anybody setup a Maven Nexus server at home to cache modules in your LAN Does it worth it,self.java -0,1399896115,12,Testing a secured Spring Data Rest service with Java 8 and MockMvc,blog.techdev.de -0,1399892429,6,Whats the difference in these two,self.java -3,1399882453,10,Is it a trap in JSON Processing API JSR 353,self.java -10,1399875681,4,Question about hashmap behaviour,self.java -1,1399874153,7,Big Modular Java with Guice old talk,techtalkshub.com -0,1399858921,3,Help one Homework,self.java -0,1399854796,12,Need help with creating one small java function Comp apps final tomorrow,self.java -6,1399839887,6,Where should I put SQL statements,self.java -3,1399829453,5,Ask Java Java XBee Library,self.java -0,1399828465,6,Looking for helpful sites learning Java,self.java -57,1399828048,10,Spark java re written to support Java 8 and Lambdas,sparkjava.com -15,1399822171,4,Assertion libraries for Java,self.java -14,1399820093,7,alpha OSv OS Virtualization for the JVM,osv.io -0,1399816999,16,Find max and min element of an unsorted array of integers with minimum number of comparisions,java-fries.com -0,1399798161,28,Given three strings str1 str2 and str3 find the smallest substring in str1 which contains all the characters in str2 in any order and not those in str3,java-fries.com -0,1399768860,8,Is there a way to declarate variables dynamically,self.java -0,1399760438,4,Entry point in maven,self.java -36,1399730203,2,Functional Thinking,techtalkshub.com -7,1399727295,2,SOAP Question,self.java -2,1399698566,14,Would anybody here by chance have a copy of jsdt src 2 2 zip,self.java -0,1399695992,7,Help for array inventories for rpg game,self.java -0,1399679664,8,Can t install 64 bit java onto computer,self.java -4,1399653745,7,Java 8 Friday Language Design is Subtle,blog.jooq.org -12,1399613994,9,Does your company send you for courses and training,self.java -0,1399610911,4,Help with learning java,self.java -0,1399604213,8,Interface in Java 8 Got Fancier Or Not,vitalflux.com -15,1399599580,16,What s the simplest most concise way to load an XML file from a remote server,self.java -9,1399584593,10,Working on a personal project and looking for peer input,self.java -1,1399581438,10,Facebook malware jar file but what does it actually do,self.java -2,1399570992,5,JavaFX on within Swing SIGSEGV,self.java -0,1399570609,3,Assertions in Java,softwarecave.org -24,1399569047,15,An Opinionated Guide to Modern Java Part 2 Deployment Monitoring amp Management Profiling and Benchmarking,blog.paralleluniverse.co -16,1399560115,36,I couldn t find a Zenburn color theme for the IntelliJ IDEA 13 that looked like the Emacs version so I made this one In my opinion its readability is much better than the Darcula theme,github.com -7,1399554606,17,JavaFX hangs at launch Is there some trick to getting JavaFX to work in Eclipse under OSX,self.java -32,1399548529,6,Most popular Java environments in 2014,plumbr.eu -52,1399539825,11,Can I do something with lambdas I couldn t do before,self.java -17,1399528062,5,Java Lambda Expressions by Examples,zishanbilal.com -10,1399528055,10,Ant 1 9 4 released with Java 1 9 support,ant.apache.org -0,1399526773,4,Confused over Java assignment,self.java -16,1399521289,22,Just finished a Semantic Versioning library for Java I tried to keep it short and practical let me know what you think,github.com -0,1399506911,14,I need a convenient way to run small demos for a library I write,self.java -4,1399501271,6,WebSocket in JBoss EAP 6 3,blog.arungupta.me -8,1399498499,11,How to simplify unit testing when a class uses multiple interfaces,drdobbs.com -12,1399490556,6,Java Related Certifications after SCJP OJP,self.java -3,1399480482,7,Where did the code conventions disappear to,self.java -8,1399480022,14,Starting a new Spring MVC project what directories files do you put in gitignore,self.java -4,1399477893,3,Pacman in Java,self.java -0,1399474557,17,I guess I m not buying this book if that s their idea of initializing a singleton,sourcemaking.com -7,1399473645,8,Continuous Integration with JBoss Fuse Jenkins and Nexus,giallone.blogspot.co.uk -14,1399469054,19,Excelsior JET AOT compiler pay what you can help charity enter draw for OS X version shipping in Sep,excelsior-usa.com -23,1399462344,6,What s New in PrimeFaces 5,beyondjava.net -22,1399461934,22,Just updated my ADT4J library Algebraic Data Types for Java I think it s in pretty good shape and is already useful,github.com -12,1399449668,7,Simplest Example of Dynamic Compilation in Java,pastebin.com -14,1399446265,4,Intermediate level Java Books,self.java -10,1399436074,2,Java Conferences,self.java -15,1399432206,6,Lambda Expressions Examples using Calculator Implementation,vitalflux.com -0,1399431636,21,How do I export my java project to exe so my friends can play my game that don t have eclipse,self.java -15,1399423409,3,Linear Equation Solver,self.java -0,1399416486,13,How do I put a command line argument when running from an IDE,self.java -0,1399410768,6,Best job search method in NYC,self.java -8,1399405044,8,drawImg extremely slow on Windows fast on Linux,self.java -0,1399401181,6,I need help fixing My Program,self.java -2,1399390119,12,Discussion Is it always better to use one actionlistener for multiple buttons,self.java -8,1399388340,12,Intro to Java 8 features and some Chicago blues w Freddy Guime,learnjavafx.typepad.com -4,1399387120,11,Does OCA SE 7 require you to take a special course,self.java -2,1399385524,5,JFrame not always on top,self.java -8,1399385190,8,Clojure Leiningen and Functional Programming for Java developers,zeroturnaround.com -6,1399373380,9,Ditch Container Managed Security To Create Portable Web Apps,blog.stackhunter.com -3,1399367788,8,Tutorial How To Change The Cursor in JavaFX,blog.idrsolutions.com -57,1399367209,6,About Unit Test By Martin Fowler,martinfowler.com -3,1399348518,8,Rendering Jframe to different resolutions without resizing it,self.java -5,1399344213,6,EJB 3 0 vs Spring Framework,self.java -0,1399343351,17,Why won t it recognize a class in my directory when I try to compile a file,self.java -17,1399332174,4,Clarifying Java Web Development,self.java -6,1399325907,7,Help with creating a Netflix like interface,self.java -0,1399321592,12,My if else conditionals are not working What am I doing wrong,self.java -0,1399319325,4,Need help regarding JProgressBars,self.java -3,1399308490,7,Design suggestions for secure internal web services,self.java -5,1399306600,13,An authoritative answer why final default methods are not allowed in Java 8,stackoverflow.com -0,1399306584,7,Can Someone explain to me package mainGame,self.java -26,1399302913,5,Comparing Maven features in Gradle,broadleafcommerce.com -2,1399302705,5,Annotated Java Monthly April 2014,blog.jetbrains.com -0,1399282872,7,How do you import static in Eclipse,codeaffine.com -6,1399279624,7,How do you test equals and hashCode,codeaffine.com -54,1399276580,13,An authoritative answer why synchronized default methods are not allowed in Java 8,stackoverflow.com -14,1399275947,3,libgdx packr GitHub,github.com -2,1399262618,9,Taking Computer Science AP test on Tuesday any tips,self.java -2,1399253555,9,Accessing Java Applets from HTML pages with Java code,self.java -0,1399222013,4,Playing with Java constructors,blog.frankel.ch -9,1399214520,6,Recommendations for a Complete Java Handbook,self.java -6,1399203927,10,Java ME 8 Getting Started with Samples and Demo Code,terrencebarr.wordpress.com -4,1399186323,14,What is the reason why final is not allowed in Java 8 interface methods,stackoverflow.com -1,1399172849,4,Java game on ios,self.java -1,1399143767,6,Apache PDFBox 1 8 5 released,mail-archives.apache.org -2,1399143706,5,Optic Dynamic data management fw,github.com -32,1399143601,3,High Availability JDBC,ha-jdbc.github.io -2,1399140243,4,Pattern Matching in Java,benjiweber.co.uk -0,1399091308,3,Java Language Enhancements,zishanbilal.com -24,1399088145,11,OpenJDK 1 6 b30 causes severe memory leaks Fixed in b31,java.net -4,1399073321,4,Some questions about JavaFX,self.java -5,1399062939,5,Project to help learn java,self.java -5,1399060986,6,RestX the lightweight Java Rest framework,restx.io -1,1399047960,6,Tutorial Intro to Rich Internet Application,self.java -1,1399045454,3,Concurrency design question,self.java -2,1399041966,7,Lambda expression and method overloading ambiguity doubts,stackoverflow.com -3,1399038605,8,How to make GUI suitable for more languages,self.java -10,1399036306,4,Custom annotations in Java,softwarecave.org -31,1399032039,4,Java 8 Nashorn Tutorial,winterbe.com -79,1399020104,15,Value types for java an official proposal by John Rose Brian Goetz and Guy Steele,cr.openjdk.java.net -2,1399013529,17,XALANJ 2540 Very inefficient default behaviour for looking up DTMManager affects all JDKs when working with XML,issues.apache.org -0,1398992558,6,Java Dijkstra s algorithm NEED HELP,self.java -0,1398965899,6,Programador Java Senior Oferta de empleo,self.java -15,1398965772,9,JEP proposal Improved variance for generic classes and interfaces,mail.openjdk.java.net -2,1398962713,13,Difference between Connected vs Disconnected RowSet in Java JDBC 4 1 RowSetProvider RowSetFactory,javarevisited.blogspot.sg -90,1398962461,14,Not Your Father s Java An Opinionated Guide to Modern Java Development Part 1,blog.paralleluniverse.co -4,1398959353,5,Netty 4 0 19 Final,netty.io -10,1398959239,17,Undertow JBoss flexible performant web server providing both blocking and non blocking API s based on NIO,undertow.io -3,1398916101,8,RabbitMQ is the new king Spring AMQP OpenCV,techtalkshub.com -0,1398914643,7,Need help with my MP3 player applet,self.java -16,1398908691,6,java awt Shape s Insidious Insideness,adereth.github.io -11,1398906824,6,The cost of Java lambda composition,self.java -2,1398895888,6,Need Help With my JFrame Code,self.java -6,1398895119,19,I wrote a game framework for making Java games I have no idea what to add next any ideas,github.com -3,1398865880,11,How to switch to the Java ecosystem What technologies to learn,self.java -2,1398864047,4,Professional connection pool sizing,vladmihalcea.com -0,1398861910,4,Building GlassFish from Source,blog.c2b2.co.uk -7,1398847262,7,REST development with intelliJ missing WebServices plugin,self.java -19,1398834226,12,In case you need some motivation when you run into a bug,youtube.com -2,1398813499,14,Does anyone have any experience with javax sound midi and or its Sequence class,self.java -1,1398813061,3,Ganymed ssh 2,code.google.com -0,1398811089,6,Sorting a list of objects alphabetically,self.java -4,1398800312,15,Having trouble using SOAP services that rely on common objects Is there a work around,self.java -6,1398785185,4,Modern Java web stack,self.java -0,1398778350,4,JAVA PRINT 1 2,javaworld.com -6,1398778269,11,Java 8 Stream API Examples Filter Map Max Min Sum Average,java67.blogspot.sg -4,1398774447,4,IntelliJ IDEA UI Designer,self.java -53,1398773713,6,Java equals or on enum values,flowstopper.org -9,1398769695,6,Design Pattern By Example Decorator Pattern,zishanbilal.com -2,1398764451,4,Understanding how Finalizers work,plumbr.eu -0,1398756092,27,I want to learn how to use Java I am brand new to this field Can you recommend tutorials websites books to use to optimise my education,self.java -5,1398742577,6,So who is already using lambdas,self.java -6,1398732130,6,Do you cast often in Java,self.java -3,1398730504,3,Insertion Sort Help,self.java -6,1398701264,4,Annotation basics in Java,softwarecave.org -50,1398700260,5,What Makes IntelliJ IDEA Different,medium.com -7,1398692850,8,Putting Kotlin MongoDB Spring Boot and Heroku Together,medium.com -0,1398658577,4,Updating between two panels,self.java -21,1398657887,6,Java Code Style The Final Decision,codeaffine.com -13,1398646735,3,Worlds Of Elderon,self.java -2,1398632257,15,So I made a one method text based game of rock paper scissors lizard Spock,self.java -2,1398613968,11,Jaybird 2 2 5 is released with support for Java 8,jaybirdwiki.firebirdsql.org -157,1398603014,9,What subreddits should a software developer follow on reddit,self.java -5,1398602567,4,The Visitor design pattern,blog.frankel.ch -2,1398593856,5,I want to learn Java,self.java -1,1398587578,6,Java EE 7 at Bratislava JUG,youtube.com -1,1398586479,5,Key value Coding in Java,ujorm.org -1,1398585174,11,TIL Socket isConnected returns true even after the connection is reset,self.java -22,1398584577,7,A very simple questionaire for my paper,self.java -1,1398577316,2,Thought process,self.java -0,1398558370,1,Prefix,self.java -8,1398555167,12,what is a good way book I could use to learn java,self.java -3,1398538151,11,TIOBE Is Unintentionally Misleading in Truth Interest in Java Is Surging,weblogs.java.net -3,1398533600,12,RHSA 2014 0414 01 Important java 1 6 0 sun security update,redhat.com -0,1398532600,18,Need help with my program trying to split data from a file and then do math to it,self.java -45,1398526603,11,TIOBE Is Unintentionally Misleading in Truth Interest in Java Is Surging,weblogs.java.net -6,1398526178,14,Struts 2 up to 2 3 16 1 Zero Day Exploit Mitigation security critical,mail-archives.apache.org -1,1398514343,7,Victims Embedded Vulnerability Detection command line tool,securityblog.redhat.com -3,1398513935,17,ClassIndex is a much quicker alternative to every run time annotation scanning library like Reflections or Scannotations,github.com -24,1398513882,6,High performance Java reflection with Asm,github.com -2,1398513302,20,Some Questions JAVA SE Useful only For Beginners of Java Programming to get to know with terminology and basic stuff,people.auc.ca -8,1398507972,5,Flexy Pool reactive connection pooling,vladmihalcea.com -7,1398473805,13,ELI5 How do you code a gui interface with Java without using Swing,self.java -4,1398473157,8,Optional Dependency for Method Parameter With Spring Configuration,kctang.github.io -1,1398462860,18,Is there a way around bug JDK 8004476 so XSLT extensions work over webstart prior to Java 8,self.java -0,1398454572,10,Hiring Jr Java Developer Technology Hedge Fund 120k 200K NYC,self.java -0,1398452422,6,Abstract Class versus Interface In Java,javahash.com -6,1398449767,12,Running Node js applications on the JVM with Nashorn and Java 8,blog.jonasbandi.net -9,1398435536,9,Interested in working on OpenJDK Red Hat is hiring,jobs.redhat.com -973,1398430944,6,I HATE YOU FOR THIS ORACLE,i.imgur.com -6,1398426627,4,Reducing equals hashCode boilerplate,benjiweber.co.uk -4,1398424610,9,How to register MouseListener on divider of SplitPane JavaFX,self.java -4,1398417700,11,Simple ToolTipManager hack that prevents ToolTips from getting into the way,self.java -0,1398416490,8,How to create Spring web application video tutorial,javavids.com -1,1398400478,18,Help a newbie with a GUI that prints lines of a sonnet two buttons that switch line sonnet,self.java -9,1398389602,16,Is there a reason why in OSGi apps some people declare Logger fields as instance variables,self.java -1,1398378245,6,A Simple way to extend SWTBot,codeaffine.com -12,1398374565,11,Netflix Roulette API An unofficial Netflix API with a Java wrapper,netflixroulette.net -52,1398372137,6,HashMap performance improvements in Java 8,javacodegeeks.com -2,1398358047,8,Challenges in bringing applications to a multitenant environment,waratek.com -12,1398352459,9,How can I learn about the Java Virtual Machine,self.java -4,1398349889,7,Java Tutorial Through Katas Tennis Game Easy,technologyconversations.com -34,1398343390,8,Anyone use automated browser testing such as Selenium,self.java -2,1398327675,5,An Automated OSGi Test Runner,codeaffine.com -10,1398324812,6,Speed up databases with Hazelcast webinar,hazelcast.com -0,1398301556,2,Best IDE,self.java -3,1398289918,8,Scala 2 11 just launched check it out,news.ycombinator.com -0,1398265997,8,Can t Download Java Development Kit from Guam,self.java -1,1398259876,11,How did you convince your managers to switch to IntelliJ IDEA,self.java -2,1398259304,9,Configure Your OSGi Services with Apache Felix File Install,codeaffine.com -0,1398249997,5,Working with ArrayList of ArrayList,self.java -8,1398247104,8,Developing Java web apps with a lightweight IDE,blog.extrema-sistemas.com -11,1398241857,3,Java Blog Aggregator,topjavablogs.com -5,1398239978,6,An Introduction to the JGit Sources,codeaffine.com -39,1398233319,6,Spring Boot 1 0 GA Released,spring.io -5,1398230553,11,How can you use a static variables in non static methods,self.java -0,1398229258,2,weird syntax,self.java -0,1398220016,2,Netbeans problem,self.java -0,1398213945,18,Attempting my first Java project Trying to develop good practices from the beginning I would appreciate any feedback,self.java -0,1398209694,3,Assistance with programming,self.java -2,1398207434,19,I m a mainframe developer planning to learn java and get certified What certification should I aim for SCJP,self.java -3,1398204715,11,Golo a dynamic language for the JVM with Java equivalent performance,golo-lang.org -11,1398204223,7,A JUnit Rule to Conditionally Ignore Tests,codeaffine.com -0,1398200095,8,How do you make a restart in java,self.java -1,1398190807,10,Messing with I O two quick questions about my program,self.java -2,1398186363,7,Notes On Concurrent Ring Buffer Queue Mechanics,psy-lob-saw.blogspot.com -0,1398181646,7,Accessing HTTP Session Object in Spring MVC,javahash.com -74,1398177241,6,Java Evolution of Handling Null References,flowstopper.org -3,1398148223,11,Online Tool to Convert XML or JSON to Java Pojo Classes,pojo.sodhanalibrary.com -0,1398128928,11,Incompatible types when trying to access an element of an ArrayList,self.java -0,1398125607,8,My compiler refuses to import java util Arrays,self.java -1,1398105608,8,Creating ripemd 256 hash in Java Please help,self.java -16,1398094347,10,Intuitive Robust Date and Time Handling Finally Comes to Java,infoq.com -3,1398092235,6,Help with finding path to file,self.java -7,1398057156,7,Nashorn The New Rhino on the Block,ariya.ofilabs.com -11,1398046578,3,My Java ASCIIAnimator,self.java -38,1398020071,11,Nashorn The Combined Power of Java and JavaScript in JDK 8,infoq.com -22,1398001594,4,Introduction to Mutation Testing,blog.frankel.ch -88,1397970628,9,jMonkey Engine 3D Game Engine written entirely in Java,self.java -3,1397965573,12,Spring 4 Getting Started Guides using Gradle Spring Boot MVC and others,spring.io -23,1397950906,5,Spring Updated for Java 8,infoq.com -9,1397947595,2,Javacompiler Janino,self.java -0,1397903699,7,Need some help with a small converter,self.java -0,1397901799,16,Can someone help me compile a simple advertisement management system in Java I need it ASAP,self.java -3,1397895855,5,Best Development OS Personal Opinions,self.java -3,1397893640,9,Tutorial Read JSON with JAVA using Google gson library,blog.sodhanalibrary.com -38,1397837797,3,Embracing Java 8,sdtimes.com -4,1397827320,6,Learning JUnit Simple project testing sockets,self.java -8,1397826666,4,Facelets ui repeat tag,softwarecave.org -1,1397819350,5,Mon Trampoline avec Java 8,infoq.com -11,1397816930,8,How is this site for Java Certification preparation,self.java -55,1397804161,15,What have you learned from working with Java that you weren t told in school,self.java -15,1397787426,5,Web developer trying on Java,self.java -0,1397780511,9,Need some help copying this Map to my JList,self.java -19,1397770267,6,DevelopMentor Playing with Apache Karaf Console,developmentor.blogspot.com -0,1397768521,7,Looking to learn coding new to it,self.java -3,1397767989,4,Help with Environment Variables,self.java -6,1397767014,5,Summer break is coming up,self.java -16,1397752527,11,Collection of articles on java performance and concurrency from Oracle engineer,shipilev.net -21,1397746207,9,Using Exceptions to warn user vs if bool construct,self.java -27,1397742856,8,Contexts and Dependency Injection CDI 1 2 released,cdi-spec.org -4,1397731410,8,Tutorial How to Setup Key Combinations in JavaFX,blog.idrsolutions.com -4,1397725909,7,How to manage Git Submodules with JGit,codeaffine.com -11,1397717542,9,Writing Java 8 Nashorn Command Line Scripts with Nake,winterbe.com -4,1397704673,3,Java Career Help,self.java -27,1397693919,7,Which Java class is the real one,java.metagno.me -0,1397692703,11,Making an executable Jar file do what a batch file does,self.java -36,1397681211,10,Getting your Java 8 App in the Mac App Store,speling.shemnon.com -10,1397680731,8,Learn how to speed up your Hazelcast apps,blog.hazelcast.com -0,1397680544,12,Reading variables from a text file and writing to another text file,self.java -0,1397672768,12,Looking for help with basic code which structure should I be using,self.java -0,1397671425,9,Java devs needed for a usability study x post,self.java -0,1397669077,2,Java JComboBox,self.java -3,1397664738,8,GlassFish 4 HTTP Compression WebSocket leads to NullPointerException,self.java -16,1397658239,11,Example code dying in three different ways with minor configuration changes,plumbr.eu -0,1397637269,5,Helper method in Frontcontroller pattern,self.java -30,1397636366,6,Pretty Map Literals for Java 8,gist.github.com -7,1397635412,7,How does Machine Learning Links with Hadoop,self.java -1,1397614548,6,Using JavaFX Collections in Hibernate Entitys,self.java -0,1397603666,20,I have an error in my program one with an infinite loop and also how do I add another test,self.java -0,1397595933,8,How did you progress on your first year,self.java -6,1397591976,7,Oracle Critical Patch Update Advisory April 2014,oracle.com -1,1397591604,20,Show r java I made a java code movie at work out of boredom Resize the console to run it,imadp.com -2,1397591367,5,Help with undo redo design,self.java -3,1397584539,9,Show r java My Maven plugin for Ivy dependencies,github.com -48,1397577751,7,Updated Eclipse Foundation Announces Java 8 Support,eclipse.org -11,1397577438,4,Data tables in JSF,softwarecave.org -5,1397573847,3,Java Generics Tutorial,javahash.com -9,1397572897,4,Free MyEclipse Pro License,genuitec.com -8,1397566060,7,Java EE 7 resources by Arjan Tijms,javaee7.zeef.com -16,1397563336,14,How to EZ bake your own lambdas in Java 8 with ASM and JiteScript,zeroturnaround.com -7,1397562698,9,Java EE 7 style inbound resource adapters on TomEE,robertpanzer.github.io -8,1397529665,7,Heads up using Hibernate with Java 8,self.java -0,1397528215,5,Need help with class problem,self.java -1,1397523260,10,What s the best JSP based bug issue source tracker,self.java -0,1397514588,7,Just watch this for a good laugh,facebook.com -2,1397512119,4,Requs Requirements Specifications Automated,requs.org -1,1397511949,6,Myra Job Execution And Scheduling Framework,github.com -1,1397505608,3,Forwarding Interface pattern,benjiweber.co.uk -1,1397502690,7,Uploading a file to a server Multipartentity,self.java -0,1397500251,4,URGENT NetBeans jFrame stuck,self.java -341,1397499212,13,Okay IntelliJ we get it You don t want us to use Eclipse,i.imgur.com -2,1397497691,6,Joins in pure java database queries,benjiweber.co.uk -2,1397489877,9,What time of day are critical patch updates released,self.java -1,1397489329,5,Hibernate in Action PDF Book,vidcat.org -0,1397485364,11,Question Running multiple instances of a game in a single server,self.java -1,1397479790,5,Notifications to server using android,self.java -1,1397476677,8,How to index all links in a string,self.java -18,1397468541,7,Ganesha Sleek Open Source NoSQL Java DB,self.java -7,1397463966,5,Using jOOQ with Spring CRUD,petrikainulainen.net -9,1397451379,6,Clean Synchronization Using ReentrantLock and Lambdas,codeaffine.com -3,1397444046,7,My paper on Java and Information Assurance,yazadk.wordpress.com -1,1397439692,10,HELP REQUEST Jlayer Javazoom pause un pause while playing song,self.java -33,1397434655,15,People that have passed the Java Certification Exam can you kind of do an AMA,self.java -0,1397423325,17,Need some help with my program I m very close to finishing it but getting some errors,self.java -0,1397422058,28,Help debunking a Java Net ConnectException Connection refused connect problem Trying to create connection between local Java application and a remote MYSQL database hosted on fdb7 runhosting com,self.java -0,1397414961,11,Bullets are not showing up across network client screen in game,self.java -0,1397405177,5,Know the Best JAVA IDEs,pravp.com -10,1397397268,7,Alternative to loading a bunch of BufferedImages,self.java -0,1397362944,7,Starting the calendar grid for current month,self.java -0,1397358497,8,How to search an array for a string,self.java -25,1397357778,5,How To Catch A ClassNotFoundException,ninthavenue.com.au -1,1397356200,8,Trying to parse keyless json in Java object,self.java -0,1397352908,5,Methods for predicting runtime exceptions,self.java -2,1397329103,9,Data structure for managing abstract set of 2D nodes,self.java -3,1397328074,13,Want to shift from Spring JDBC to Dagger Hibernate JPA is this viable,self.java -5,1397323186,9,Is there an interface foo void bar in JDK8,self.java -0,1397319760,18,a nice waiting utility class that can be used in many projects or modified to suite your needs,self.java -0,1397314852,24,Java Interop Can a URI on a web page interact with a Java applet running on the same client but as a separate process,self.java -14,1397310068,4,Java 8 monadic futures,github.com -25,1397295725,7,Apache Commons Lang 3 3 2 released,mail-archives.apache.org -20,1397295589,7,H2 1 4 177 2014 04 12,h2database.com -6,1397294263,20,Question re performance difference of getting data via a JSON based Web service vs using an in process ORM DAL,self.java -0,1397277711,4,ConcurrentHashMap vs Collections synchronizedMap,pixelstech.net -4,1397236491,4,Parameterized tests in JUnit,softwarecave.org -0,1397234965,12,Need to find days ago instead of since 2 1 2014 search,self.java -8,1397228189,11,Transform your data sets using fluent SQL and Java 8 Streams,blog.jooq.org -52,1397228134,9,3 Good Reasons to Avoid Arrays in Java Interfaces,eclipsesource.com -13,1397217612,8,Best resources for learning Java JDeveloper and SQL,news.ycombinator.com -10,1397205250,7,Videos for React Conference 2014 in London,youtube.com -8,1397201699,4,Java Memory Model Basics,java.dzone.com -6,1397199714,13,Does Anyone know of a good website for third party look and feels,self.java -20,1397199644,4,Fluent Java HTTP Client,yegor256.com -13,1397195029,6,Gradle build process is painfully slow,self.java -1,1397192944,18,How does a reciever know the length of a string transmitted over a stream using the UTF8 format,self.java -1,1397181183,9,Looking for resources and reference information on integrating EmberJS,self.java -20,1397167249,9,Storing application configuration options Database xml file json file,self.java -10,1397164730,9,Any Good Resources for Learning the Jasmin Assembly Language,self.java -19,1397162040,14,I built a micro Web framework in Java 8 using lambdas Want some feedback,self.java -4,1397160621,14,How could I get my small company to switch me from Eclipse to IDEA,self.java -1,1397153174,10,In what order should I learn coding starting with Java,self.java -2,1397153032,12,Still can t figure this out I m pulling my hair out,self.java -0,1397147314,7,How to Check Java Version Java Hash,javahash.com -0,1397142227,2,Project idea,self.java -0,1397141699,7,Passing objects to and from different classes,self.java -15,1397141505,8,A functional programming crash course for Java developers,sdtimes.com -41,1397140949,3,Spring by Example,springbyexample.org -14,1397137588,9,Will requiring Java 8 limit adoption of a project,self.java -4,1397135358,11,Conquering job hell and multiple app branches using Jenkins amp Mercurial,zeroturnaround.com -0,1397130539,2,Algorithm complexity,self.java -3,1397125470,12,Set up JNDI datasource of Spring application in the embedded Jetty container,esofthead.com -27,1397123829,7,How to use Akka with Java 8,typesafe.com -0,1397099108,4,New to Java here,self.java -0,1397095997,10,How to add a string to a pre loaded array,self.java -0,1397090115,23,I m learning java and am running into trouble is it me not understanding it or is the teacher bad at teaching it,self.java -0,1397087762,18,Help a java newbie with class work creating an array list to store characteristics of dogs and cats,self.java -0,1397081499,3,Fibonacci Through Recursion,self.java -2,1397070703,7,Hey guys some help with Net Beans,self.java -11,1397070246,9,Processing Data with Java SE 8 Streams Part 1,oracle.com -10,1397067340,6,How to reliably release heap memory,self.java -0,1397066739,13,Orchestrate Java Client 0 3 0 update asynchronous programming and easy to use,orchestrate.io -0,1397065547,18,What kind of salary could a mid level Java Developer in a rural market proficient with Maven expect,self.java -51,1397059294,7,Why is Java so addicted to XML,self.java -2,1397058792,7,Best Java Books for Intermediate Python Developer,self.java -0,1397055272,10,How to get started with desktop applications written in Java,self.java -22,1397046965,8,10 Reasons why Java Rocks More Than Ever,java.dzone.com -10,1397031962,4,Tame properties with Spring,baeldung.com -0,1397024387,5,why doesn t this work,self.java -0,1397021303,3,Java Training Institute,self.java -5,1397015803,6,Confused on where to go next,self.java -18,1396987459,6,Jetty 9 1 4 v20140401 Released,dev.eclipse.org -20,1396986717,4,PyJVM JVM in Python,pyjvm.org -13,1396984295,11,Automated JUnit test generation and realtime feedback repost from r eclipse,reddit.com -0,1396976107,2,JOptionPane jokes,self.java -1,1396969370,9,What are some good tools for automatic code review,self.java -0,1396960245,6,Java s professional and personal implication,self.java -0,1396959515,10,will objects in array be remembered after application is closed,self.java -1,1396954233,8,JSF GWT or Exposing your backend through webservices,self.java -54,1396947935,9,Why did Java JRE vulnerabilities peak in 2012 2013,security.stackexchange.com -12,1396946297,9,How many Java developers are there in the world,plumbr.eu -1,1396940103,9,Get content from a textfield with a button Beginner,self.java -0,1396918814,10,Intermediate at Java i like being challenged in java programing,self.java -0,1396917534,9,New to Java having trouble understanding the binary search,self.java -27,1396912708,16,Java Basics A new series started by my good friend teaching the basics of java coding,youtube.com -4,1396903934,8,Very simple traffic light that might inspire beginners,self.java -5,1396901551,11,A Brief Introduction to the Concept amp Implementation of HashMaps HashTables,youtube.com -0,1396901109,13,HELP Is there a way to ignore the counter in a for loop,self.java -1,1396896938,6,Assigning server processes threads to cores,self.java -4,1396885931,7,Spring Security Hello World Example Java Hash,javahash.com -0,1396883885,4,Java installation gone awry,self.java -2,1396879660,2,Comment Ettiquite,self.java -95,1396862175,10,Using Artificial Intelligence to solve the 2048 Game JAVA code,blog.datumbox.com -1,1396843701,5,Efficient Code Coverage with Eclipse,codeaffine.com -18,1396829254,4,From Lambdas to Bytecode,medianetwork.oracle.com -0,1396824493,6,Java for beginner to become professional,youtube.com -3,1396821036,6,Problems importing custom class in gridworld,self.java -0,1396816585,6,Eclipse or Netbeans for SmartGWT GWT,self.java -43,1396812234,4,Java Multithreading Basics Tutorial,youtube.com -6,1396810137,7,Help assembling a specific JAVA COM wrapper,self.java -3,1396788191,11,The right usage of Java 8 lambdas with Vaadin event listeners,morevaadin.com -1,1396761652,7,LWJGL Swing no mouse events What do,self.java -0,1396757684,21,Programming Help In my first programming class and I don t understand a problem with my code writing classes and methods,self.java -0,1396757336,6,Starting a thread with a button,self.java -2,1396747106,5,Java Grade Calculator Your thoughts,pastebin.com -11,1396734184,6,Scalability for a java web app,self.java -1,1396731635,5,Ways to compress an image,self.java -4,1396726377,26,advice installing and learning Broadleaf to get better at JEE Spring Hibernate Can you recommend any other large open source projects to read and learn from,self.java -0,1396719915,4,Confused about this interface,self.java -30,1396717385,2,Understanding JavaFX,self.java -8,1396717090,9,Java 8 Friday The Dark Side of Java 8,blog.jooq.org -5,1396715738,8,Project amp Learning Outcomes Java N Queens Solver,youtube.com -0,1396715643,8,scs lib Secure Cookie Session implementation RFC 6896,github.com -0,1396683152,41,Hi there Here is a paid course free for sometime on the launching of LearnBobby Best place to learn and earn Course name Java for beginners http learnbobby com course java master course lite version Get it before it gets paid,learnbobby.com -42,1396678209,6,Interface Pollution in the JDK 8,blog.informatech.cr -15,1396676680,14,What are the consequences of the PermGen free Java 8 VM on OSGi applications,self.java -0,1396670975,6,How badly did I get owned,self.java -11,1396664510,5,Java 8 default implementation question,self.java -4,1396660237,12,P6Spy framework for applications that intercept and optionally modify sql database statements,p6spy.github.io -5,1396650194,7,What is Java doing for Serial Communications,self.java -5,1396624373,13,Integration Testing From The Trenches An Upcoming Book You ll Want To Read,java.dzone.com -28,1396595639,9,JMockit mocks even constructors and final or static methods,code.google.com -2,1396576036,11,Get rid of that 8080 on the end of Tomcat links,self.java -0,1396558809,3,Minecraft amp Java,self.java -5,1396558507,12,Beginner to Java and practicing arrays Let me know what you think,self.java -9,1396525984,11,Java build infrastructure Ansible Vagrant Jenkins LiveRebel and Gradle in action,plumbr.eu -29,1396521806,8,Java SE 8 Beyond Lambdas The Big Picture,drdobbs.com -7,1396512071,5,Learn Java by doing exercises,learneroo.com -0,1396476530,4,Error message wont display,self.java -1,1396474781,9,META INF services generator Annotation driven services auto generation,metainf-services.kohsuke.org -2,1396474704,20,Jasig CAS 3 5 2 1 and 3 4 12 1 Security Releases SAML 2 0 Google Accounts Integration components,jasig.275507.n4.nabble.com -27,1396474613,6,Apache Tomcat 7 0 53 released,mail-archives.apache.org -2,1396474564,6,Netty 4 0 18 Final released,netty.io -25,1396452135,6,Eclipse Foundation Announces Java 8 Support,eclipse.org -3,1396443666,8,Java Tip Hibernate validation in a standalone implementation,javaworld.com -0,1396442289,9,How to Encode Special Characters in java net URI,blog.stackhunter.com -12,1396435616,9,Netbeans users What s your favourite plugins and why,self.java -1,1396431992,4,Multiplayer game and sockets,self.java -2,1396430406,10,XPages IBM s Java web and mobile application development platform,xpages.zeef.com -4,1396425211,5,How do return really work,self.java -0,1396421423,7,Need some help and javahelp is empty,self.java -15,1396406403,6,Implementing functional composition in Java 8,self.java -5,1396406079,3,Help With JPanel,self.java -6,1396397706,8,Sudoku Solver Tutorial Part 1 Java Programming playlist,youtube.com -1,1396393430,12,Javahelp is very inactive and I m stuck on the finishing touches,self.java -9,1396390006,6,Utility Scripting Language for Java Project,self.java -0,1396383862,3,JAva program problems,self.java -5,1396381805,4,Android handler for java,self.java -29,1396381761,8,Vaadin UI technology switching from Java to C,vaadin.com -10,1396377123,4,Java Magazine Lambda Expressions,oraclejavamagazine-digital.com -12,1396374937,5,What s your favorite blend,self.java -3,1396370172,3,Project Euler 19,self.java -14,1396363147,6,JVM Java 8 Windows XP Support,self.java -0,1396328170,9,Looking for help with a Java assignment dont upvote,self.java -2,1396311736,5,Tutorials for android java development,self.java -1,1396310247,15,Intro to the NetBeans IDE One of the best Java Integrated Development Environments in Existence,youtube.com -3,1396302542,8,Need Help Controlling USB Relay Board in Java,self.java -0,1396299479,1,java,self.java -0,1396299459,4,ZOMBIES Hola Soy German,self.java -0,1396294598,5,ArrayList not returning proper type,self.java -2,1396292751,6,SPAs and Enabling CORS in Spark,yobriefca.se -119,1396288163,17,Do you like programming enough that you would keep doing it after winning the lottery for 100M,self.java -5,1396288074,24,PauselessHashMap A java util HashMap compatible Map implementation that performs background resizing for inserts avoiding the common resize rehash outlier experienced by normal HashMap,github.com -18,1396287910,17,The best tutorial on Java 8 Lambdas I ve seen Cay Horstmann Not for Java newbies though,drdobbs.com -1,1396287239,4,Mac JVM Windows JVM,self.java -2,1396283988,11,Two Thousand Forty Eight a Text Adventure cross post r programming,reddit.com -1,1396281394,8,design pattern for setting fields in super class,self.java -68,1396274374,7,What happened to synchronized in Java 8,enter-the-gray-area.blogspot.ch -1,1396272985,14,Jaybird 2 2 5 SNAPSHOT available for testing with a few Java 8 fixes,groups.yahoo.com -1,1396268102,3,Sun Java Certification,self.java -11,1396260366,9,The new google sheets parts written in Java GWT,docs.google.com -3,1396239070,5,Slim Down SWT FormLayout Usage,codeaffine.com -5,1396234220,21,Looking for a learning resource The basic data structures their pros cons use cases and Big O times for various operations,self.java -26,1396227289,7,Google new project written in Java GWT,google.com -6,1396219930,5,Compiling Java Packages without IDE,self.java -3,1396214997,6,Java equivalent to Net DataRow object,self.java -0,1396210184,10,looking for an open source java program 150 200 lines,self.java -2,1396207578,4,Clarification On Interfaces Please,self.java -5,1396193641,4,My recap of JavaLand,blog.frankel.ch -4,1396191968,5,Learn Java Programming The Basics,keenjar.com -7,1396189051,9,JVM Performs worse if too much memory is allocated,self.java -3,1396150683,14,Dumb question is the Spring GUI library and the Spring Framework the same thing,self.java -12,1396135853,11,Perft Speed amp Debugging Tips Advanced Java Chess Engine Tutorial 21,youtube.com -0,1396134097,7,Java Programming using only the Command Prompt,youtube.com -28,1396122792,12,Catching up with 5 6 years of Java progress What s good,self.java -0,1396119549,7,How to prevent IntelliJ from minimizing methods,self.java -4,1396088165,10,Apache Tomcat 8 0 5 beta available Java EE 7,mail-archives.apache.org -8,1396080231,5,Getters and setters gone wrong,refactoringideas.com -0,1396075636,3,XALAN J CVEs,issues.apache.org -4,1396075477,4,Dynamic Code Evolution VM,ssw.jku.at -51,1396061632,9,Coding with Notch from Minecraft The Story of Mojang,youtube.com -0,1396053167,5,Beginner question Project for school,self.java -2,1396035838,9,What is the disadvantage of importing too many packages,self.java -1,1396033276,4,java fork and join,javaworld.com -4,1396031009,3,Composition over Inheritance,variadic.me -0,1396025672,9,JAVA 8 TUTORIAL THROUGH KATAS REVERSE POLISH NOTATION MEDIUM,technologyconversations.com -3,1396024118,4,FirebirdSQL and IntelliJ IDEA,chriskrycho.com -1,1396017982,7,Recommend a primer for the Eclipse SWT,self.java -0,1396016981,7,Looking for someone with experience with jBPM,self.java -3,1396016742,13,Going to national competition in programming JAVA what should I bring with me,self.java -4,1396012614,11,I am writing a new book Ember js for Java Developers,emberjsjava.codicious.com -97,1396002558,12,Tired of Null Pointer Exceptions Consider Using Java SE 8 s Optional,oracle.com -7,1395999070,14,Base64 in Java 8 It s Not Too Late To Join In The Fun,ykchee.blogspot.com -20,1395988636,16,Effective Java by Joshua Bloch 2nd Edition Item 1 explained Static factory methods vs traditional constructors,javacodegeeks.com -8,1395988309,5,Will Java 8 Kill Scala,ahmedsoliman.com -1,1395982428,10,Cannot figure out why this will not delete the file,self.java -10,1395964834,9,How to tweet with Java as simple as possible,self.java -10,1395963424,49,Total java noob here For a intro level java class I had to use BufferedWriter to make a text document with the multiples of 5 up until 1 000 However my code prints Chinese I really want to know why on earth it prints Chinese code and output inside,self.java -4,1395961361,9,Java implementation of an array of lists of strings,self.java -12,1395957906,6,Still not getting try catch blocks,self.java -0,1395955539,13,Can someone give me a bit of advice on an assignment Thank you,self.java -3,1395954555,6,Including a JAR file in classpath,self.java -1,1395940494,4,Custom bean validation constraints,softwarecave.org -6,1395935199,3,Board game spaces,self.java -5,1395931261,12,Upgrading Java 6 SE 1 6 to Java 8 SE 1 8,self.java -3,1395929640,6,Need some help with image processing,self.java -29,1395919327,8,Why amp When Use Java 8 Compact Profiles,vitalflux.com -9,1395910637,11,Synchronize resources from local drive to Amazon S3 by using Java,esofthead.com -2,1395906254,4,Adding values to JTable,self.java -7,1395902904,10,Need a kick in the right direction for some homework,self.java -0,1395888910,6,Is operator overloading useless Interactive example,whyjavasucks.com -0,1395886801,7,Help with setup db in JUnit tests,self.java -5,1395874628,2,Java certificates,self.java -10,1395866200,6,Apache Archiva 2 0 1 released,mail-archive.com -0,1395860195,6,Need Help Extracting Sounds from Javascript,self.java -12,1395830486,4,Java 8 API Explorer,winterbe.com -0,1395825976,4,Leaking Memory in Java,blog.xebia.com -2,1395823321,6,need help with Programming by Doing,self.java -9,1395793555,5,Java and Memory Leaks question,self.java -7,1395791973,8,Creating a stack trace in Java Easiest methods,self.java -3,1395777964,20,I am trying to create a table using java derby EmbeddedDriver but i don t understand what these errors mean,self.java -3,1395777230,6,How to apply try catch blocks,self.java -0,1395775956,3,Event Driven Model,self.java -3,1395773746,4,Question about bad coding,self.java -20,1395766486,5,Eclipse Support for Java 8,eclipsesource.com -14,1395764882,7,RebelLabs Java Tools amp Technologies Survey 2014,rebellabs.typeform.com -0,1395764266,5,Processing an argument String Recursively,self.java -3,1395762434,10,Versioned Validated and Secured REST Services with Spring 4 0,captechconsulting.com -10,1395758859,8,Integrating Amazon S3 in your Application using java,blogs.shephertz.com -0,1395757430,6,How to open Appletviewer via console,self.java -13,1395755405,8,Measuring Fork Join performance improvements in Java 8,zeroturnaround.com -35,1395748739,7,Creative approach for killing your production env,plumbr.eu -29,1395748627,8,Best OCR optical character recognition Library for Java,self.java -2,1395743158,14,Can someone help troubleshoot why my command line program only works via Java 7,self.java -2,1395717374,16,I can t figure out why certain variables are returning 1 instead of their actual values,self.java -6,1395700100,6,How to program with Bitwise Operators,half-elvenprogramming.blogspot.com -2,1395695790,10,Generating random number depending on how many digits you want,self.java -9,1395692135,3,Stack Hunter Screenshots,self.java -16,1395686952,12,Long jumps considered inexpensive John Rose on the relative cost of Exceptions,blogs.oracle.com -9,1395683809,7,What is your go to Collection implementation,self.java -37,1395680495,8,Common exception misuses in Java and not only,softwarecave.org -0,1395679165,5,New enhancements for Java 8u1,self.java -3,1395674507,9,Java 7 one liner to read file into string,jdevelopment.nl -4,1395672816,7,How to use SWT with Java 8,eclipsesource.com -0,1395664734,10,Anyone know of a graphical page layout app in Java,self.java -35,1395647920,8,What is obsolete in Guava since Java 8,self.java -11,1395645792,4,Checked Exceptions and Streams,benjiweber.co.uk -6,1395637842,5,What are Mockito Extra Interfaces,codeaffine.com -7,1395617086,7,Java Bootcamps Classes in New York City,self.java -11,1395603470,16,Questions on getting a Java job in Europe for a year or two I m American,self.java -0,1395596510,8,Where to make your own code with Java,self.java -18,1395594800,5,jphp PHP Compiler for JVM,github.com -1,1395590048,10,Thinking about starting to learn java where do i start,self.java -10,1395589009,20,Is there a de facto way to store external plain text data so that it inter ops well with Java,self.java -25,1395581482,4,Java 8 Default Methods,coveros.com -6,1395551828,7,Java 8 UI Lambda based keyboard handlers,self.java -74,1395551536,6,How much faster is Java 8,optaplanner.org -50,1395546202,12,Complete list of all new language features and APIs in Java 8,techempower.com -1,1395523391,6,Measuring bandwidth and round trip delay,self.java -2,1395510765,6,Help using StringBuilder or Regex Matching,self.java -151,1395510294,8,In Java 8 we can finally join strings,mscharhag.com -31,1395492056,10,Java 8 Language Capabilities What s in it for you,parleys.com -25,1395489890,14,ASM 5 0 released full support for the new Java 8 class format features,forge.ow2.org -0,1395489653,8,crawler commons functionalities common to any web crawler,code.google.com -2,1395484944,6,Apache Commons Weaver 1 0 Released,mail-archives.apache.org -3,1395470960,6,Declaring public private or protected constructor,self.java -0,1395440492,13,How do I write the contents of a JTable to a text file,self.java -2,1395426198,10,How can I check two 2 dimensional Polygons on intersection,self.java -2,1395412131,8,Introduction to Java Programming Free Computers Video Lectures,learnerstv.com -34,1395404148,10,Java Developers Readiness to Get Started with Java 8 Release,vitalflux.com -8,1395396764,19,Andrew Dinn of Redhat is coming to my University does anyone have any questions they want me to ask,self.java -0,1395395905,6,Parts of code with multiple meaning,self.java -1,1395374887,4,Just out of curiosity,self.java -39,1395358209,5,NetBeans IDE 8 0 Released,netbeans.org -5,1395352116,7,Glassfish 4 with Eclipse and Java 8,self.java -4,1395350438,5,C style properties in Java,benjiweber.co.uk -6,1395348989,6,Resources for modernize my Java skills,self.java -4,1395346680,4,Gradle multiple project inconsistent,self.java -1,1395339170,7,Label the sides of a JButton grid,self.java -3,1395333739,10,JCache Data Caching for Java App Programming Hits the Channel,thevarguy.com -35,1395331206,8,10 Examples of Lambda Expressions of Java 8,javarevisited.blogspot.sg -87,1395322050,4,Too many if statements,stackoverflow.com -29,1395313524,3,Kotlin M7 Available,blog.jetbrains.com -2,1395310577,7,How to remove tab indicators in Netbeans,self.java -10,1395309946,10,So i want to learn JavaFX where do i begin,self.java -0,1395285650,9,Help Integrating Bitcoin Litecoin use into Java Source Code,self.java -0,1395278605,5,Problem URLClassLoader doesnt find class,self.java -2,1395271523,10,Migrating An Existing CodeBase to a newer version of Java,self.java -0,1395264598,4,Help Java and Android,self.java -42,1395242645,35,The authors of Algorithms Part I describe a complete programming model using Java This is an excerpt from Algorithms Part I 4th Edition which was published expressly to support the Coursera course Algorithms Part I,informit.com -4,1395242055,12,ELI5 what is a framework and how does it relate to Java,self.java -5,1395239777,7,Introductory Guide to Akka with code samples,toptal.com -0,1395235630,7,MongoDB and Scale Out No says MongoHQ,blog.couchbase.com -6,1395233003,6,From javaagent to JVMTI our experience,plumbr.eu -4,1395221045,8,Unsigned Integer Arithmetic API now in JDK 8,blogs.oracle.com -4,1395220792,9,Why did Java 7 take 5 years for release,self.java -15,1395217962,4,Java 8 and Android,self.java -16,1395213707,7,Under the hood changes in Java 8,self.java -0,1395211206,4,Oracle ADF Help site,self.java -0,1395202871,6,Functional FizzBuzz with Java 8 Streams,jattardi.wordpress.com -0,1395198622,4,Java 8 Release Fail,self.java -2,1395193926,3,Autoboxing into Optionals,self.java -0,1395181499,4,JDK 8 Release Notes,oracle.com -7,1395180456,4,The Optional Type API,techblog.bozho.net -0,1395172078,11,With the release of Java 8 can someone please ELI5 lambda,self.java -47,1395170523,5,IntelliJ IDEA 13 1 Released,blog.jetbrains.com -14,1395168717,6,Java SE 8 download is live,oracle.com -251,1395168576,5,Java 8 has been released,oracle.com -5,1395165286,9,OOD principles and the 5 elements of SOLID apps,zeroturnaround.com -2,1395163960,8,Validating HTML forms in Spring using Bean Validation,softwarecave.org -0,1395161835,5,Research on Java Enterprise Programming,self.java -0,1395160434,9,HIRING Front and back end dev in Southern California,spireon.com -2,1395160011,6,Tools Like Swagger to document JAVA,self.java -9,1395155313,16,HotSpot will use RTM Restricted Transaction Memory instructions to implement locking when running on Intel Haswell,mail.openjdk.java.net -9,1395154054,5,The Fundamentals of JVM Tuning,youtube.com -1,1395111184,6,advice on calling method using variable,self.java -3,1395098308,9,Attending a hackathon event soon could use some advice,self.java -1,1395098056,5,Video Audio editing in Java,self.java -1,1395088217,4,JSF Runtime exec doubt,self.java -26,1395082838,6,First class functions in Java 8,youtu.be -12,1395076812,13,Nerds test out new Shenandoah JVM Garbage collector on Role Playing Game Application,jclarity.com -3,1395076049,5,Framework for dealing with Actions,self.java -0,1395071641,5,Need help from you guys,self.java -3,1395069371,9,Trying to create artistic compositions based on an RNG,self.java -17,1395064756,11,IntelliJ IDEA 13 1 RC2 Ships Nearly Final Java 8 Support,blog.jetbrains.com -0,1395053912,7,Is there any good java assignments source,self.java -1,1395052440,8,Any good free online tools to learn Java,self.java -57,1395043401,3,Java 8 Tutorial,winterbe.com -0,1395037164,6,Using JPA and JTA with Spring,softwarecave.org -8,1395031507,5,Getting JUnit Test Names Right,codeaffine.com -3,1395025173,28,Running into ADF Jdeveloper issues specifically passing a row selection via right click and context menus from a query table to objects that use it for record selection,self.java -0,1395018008,9,Getting a list of every value in a map,self.java -2,1395016274,3,EJB Servlet Issues,self.java -7,1395015753,9,Published Beta version of Practical Eclipse Plugin Development eBook,blog.diniscruz.com -0,1395013461,8,Why won t the fiveDegrees method print anything,self.java -3,1395006071,10,Ideas on positioning a variable amount of images using swing,self.java -29,1394996659,10,Experiment with Java 8 Functionality in Java EE 7 Applications,jj-blogger.blogspot.de -4,1394994337,6,Apache Mavibot 1 0 0 M4,mail-archives.apache.org -5,1394994216,23,Apache OpenWebBeans 1 2 2 CDI 1 0 API JSR 299 Context and Dependency Injection for Java EE and JSR 330 atinject specifications,mail-archives.apache.org -20,1394993992,6,Apache Commons Compress 1 8 Released,mail-archives.apache.org -9,1394993286,2,Timer help,self.java -2,1394980353,11,Recommendations for open source visual mapping software for mapping career paths,self.java -2,1394972236,8,How do I start over from main again,self.java -11,1394950817,23,What are some of the common interview questions which would be asked More programming questions than concepts ie writing code on the board,self.java -0,1394932718,8,How to view java source code in eclipse,abrahamfarris.com -0,1394909303,6,Java Basics Lesson 6 Conditional Statements,javabeanguy.com -0,1394907948,4,Generating a random figure,self.java -1,1394907018,13,Question about Method the three dots public int changeInt int input Moves move,self.java -48,1394893025,6,How DST crashed the batch job,self.java -0,1394864076,10,First service release for Spring Data release train Codd released,spring.io -8,1394863536,7,Locking the Mouse inside an Application Frame,self.java -22,1394853156,7,Deploying a Java Tomcat Application via Chef,blog.jamie.ly -3,1394844825,3,Authenticating a WebBot,self.java -0,1394844816,2,Gridworld battles,self.java -0,1394840510,8,How do you guys like my color scheme,imgur.com -0,1394839029,37,Hey r java this is probably an easy fix for you guys but I was trying to test my program and I noticed that it prints null as well as the word entered Any one know why,imgur.com -8,1394821723,3,Modern Web Landscape,self.java -17,1394811877,6,JSR 363 Units of Measurement API,jcp.org -10,1394811450,6,Integration testing with Maven and Docker,giallone.blogspot.co.uk -0,1394807926,2,Garbage Collection,self.java -0,1394795257,4,How I learn Java,self.java -2,1394779857,7,Strange Java compilation issue involving cyclic inheritance,self.java -21,1394768279,9,Examples of beautifully written heavily unittested open source code,self.java -4,1394754866,13,I m deploying to Glassfish How do I get a faster feedback loop,self.java -7,1394751889,19,Good books similar to the style of the C programming language by Brian W Kernighan and Dennis M Ritchie,self.java -0,1394749870,2,Quick question,self.java -0,1394738003,8,counting occurences of a substring in a string,self.java -9,1394734587,12,Repeating Annotations The Java Tutorials gt Learning the Java Language gt Annotations,docs.oracle.com -0,1394732191,11,The Future of Java and Python HSG Articles from Software Fans,hartmannsoftware.com -0,1394723376,2,Live streaming,self.java -0,1394723305,29,java SampleProgram 533 I m a little new to programming Can someone help me break the sections down at a high level What improvements can be made to it,self.java -3,1394723054,9,Hosting your Eclipse update site P2 on Bintray com,blog.bintray.com -1,1394723031,14,Is this an acceptable way to load a class into the JVM at runtime,self.java -10,1394713657,4,Guice vs CDI Weld,self.java -2,1394704612,7,Moving characters in text based java game,self.java -8,1394702726,8,Hazelcast vs Cassandra benchmark on Titan Graph DB,mpouttuclarke.wordpress.com -2,1394688983,9,Recommendations for textbooks tutorials on writing UI in java,self.java -0,1394688301,10,Can someone tell me why this is an infinite loop,self.java -3,1394677136,5,Java and MySQL on Linux,self.java -6,1394673221,5,Java Textpad Game Do While,self.java -0,1394663011,4,ELI5 JUnit and XML,self.java -14,1394653294,4,Recommended training or conferences,self.java -0,1394652690,8,Java installs supposedly but then doesn t run,self.java -1,1394650936,7,Effective JAVA Typesafe Heterogeneous Container Pattern Implementation,idlebrains.org -8,1394648869,12,Beginner making a ludo game in java Any recommendations how to start,self.java -0,1394643338,6,Spring Dependency Injection DI Java Hash,javahash.com -0,1394639105,13,Vlad Mihalcea s Blog JOOQ Facts From JPA Annotations to JOOQ Table Mappings,vladmihalcea.com -4,1394629716,7,Java Tutorial Through Katas Fizz Buzz Easy,technologyconversations.com -6,1394627962,10,Concurrency torture testing your code within the Java Memory Model,zeroturnaround.com -0,1394624839,4,java notepad plugin compiler,raihantusher.com -13,1394623057,7,Java 8 Day EclipseCon North America 2014,eclipsecon.org -16,1394610739,7,Significant SSL TLS improvements in Java 8,blog.ivanristic.com -0,1394610463,10,Which version control allows easy reverts to a previous version,self.java -60,1394591830,13,Is JSP dead Please clarify this to me Just got a job interview,self.java -0,1394589186,5,Java Annotations educating and entertaining,whyjavasucks.com -1,1394583129,4,Head First Java outdated,self.java -0,1394580525,4,Advanced Serialization for Java,prettymuchabigdeal.com -0,1394579943,2,java programming,self.java -3,1394567373,3,Java game programming,self.java -20,1394556298,9,Using a Java Hypervisor to reduce your memory footprint,waratek.com -3,1394554024,3,Hosted Sonatype Nexus,self.java -1,1394552510,4,Software Versioning and Bugfixes,flowstopper.org -10,1394544569,11,Extracting Dates And Times From Text With Stanford NLP And Scala,garysieling.com -8,1394528150,6,Why package by type of type,self.java -22,1394526487,4,ObjectDB VS Hibernate ORM,self.java -13,1394518490,7,Projects to include in your Github portfolio,self.java -0,1394501997,6,Java message source best practice question,self.java -0,1394496981,9,How to add JLabels to a grid of JButtons,self.java -1,1394493018,8,Looking for tutorials for game making 2 D,self.java -13,1394492602,8,Use JNDI to configure your Java EE app,blog.martinelli.ch -2,1394492248,7,Anyone using OpenShift to host Jsp s,self.java -1,1394487457,9,Can you install packages using OS manager through Ant,stackoverflow.com -1,1394449946,2,Java forums,self.java -0,1394446470,9,Configure Spring datasource with dynamic location of property file,esofthead.com -3,1394445240,11,JSF I love you me neither 2011 auto translate from French,next-presso.com -0,1394408518,6,A good book to learn java,self.java -9,1394398843,6,Tools techniques standards to improve quality,self.java -24,1394389277,5,Read Modern Programming Made Easy,leanpub.com -7,1394380500,5,Spring Boot amp JavaConfig integration,morevaadin.com -0,1394363990,14,Why You Should Never Check if Two Strings Are Equal With Equal to Operator,javabeanguy.com -0,1394340827,6,Java program to Android app help,self.java -0,1394331808,3,Algorithm Analysis Help,self.java -0,1394317950,19,Today I m beginning my journey I will keep this post updated with my every days progress and pictures,self.java -1,1394317857,4,Hosting servlets within Eclipse,self.java -5,1394297655,10,libpst read Outlook pst file for the storage of emails,code.google.com -0,1394297370,4,Help with Java Assignment,self.java -0,1394295829,5,Workings on Java String JavaHash,javahash.com -35,1394288088,6,Guidance on self updating Java application,self.java -0,1394287637,18,Looking for some pointers to help improve my coding Swing GUI web scraping x post from f codereview,reddit.com -0,1394283431,6,Apache Maven Release 2 5 Released,maven.40175.n5.nabble.com -0,1394270296,8,Java Basics Lesson 4 Conditional and Bitwise Operators,javabeanguy.com -17,1394259620,6,Quick guide to building Maven archetypes,daveturner.info -1,1394256206,4,Working with Nexus Repository,daveturner.info -0,1394238357,6,New with Java need some help,self.java -5,1394236366,5,RxJava Observables and Akka actors,onoffswitch.net -0,1394235209,4,beginner help with Java,self.java -1,1394229195,12,Your opinion Are hand written methods on paper considered archaic to you,self.java -0,1394229034,17,Ping Identity A leader in the Identity and Access Management space Hiring multiple Java Engineers in Denver,self.java -0,1394226299,3,Help with Proxy,self.java -10,1394217786,12,Forward CDI 2 0 rough cut by future CDI 2 spec lead,next-presso.com -12,1394217658,7,Java 8 Friday Goodies SQL ResultSet Streams,blog.jooq.org -3,1394216644,14,DevNation Announced a new Java and open source conference San Francisco April 13 17,devnation.org -0,1394213138,4,Ideas for Java project,self.java -3,1394210785,20,Are the patterns guidelines described in Designing Enterprise Applications with the J2EE Platform still valid for Java EE 6 7,self.java -2,1394208037,6,Good resources on proper thread usage,self.java -51,1394196604,8,Java 8 Resources Caching with ConcurrentHashMap and computeIfAbsent,java8.org -0,1394189480,2,KILL ME,self.java -0,1394183404,9,Java Help Program won t print out or terminate,self.java -0,1394149983,4,Learning Java after Scala,self.java -87,1394138319,11,Last minute critical Java 8 bug found Will release be delayed,mail.openjdk.java.net -5,1394138270,6,Controlling Belkin WeMo Switches from Java,blog.palominolabs.com -16,1394132894,4,Java EE 7 Petclinic,thomas-woehlke.blogspot.com -0,1394127748,5,Need help for personal knowledge,self.java -0,1394124789,4,Wicket Application Development Tutorial,vidcat.org -6,1394091511,17,Getting rid of hand written bean mappers using code generation MapStruct 1 0 0 Beta1 is out,mapstruct.org -21,1394089164,17,Would you specialise in Java technologies or broaden your skill set over another 2 to 3 languages,self.java -14,1394082312,6,Apache Commons DBCP 2 0 released,mail-archives.apache.org -40,1394082090,6,Apache Commons Lang 3 3 released,mail-archives.apache.org -8,1394081822,8,Apache Shiro 1 2 3 Released Security Advisory,mail-archives.apache.org -9,1394077518,9,A guide around Spring 4 s buggy Websocket support,movingfulcrum.tumblr.com -2,1394068973,4,Java as first language,self.java -0,1394061483,4,Simplifying a Roulette Simulator,self.java -10,1394060651,9,For someone who is moving from C to Java,self.java -6,1394056735,9,Spring can t find bean in a JAR file,self.java -11,1394051758,9,Java 8 Resources Introduction to Java 8 Lambda expressions,java8.org -3,1394050244,6,Question JIT JVM overhead on hypervisors,self.java -0,1394033561,7,Beanstalkd and Glassfish 4 connections piling up,self.java -20,1394012837,6,Typesafe s Java 8 Survey Results,typesafe.com -0,1394011042,2,Java Task,self.java -3,1394008606,12,SWT Do You Know the Difference of Tree select and Tree setSelection,codeaffine.com -18,1393987018,16,Hey r Java I ve been working on my Java conventions Am I doing it right,pastebin.com -0,1393973818,5,Anyone want to test this,self.java -0,1393964107,10,The Fate of TDD Research is in your Hands Reddit,self.java -0,1393951629,11,Find the name of Exe running java application from inside code,self.java -4,1393948703,11,How would I go about feeding live data into an app,self.java -31,1393946344,11,How to avoid ruining your world with lambdas in Java 8,zeroturnaround.com -6,1393942094,7,Using the AutoValue Code Generator in Eclipse,codeaffine.com -3,1393941637,16,A subreddit for java developers to show their projects and ask for help from other members,reddit.com -0,1393935443,7,Kickstarter EasyEclipse for Java by Pascal Rapicault,kickstarter.com -5,1393935153,7,How not to create a permgen leak,plumbr.eu -5,1393933089,7,Differences between Jboss EAP amp Jboss GA,self.java -0,1393932377,3,Beginner Java help,self.java -24,1393929462,7,Adding Java 8 Lambda Goodness to JDBC,java.dzone.com -4,1393913700,7,Recursively walking a directory using Java NIO,softwarecave.org -51,1393877485,6,Survey Developers eager for Java 8,infoworld.com -7,1393871865,8,Can somebody explain annotations to me like this,self.java -20,1393870854,9,Java 8 Friday Goodies Easy as Pie Local Caching,blog.jooq.org -44,1393854634,6,Why One Hour Equals Ten Defects,thebriman.com -3,1393845197,11,Measuring the Social Media Popularity of Pages with DEA in JAVA,blog.datumbox.com -0,1393841016,10,why do we have to pay for help on java,liveperson.com -8,1393836874,8,Spring MVC Hibernate MySQL Quick Start From Scratch,gerrydevstory.com -6,1393822997,2,EnterpriseQualityCoding FizzBuzzEnterpriseEdition,github.com -0,1393811424,3,Java Android HELP,self.java -29,1393809143,11,Short intro to WebSockets in Java with JavaWebSocket JavaEE7 and Spring4,hsilomedus.me -5,1393795340,11,Cool new way to deploy JavaFX applications to the end user,captaincasa.blogspot.co.nz -0,1393784789,8,Teaser for Cargo Culting and Memes in JavaLand,blog.frankel.ch -4,1393776521,11,What do you think about the new Java 8 Optional monad,plus.google.com -4,1393775474,10,Is there a thread safe JDK 8 equivalent for SimpleDateFormat,self.java -8,1393768798,10,Why doesn t Eclipse community stand up more to IntelliJ,blog.diniscruz.com -25,1393758363,7,Net web developer getting started with Java,self.java -8,1393744988,8,A few questions over the basics of java,self.java -0,1393744531,8,Trying to display circles not going so well,self.java -0,1393698573,4,NEED HELP IN JAVA,self.java -1,1393690499,6,Java Basics Lesson 3 Arithmetic Operators,javabeanguy.com -51,1393687806,14,It s more important that Java programs be easy to read than to write,java.net -3,1393687368,2,INDEX usage,self.java -9,1393682344,5,JLS amp JVMS spec diffs,cr.openjdk.java.net -1,1393680929,10,Achieving Extreme GeoServer Scalability with the new Marlin vector rasterizer,geo-solutions.it -1,1393674071,12,CVE 2014 0002 and CVE 2014 0003 Apache Camel critical disclosure vulnerability,mail-archives.apache.org -15,1393673978,6,HttpComponents Client 4 3 3 Released,mail-archives.apache.org -1,1393673676,6,Konik ZUGFeRD de invoicing data model,konik.io -1,1393673507,7,Persistent immutable collections for Java from Scala,github.com -1,1393637815,13,How to create a java file with no pre written code on Netbeans,self.java -7,1393636431,10,Gavin Bierman leaves Microsoft Research Cambridge to join Oracle Labs,plus.google.com -1,1393619027,6,NumberFormatException Best practices for form submissions,self.java -109,1393589926,7,10 Subtle Best Practices when Coding Java,blog.jooq.org -6,1393544952,10,Using Proximo as a SOCKS proxy in Java on Heroku,blog.palominolabs.com -15,1393544211,19,Last weekend I made an opensource TwitchPlays Clone in java for Linux and VBA x post from r twitchplayspokemon,github.com -8,1393536891,3,codehause org gone,self.java -23,1393535499,17,With all that Java can do what type of project should I create for my portfolio first,self.java -10,1393525991,7,Loading a Properties File via context xml,blog.jamie.ly -8,1393524787,6,Help w intro to data structures,self.java -1,1393517717,7,Java Dev here Question about Spring framework,self.java -6,1393517563,9,WildFly 8 versus TomEE versus WebLogic and other matters,jaxenter.com -0,1393509720,5,How do you learn java,self.java -0,1393506179,9,Full Apache stack for the Apache licensed RIA framework,vaadin.com -1,1393503189,9,JavaFX 2 Testing Library With Fluent API EUPL license,github.com -0,1393501654,12,50 bounty if you fix this jenkins plugin java jenkins svn tagging,freedomsponsors.org -4,1393496811,4,Java Personal Cloud Software,self.java -8,1393490289,10,Tutorial How to Create a Border Glow Effect in JavaFX,blog.idrsolutions.com -10,1393483424,9,Pitfalls of using sun misc Unsafe for chasing pointers,psy-lob-saw.blogspot.com -8,1393479828,7,Performance of JSON Processing and json smart,self.java -0,1393478856,15,Need help with while loop code can t seem to figure out what is happening,self.java -3,1393449378,3,Java Security Updates,self.java -0,1393448125,5,Need help with pattern problem,self.java -0,1393446907,4,Java Fraction Calculator Example,gigal.blogspot.com -38,1393446009,7,Results from Java EE 8 survey pdf,java.net -2,1393445591,6,Calculating cryptographic hash functions in Java,softwarecave.org -5,1393443253,7,Why should I learn the Spring framework,self.java -6,1393442548,11,A deeper look into the Java 8 Date and Time API,mscharhag.com -7,1393441576,4,Worst possible method signature,self.java -2,1393439315,5,toString method on Immutable classes,self.java -2,1393436266,7,eclipse 3 8 or eclipse 4 3,self.java -0,1393433279,4,Help with java homework,self.java -4,1393429690,12,dagger servlet A guice servlet port for Dagger managed injection of servlets,github.com -2,1393407945,6,A simple JSF amp Glassfish question,self.java -10,1393407059,3,Mobile dev device,self.java -0,1393393955,3,If Statement Help,self.java -1,1393386220,9,New to programming having trouble with code from text,self.java -2,1393385941,3,Help with PropertyChangeListener,self.java -7,1393381817,2,Sound recording,self.java -0,1393378546,10,Very new to programming and Java Question about use charAt,self.java -0,1393373959,11,Is there an easy way to do exponential subtraction in Java,self.java -4,1393370821,7,Miranda Methods a historical note in comments,grepcode.com -3,1393366657,8,Practicality of JVM based languages other than Java,self.java -1,1393349150,11,Some New Tricks For the Old Dog Java 8 x programming,youtube.com -2,1393344016,8,Java 8 Tutorial Through Katas Berlin Clock Easy,technologyconversations.com -134,1393338439,6,Please stop saying Java sucks 2009,blog.smartbear.com -1,1393336230,9,Why Static Code Analysis is Important on Java Projects,javarevisited.blogspot.sg -0,1393334141,8,A JUnit Rule to Ease SWT Test Setup,dzone.com -2,1393327697,9,How to Load Config Files with the Strategy Pattern,blog.stackhunter.com -2,1393322610,27,Looking for a exciting payed summer project in big data Stratosphere got accepted to Google Summer of Code 2014 Check the idea list xpost from r bigdata,github.com -2,1393320209,4,Fast Remote Service Tests,blog.thesoftwarecraft.com -22,1393314175,15,Cool minimal open source screenshot program I wrote in Java x post from r coding,sleeksnap.com -14,1393313197,9,New grad feeling lost in java tools help please,self.java -2,1393299067,18,I want to improve my java what books frameworks modules should I look into to improve my java,self.java -0,1393298958,6,Java Help Yes it is homework,self.java -5,1393290601,9,Tomcat fighting me can not get a database connection,self.java -2,1393288041,15,io tools Java utilities for stream wiring and file format detection OutputStream to InputStream conversion,code.google.com -3,1393274828,7,Learning J2EE7 Java EE 7 vs Grails,self.java -0,1393274143,6,Book recommendations for refreshing my memory,self.java -2,1393271755,6,Java interview questions looking for feedback,self.java -2,1393264816,8,Tools and frameworks for the modern Java developer,self.java -1,1393264037,16,Is there a Java Emulator for iPad A way to practice java programming without the computer,self.java -6,1393262353,4,JPA and persistence xml,self.java -11,1393256669,30,UPDATE New version of Pebble the java templating engine It now includes the much desired autoescaping of templates and numerous bug fixes Looking for people to try and break it,blog.pebble.mitchellbosecke.com -0,1393249756,10,Year Of Code amp The Myth Of The Programmer Shortage,codemanship.co.uk -159,1393245915,8,Why printing B is dramatically slower than printing,stackoverflow.com -4,1393240326,6,Spring Framework Links by Amaresh Agasimundina,springframework.zeef.com -1,1393233540,18,New to java and programming in general I have 2 theoretical questions Would really appreaciate some answers Ty,self.java -2,1393231704,5,Most common gotchas in Java,vanillajava.blogspot.co.uk -2,1393231238,9,Where and how do you organize your central objects,self.java -1,1393219618,5,Specify cipher suites for HttpsURLConnection,self.java -0,1393219391,19,Updated my Java and now I cant access my chat site because it s being blocked by security settings,self.java -4,1393216709,6,Responsive UIs with Eclipse and SWT,codeaffine.com -1,1393215863,3,HelloWorld servlet help,self.java -18,1393207179,10,When should I assign null to a variable for GC,self.java -0,1393183784,7,How does MapReduce receive input by default,self.java -6,1393121316,3,Favorite Java talks,self.java -35,1393120922,16,What is your most interesting program you ve worked on in the last year or so,self.java -0,1393103530,14,How to receive a XML file or other similar format from an HTTP server,self.java -8,1393098030,22,Hello Javit I d like to show you an early version of a browser based log monitoring tool I m working on,self.java -24,1393094778,12,From Imperative Programming to Fork Join to Parallel Streams in Java 8,infoq.com -7,1393086499,5,Java Basics Lesson 2 Arrays,javabeanguy.com -0,1393080716,17,JFrame JPanel and repaint feel like I m being stupid but I don t really get it,self.java -0,1393079881,3,Law of Demeter,eyalgo.com -6,1393061654,15,Custom Java query class DSL Builder pattern static imports or something else for complex queries,stackoverflow.com -1,1393049727,13,Pass by reference and pass by value Which is it where and how,self.java -7,1393044119,11,Web Translation Service using Apache Cxf JAX WS JAX RS SpringFramework,apprenticeshipnotes.org -76,1393022881,24,My teacher told us to write a program to print a picture in Intro to Java a couple days ago This was the result,i.imgur.com -0,1393019873,18,Best way to generate elements from a list using custom components not a listview x post r javafx,reddit.com -0,1393010375,8,Has anyone seen this weird Eclipse bug before,stackoverflow.com -2,1393006505,6,Coping with Methods with Many Parameters,techblog.bozho.net -3,1393005043,10,Java And Scala Former Competitors May Be BFFs Before Long,readwrite.com -1,1392999760,5,Testing Spatial Data with DbUnit,endpoint.nl -8,1392996982,22,squirrel foundation is a State Machine library which provided a lightweight easy use type safe and programmable state machine implementation for Java,github.com -25,1392979311,9,Jersey 2 6 has been Released New and Noteworthy,blog.dejavu.sk -3,1392971037,5,Clean approach to Wicket models,blog.eluder.org -17,1392961953,5,Java performance and good design,self.java -0,1392957379,3,Confusion in Java,self.java -0,1392950129,2,Program help,self.java -29,1392942226,14,JAAS in Java EE is not the universal standard you may think it is,arjan-tijms.blogspot.com -0,1392933616,12,How do you assign a lambda to a variable in Java 8,stackoverflow.com -18,1392931477,10,Apache Tomcat 7 0 52 released Fix CVE 2014 0050,mail-archives.apache.org -0,1392929397,6,Cayenne ORM 3 1 release candidate,mail-archives.apache.org -0,1392897753,5,JavaFX with Nashorn Canvas example,justmy2bits.com -88,1392892653,10,Your Path to a 16B exit Build a J2ME App,blog.textit.in -3,1392873844,6,Help me choose a thesis subject,self.java -0,1392867962,15,Is there a way to get JavaCC to ignore everything which is not a token,self.java -14,1392854465,10,More on Nashorn Oracle s JavaScript engine shipping with Java8,blog.credera.com -10,1392850997,14,Oracle and Raspberry Pi Develop Java Embedded Applications Using a Raspberry Pi Free MOOC,apex.oracle.com -4,1392841940,11,pretty console a java library to make application config properties beautiful,github.com -7,1392837990,9,Should You Use Spring Boot in Your Next Project,steveperkins.net -0,1392834919,17,Can t figure out how to access my sqlite database from within a webapp deployed on tomcat,self.java -1,1392834690,8,Did repaint change in Java 6 or 7,self.java -6,1392831689,13,Shenandoah A new low pause Garbage Collection algorithm for the Java Hotspot JVM,jclarity.com -7,1392829437,11,199 core java interview questions you can download from below link,programmers99.com -7,1392824446,17,Hazelcast MapReduce API distributed computations which are good for where the EntryProcessor is not a good fit,infoq.com -7,1392823890,6,Apache Archiva 2 0 0 released,mail-archives.apache.org -14,1392817652,15,jol Java Object Layout the command line tool to analyze object layout schemes in JVMs,openjdk.java.net -109,1392814367,6,Why amp How I Write Java,stevewedig.com -17,1392800472,16,Hooray We just released version 3 of Ninja A full stack web framework written in Java,ninjaframework.org -0,1392784036,11,Is there a good way to integrate ads to a gui,self.java -0,1392778867,6,Help counting trigrams in a string,self.java -4,1392776164,6,Java Graphical Authorship Attribution Program JGAAP,evllabs.com -0,1392748894,4,Trouble with Xamarin Studio,self.java -147,1392747288,18,AMA We re the Google team behind Guava Dagger Guice Caliper AutoValue Refaster and more ask us anything,self.java -0,1392741923,7,Google s Java Coding Standards Java Hash,javahash.com -0,1392741738,7,Java Comparator and Comparable demystified Java Hash,javahash.com -10,1392738032,4,Thread Confinement JavaSpecialists 218,javaspecialists.eu -49,1392733077,5,Monadic futures in Java 8,zeroturnaround.com -6,1392732184,6,Java SE 8 Date and Time,oracle.com -5,1392731950,16,Learning to program Java by myself reasonable useful learning curve or approach to more complicated problems,self.java -0,1392716911,5,Java Basics Lesson 1 Variables,javabeanguy.com -43,1392714812,7,Parsing very small XML beware of overheads,clement.stenac.net -0,1392706569,13,Java net a good resource for staying up to date with Java news,java.net -16,1392694866,7,Salary For an Entry Level Software Engineer,self.java -3,1392689664,8,Going to hackathon with no experience need help,self.java -1,1392684445,9,Need help with a tiny logic error almost finished,self.java -1,1392670518,4,Question about java classes,self.java -0,1392666480,7,Cannot get if statement to print text,self.java -3,1392663459,6,books can be read in bed,self.java -1,1392658943,11,Java EE Tutorial 4 1 Security Realms with Glassfish Part 1,youtube.com -0,1392656017,7,Adv Java Java Server Page Session Management,vakratundcloud.co.in -0,1392652992,5,Adv Java Servlet Hidden Field,vakratundcloud.co.in -0,1392652297,5,Adv Java Servlet Database Connectivity,vakratundcloud.co.in -17,1392651797,3,Swing to JavaFX,dreamincode.net -8,1392651691,2,Spek Documentation,jetbrains.github.io -14,1392635796,7,Optimize MySQL Queries with Spring s JdbcTemplate,blog.stackhunter.com -2,1392633296,4,Inject Properties using CDI,blogs.oracle.com -0,1392621695,5,How send data from server,self.java -30,1392615309,2,JUnit Rules,codeaffine.com -2,1392592018,8,Using Delimiter to get info inside curly braces,self.java -0,1392587855,14,An error concerning a local variable that is not a local variable Any Suggestions,self.java -0,1392586287,9,An improved example of how volatile in java helps,orangepalantir.org -0,1392575738,6,How do I end this loop,self.java -1,1392575476,11,HashMap is faster than a search through all the values right,garshol.priv.no -1,1392567167,7,Chaining URL View resolvers in Spring MVC,blog.frankel.ch -6,1392562950,6,Jersey Hello World Example Java Hash,javahash.com -3,1392561684,7,Is JDK8 going to support Windows XP,self.java -19,1392560782,11,Mockito Why You Should Not Use InjectMocks Annotation to Autowire Fields,tedvinke.wordpress.com -45,1392560431,12,10 Reasons Why Java Rocks More Than Ever Part 9 Backwards Compatibility,zeroturnaround.com -4,1392536617,13,What s a good book for learning about the new Java 8 features,self.java -0,1392527532,10,How do I round of to a specific decimal point,self.java -11,1392519462,3,Google Guava Presentation,scaramoche.blogspot.co.uk -8,1392506893,11,Java game engine jMonkeyEngine 3 0 Capuchin Prime is officially STABLE,hub.jmonkeyengine.org -0,1392504588,5,Need help to learn JAVA,self.java -0,1392504285,9,is a has a Difference between inventory and stock,self.java -3,1392499360,14,How to Overwrite The Version of Mojarra in WLS 12 1 2 and Beyond,weblogs.java.net -41,1392498481,15,Under what circumstances do you tell people you are a programmer verses a software engineer,self.java -6,1392493215,8,What is the best data type for currency,self.java -2,1392492284,10,How do I fill this empty space in my GUI,self.java -10,1392476573,7,Announcing Java ME 8 Early Access 2,terrencebarr.wordpress.com -1,1392454154,12,How should I use Hibernate Mapping while dealing with huge data table,stackoverflow.com -34,1392446717,8,Good Programming Tutorials Are Few and Far Between,self.java -0,1392441439,6,Did I make a major mistake,self.java -0,1392435079,16,Hi there I was wondering if anybody could help me with a problem I am having,self.java -0,1392425766,7,Why aren t my methods being called,self.java -3,1392420326,23,The Blind Builder An alternative design pattern to the Bloch Builder for classes intended to be extended and sub extended many times aliteralmind,programmers.stackexchange.com -10,1392414873,3,WildFly 8 benchmarked,jdevelopment.nl -2,1392413238,7,JavaFX application launches but does not run,self.java -1,1392402960,8,My first Java Game Thing Link in Desc,self.java -0,1392402238,11,Can t seem to figure out why this will not compile,self.java -0,1392395694,5,Adv Java Servlet Basic Example,vakratundcloud.co.in -7,1392393230,12,What common pieces of code you implement in most of your projects,self.java -0,1392390913,5,Best Tutorial to Learn Java,self.java -5,1392386547,6,The Exceptional Performance of Lil Exception,shipilev.net -1,1392386189,6,8 Cool Things About Java Streams,speling.shemnon.com -94,1392376716,10,What aspect of your Java programming do you like best,self.java -2,1392362363,4,JavaFX application slow startup,self.java -0,1392357082,4,Java Roomba Program Help,self.java -0,1392348947,2,Help please,self.java -1,1392341570,11,How do I parse a String into java sql Date format,self.java -1,1392340628,10,I have a noob question Can anyone help me out,self.java -1,1392340133,20,I want to build something in Java but I have no idea where to start and practically no code experience,self.java -1,1392330121,4,Help with Rounding Integers,self.java -19,1392327944,5,Elastic Search 1 0 0,elasticsearch.org -10,1392326672,6,Jetty 9 1 2 v20140210 Released,jetty.4.x6.nabble.com -2,1392326473,11,Securer String a String library for shredding sensitive data after use,github.com -23,1392323533,9,JSF is not what you ve been told anymore,blog.primefaces.org -20,1392322562,6,Netbeans 8 nightly impressive first day,martijndashorst.com -5,1392312402,8,A comprehensive example of JSF s Faces Flow,blog.oio.de -29,1392312272,5,Netty at Twitter with Finagle,blog.twitter.com -0,1392307261,4,Please Help Eclipse Error,self.java -0,1392306955,5,Anyone Feeling Bored and Helpful,self.java -0,1392274571,4,Adv Java Swing Menu,vakratundcloud.co.in -0,1392270735,3,Swing JTree Example,vakratundcloud.co.in -10,1392267486,7,Could someone please explain Java version compatibility,self.java -1,1392265396,10,Help integrating spring spring data in to existing maven project,self.java -0,1392244635,12,Opening a Perforce Stored Android Project that is Already In The Workspace,self.java -3,1392235726,12,What s the longest valid method call you have used in Java,self.java -0,1392235648,11,Web application stopped serving static files after adding RESTful web services,self.java -0,1392234381,10,Good intro to Android development for someone familiar with Java,self.java -6,1392233730,8,Oracle Java EE 7 curriculum and certification survey,surveymonkey.com -0,1392222694,6,Getting Started with IntelliJ from Eclipse,zeroturnaround.com -0,1392220659,9,Free Team Management Tool For JavaCodeGeeks Com Readers Giveaway,javacodegeeks.com -9,1392218697,10,Red Hat JBoss BPM Suite access GIT project using SSH,schabell.org -35,1392218635,10,Help Java listeners stop working when laptop is on battery,self.java -0,1392215147,5,Need help with this problem,self.java -0,1392210742,7,How to create method taking arbitrary arguments,self.java -15,1392206261,11,JTA 1 2 It s not your Grandfather s Transactions anymore,blogs.oracle.com -16,1392205967,20,Red Hat s JBoss team launch WildFly 8 with full Java EE 7 support and a new embeddable web server,infoq.com -35,1392202168,5,WildFly 8 Final is released,wildfly.org -0,1392200648,9,How to write dynamic SQL in MyBatis using Velocity,esofthead.com -0,1392163129,3,Basic help please,self.java -87,1392155947,10,Java 8 Cheatsheet lambdas method references default methods and streams,java8.org -15,1392153769,6,Hazelcast Websockets amp Real Time Updates,blog.c2b2.co.uk -0,1392148479,6,Jstack and kill 9 on OOM,self.java -3,1392147645,12,Is there a reason I shouldn t be using Maven in NetBeans,self.java -0,1392141749,4,Survey about learning programming,self.java -2,1392141163,4,Querydsl powered Vaadin persistence,vaadin.com -1,1392140526,39,I found some links on r howtohack that contained a bunch of python books in an archive Now I m almost fluent I want to begin development for Android and hear I need Java Does anyone have any resources,self.java -6,1392136332,9,Expect Stripped Implementations to be dropped from Java 8,jaxenter.com -2,1392134305,7,Java XML Tutorial for Developers Java Hash,javahash.com -0,1392132034,6,CheckBox Example with JSF 2 0,examples.javacodegeeks.com -31,1392131605,8,Java 8 will likely strip out Stripped Implementations,infoworld.com -2,1392128838,8,When to declare a Method Final in Java,javarevisited.blogspot.sg -0,1392115429,24,An old article but do we have a better binding to Qt in Java world Or does the current Qt Jambi working just fine,javaworld.com -10,1392103009,6,Apache POI 3 10 FINAL released,mail-archives.apache.org -28,1392102331,2,Effective Mockito,eclipsesource.com -1,1392082461,14,Has anyone used PDFBox or another open source library to successfully view PDF Files,self.java -7,1392065407,7,Java 8 Performance Improvements LongAdder vs AtomicLong,blog.palominolabs.com -1,1392064489,14,How to check if a double is the correct data type in java eclipse,self.java -1,1392063731,9,What is the best java web framework for production,self.java -30,1392059607,11,WildFly 8 0 joins roster of certified Java EE 7 servers,jaxenter.com -42,1392055445,6,Is GWT still a viable technology,self.java -5,1392054801,6,Preparing for the 1Z0 803 exam,self.java -0,1392053980,8,Looking for a free website that teaches Java,self.java -11,1392042476,3,A multithreading mystery,self.java -13,1392041976,6,Java 8 From PermGen to Metaspace,javaeesupportpatterns.blogspot.ie -0,1392041531,5,Am I A professional now,self.java -24,1392039599,4,Mockito Templates for Eclipse,codeaffine.com -1,1392031280,8,Need help question about programming assignment in java,self.java -4,1392028954,3,Everything about PrimeFaces,primefaces.zeef.com -2,1392025837,7,Logging in Java with users in mind,blogg.kantega.no -0,1392024594,8,When Attention converges to Zero Enterprise Software Trends,contentreich.de -22,1392007066,6,What has Java been useful for,self.java -27,1392001103,10,My modern take on Spring 4 MVC Hello World Tutorial,jbrackett.blogspot.com -0,1391999197,4,Java wizard getting interrupted,self.java -0,1391989455,7,Why won t me size method work,self.java -4,1391984964,2,Netbeans problem,self.java -0,1391975910,9,Core Java Advanced Features what do you guys think,self.java -10,1391960970,3,Java Runtime Compiler,github.com -9,1391960042,6,Try with resources in Java 7,softwarecave.wordpress.com -0,1391958799,8,How to generate a random four digit number,self.java -0,1391958133,7,Reusing front end components in web applications,blog.frankel.ch -40,1391951206,10,Spring 4 MVC Hello World Tutorial Full Example Java Hash,javahash.com -0,1391931825,8,Javafx TextArea scrolling bugs when writing 20k lines,self.java -0,1391929442,3,JSF Facelets templates,softwarecave.wordpress.com -14,1391917717,4,Java 8 Type Annotations,mscharhag.com -6,1391907278,9,Where do I start to learn Xpost r learnjava,self.java -0,1391906103,16,New To Java What are some recommended books or websites or tutorials to get me started,self.java -10,1391903878,14,JDK 8 Doclint for Javadoc is a pain but it can be turned off,blog.joda.org -1,1391902903,4,CSV File program java,self.java -24,1391874350,6,JeroMQ Native Java implementation of ZeroMQ,github.com -2,1391873591,8,SECURITY Apache Commons FileUpload 1 3 1 released,mail-archives.apache.org -7,1391870511,11,Are Project Coin s collection enhancements going to be in JDK8,stackoverflow.com -2,1391869788,7,Updating Jersey 2 JAX RS in GlassFish,blog.dejavu.sk -0,1391868845,5,Help with Java Error 1712,self.java -7,1391858398,8,Using JUnit JaCoCo and Maven for code coverage,softwarecave.wordpress.com -17,1391825284,8,Proposal Drop Stripped Implementations from Java SE 8,mail.openjdk.java.net -7,1391810426,15,Anyone know of a good intro to Java that is oriented toward tomcat application development,self.java -10,1391793385,5,Apache DeltaSpike Data Module JPA,deltaspike.apache.org -44,1391783014,19,Guava 16 0 1 fixes problems with JDK 1 7 0_b51 TypeVariable No more need to hold back update,plus.google.com -10,1391779377,7,Using JOOQ with Spring and Spring Transaction,jooq.org -1,1391779101,8,5 Ways to Handle HTTP Server 500 Errors,blog.stackhunter.com -4,1391768904,4,Parallel Parking JavaSpecialists 217,javaspecialists.eu -5,1391766574,8,First look at Deltaspike Introduction A JSF example,kildeen.com -14,1391723897,7,Strategy for JUnit tests of complex objects,self.java -13,1391723482,11,SECURITY CVE 2014 0050 Apache Commons FileUpload and Apache Tomcat DoS,mail-archives.apache.org -2,1391719427,31,I need some assistance using an arrayList to create an iterator in a stack class Details in comments Not sure if this is the right sub If not direct me elsewhere,self.java -14,1391714676,8,Filtering JAX RS Entities with Standard Security Annotations,blog.dejavu.sk -6,1391706728,9,JAXB Serialize child classes with only selected parent fields,blog.bdoughan.com -35,1391701604,12,A practical example of what Java 8 can do to your code,zeroturnaround.com -7,1391701053,6,Reactive functional UI development with Vaadin,vaadin.com -2,1391699581,5,Java EE CDI TransactionScoped example,byteslounge.com -0,1391697506,7,Plumbr Plumbr 3 5 usability lessons learned,plumbr.eu -4,1391695745,7,Radio Buttons Example with JSF 2 0,examples.javacodegeeks.com -45,1391693759,6,JEP 188 Java Memory Model Update,openjdk.java.net -0,1391683824,11,Whats the safest and best way to add to a database,self.java -1,1391668836,15,What is a good book to start learning Java for someone with some programming experience,self.java -1,1391660299,6,Small issue working with custom library,self.java -0,1391653657,24,To make a 2d field should I use a Array or a Hashmap And what is the argumentation for the one I should use,self.java -4,1391649265,2,Packaging OpenJDK,blog.fuseyism.com -4,1391643336,4,Using Swing and getActionCommand,self.java -8,1391610246,11,Step by Step How to bring JAX RS and OSGi together,eclipsesource.com -15,1391607731,12,JDBC 4 0 s Lesser known Clob free and Blob free Methods,blog.jooq.org -37,1391606482,7,Stephen Colebourne s blog Exiting the JVM,blog.joda.org -18,1391595483,10,Shenandoah An ultra low pause time Garbage Collector for OpenJDK,rkennke.files.wordpress.com -10,1391575813,7,Is there a JAVA API for Reddit,self.java -0,1391553769,5,A question about java events,self.java -5,1391542900,10,New to Java Small App uses Massive Amounts of CPU,self.java -5,1391535045,8,Javax mail How to implement Undelivered Email notifications,cases.azoft.com -0,1391533574,3,Using a List,self.java -10,1391530008,7,first release candidate build of JDK 8,mail.openjdk.java.net -0,1391525309,7,I want a book on Design Patterns,self.java -30,1391523194,11,Why is it hard to make a Java program appear native,programmers.stackexchange.com -1,1391509125,10,New to JAVA Have to build a Text Miner Analyzer,self.java -63,1391467811,10,Java Ranks 2 in Most Popular Programming Languages of 2014,blog.codeeval.com -8,1391463731,7,Is Node js Really Faster Than Java,self.java -0,1391462458,7,Need some help in Java with selections,self.java -7,1391450571,5,WebSockets in Java A Tutorial,restlessdev.com -10,1391443315,7,JVM Language Summit 2013 Videos amp Slides,oracle.com -1,1391442919,2,Hibernate Advice,self.java -3,1391441666,22,How do I add jar files to classpath Specifically I am using Eclipse and I want to add Quartz scheduler jar files,self.java -0,1391436327,9,Configuring Tomcat and Apache httpd load balancing and failover,syntx.co -36,1391434816,7,Why using SLF4j is better than Log4j,javarevisited.blogspot.sg -5,1391428388,11,How To Build Template Driven Java Websites with FreeMarker and RESTEasy,blog.stackhunter.com -9,1391422529,14,Creating Multiplayer Game using libgdx libgdx is a cross platform Java game development framework,blogs.shephertz.com -5,1391415432,14,A question about how to handle structure persistence in a case that confuses me,self.java -2,1391398249,6,Help speeding up LRU cache implementation,self.java -24,1391367560,12,Hardware Transactional Memory in Java or why synchronized will be cool again,vanillajava.blogspot.co.uk -8,1391367207,9,Some help with a personal project would be nice,self.java -9,1391327501,16,How should I test implement my library but not include tests implementations when building a JAR,self.java -0,1391327474,7,Evaluating expressions using Spring Expression Language SpEL,syntx.co -7,1391302024,4,JSR 292 Cookbook PDF,i.cmpnet.com -2,1391286662,6,Apache PDFBox 1 8 4 released,mail-archives.apache.org -7,1391286442,3,Apache ODF Toolkit,incubator.apache.org -18,1391284791,5,Java 8 Support in Eclipse,waynebeaton.wordpress.com -0,1391276631,11,Looking for help on a layout created by a java program,self.java -5,1391272143,4,Detecting Scroll Lock State,self.java -12,1391264881,1,Speed4j,github.com -9,1391264293,4,Rio Dynamic Distributed Services,rio-project.org -0,1391234856,10,Java web developers who wish to implement robust security mechanisms,packtpub.com -7,1391231718,7,First Java 8 Book on The Market,amazon.com -11,1391228251,16,Looking for a small group of somewhat beginners at Java to work on small projects with,self.java -4,1391221571,9,Transforming an object into a subclass of that object,self.java -3,1391208846,5,Strange results in Java 8,self.java -0,1391205693,7,Passing an object into a static method,self.java -0,1391203889,14,Help with a problem I need help with part b and c the most,i.imgur.com -3,1391200525,5,Wanting to use multiple threads,self.java -31,1391199237,8,How To Regular Expressions in Java Part 1,ocpsoft.org -0,1391193881,11,Is it possible to run and automate a program in Java,self.java -1,1391193664,21,Eclipse Plugin that allows the execution of REPL Groovy Scripts in the current Eclipse Instance and Fluent API for Eclipse SWT,blog.diniscruz.com -32,1391188094,5,High performance libraries in Java,vanillajava.blogspot.co.uk -0,1391186957,14,Amazing site http opensource uml org Popular opensource Java libraries reversed in UML models,self.java -7,1391180735,6,Change from technical consultant to dev,self.java -1,1391174558,6,Writing serial data to text files,self.java -22,1391162601,11,The myth of calling System gc twice or several times prevails,stackoverflow.com -1,1391159896,10,41 Websites Every Java Developer Should Bookmark The Complete List,cygnet-infotech.com -26,1391151530,5,Java Programming as a job,self.java -0,1391147192,6,Java Web Applications and Much More,askvikrant.com -2,1391143806,2,Learning Java,self.java -0,1391139499,5,Results from random image generator,imgur.com -8,1391108552,8,Oracle Plans to Reunify Java for IoT Age,blog.programmableweb.com -1,1391105812,7,jHTML2Md A simple HTML to Markdown converter,self.java -4,1391101292,17,Deutsche Bank have an online eBills services that works with Java 1 6 but not 1 7,self.java -2,1391099931,8,Connecting JBoss WildFly 7 to ActiveMQ 5 9,blog.c2b2.co.uk -6,1391094206,5,Intrinsic Methods in HotSpot VM,slideshare.net -0,1391086937,3,Spring Integration Refcard,refcardz.dzone.com -0,1391081272,10,Handling JAX RS and Bean Validation Errors with Jersey MVC,blog.dejavu.sk -81,1391077865,10,JDK 8 reference implementation released except for Mac of course,jdk8.java.net -10,1391077417,3,Choosing an ExecutorService,blog.jessitron.com -0,1391074601,12,Is it possible to edit an application if I have the sourcecode,self.java -2,1391053554,11,XMLUnit Easy way to unit test your xml data BSD License,xmlunit.sourceforge.net -0,1391051263,13,Hello r java I made a project that encrypts files using XOR algorithm,self.java -0,1391045807,11,Building Java Programs A Back to Basics Approach 3rd Edition PDF,self.java -10,1391040174,12,How to make an IntelliJ IDEA plugin in less than 30 minutes,bjorn.tipling.com -1,1391039343,5,Writing to open excel files,self.java -0,1391018417,6,Taking an online Java programming course,self.java -0,1391014526,12,I created a Java programming course for the beginner that is free,self.java -0,1391012984,3,Java practise programs,self.java -1,1391003624,9,LiveRebel 3 0 lands Now release multiple apps simultaneously,zeroturnaround.com -1,1391000662,7,What is a good Java graphing library,self.java -153,1390999217,4,Google Java Coding Standards,google-styleguide.googlecode.com -8,1390997810,3,Java 8 Changes,codergears.com -2,1390992827,6,Java bash like parameter expansion library,self.java -5,1390990280,16,The Baeldung Weekly Review 4 A weekly review of interesting Java Java 8 Spring related topics,baeldung.com -0,1390973436,4,Simple Java Hashing Program,self.java -2,1390967800,9,A request for help with starting my pet project,self.java -3,1390953167,7,Writing Interactive Web Applications with Web Actors,blog.paralleluniverse.co -0,1390951174,38,I saw this problem in my java book T or F If the value of a is 4 and the value of b is 3 then after the statement a b the value of b is still 3,self.java -0,1390947528,4,Help with java array,self.java -41,1390941404,9,Java 8 will use TLS 1 2 as default,blogs.oracle.com -0,1390934950,11,How come I can t compile java on windows 8 1,self.java -0,1390932322,12,Can HTML make random text appear in a livejournal post Like java,self.java -14,1390932167,5,WildFly 8 vs GlassFish 4,blog.eisele.net -33,1390926211,12,ThoughtWorks latest Technology Radar moves Ant to Hold advocates Gradle Buildr etc,thoughtworks.com -19,1390922051,11,Machine Learning tutorial Developing a Naive Bayes Text Classifier in JAVA,blog.datumbox.com -29,1390920390,16,I made a new Java templating engine and I m looking for feedback and or contributors,mitchellbosecke.com -1,1390915750,9,Creating Grammar Parsers in Java and Scala with Parboiled,hascode.com -1,1390912255,15,New easy way to resolve Maven dependency conflicts in IntelliJ x post from r IntelliJIDEA,self.java -0,1390907340,13,Hello r Java I m very new to programming and need your help,self.java -0,1390902152,15,Java is the new C Comparision of different concurrency models Actors CSP Disruptor and Threads,java-is-the-new-c.blogspot.de -8,1390898725,20,Hello r java I ve written a Java documentation and source code viewer and would love to hear your feedback,self.java -0,1390865293,4,NetBeans 8 Loves PrimeFaces,youtube.com -35,1390858799,4,JEP 186 Collection Literals,openjdk.java.net -0,1390858583,4,Mpxj Microsoft Project Interop,mpxj.sourceforge.net -2,1390857947,14,JTS Topology Suite is an API of spatial predicates and functions for processing geometry,tsusiatsoftware.net -14,1390856214,12,AutoValue simple value object code generation with no metalanguage just plain Java,plus.google.com -4,1390854988,12,Annotations and Annotation Processing What s New in JDK 8 57 10,youtube.com -15,1390852794,9,Oracle doing a survey on sun misc Unsafe usage,blogs.oracle.com -0,1390842526,9,Java 8 Goodies The New New I O APIs,javacodegeeks.com -1,1390835969,9,Brief Discussion About the Java 8 Date Time API,blog.codecentric.de -21,1390834912,7,Best practices to improve performance in JDBC,precisejava.com -0,1390833574,4,Is new String immutable,stackoverflow.com -0,1390831018,6,From Java to Scala Tail Recursion,medium.com -1,1390830305,4,More Units with MoreUnit,codeaffine.com -10,1390830200,11,The new Java Streams API was a really bad name choice,self.java -1,1390816069,5,JVM JIT Compilation Overview Video,vimeo.com -4,1390814924,11,Practicing at the Cutting Edge Learning and Unlearning about Java Performance,infoq.com -16,1390809457,12,So this was my midnight program tonight how would you improve it,github.com -7,1390789376,17,How can I include a terminal in my java program restricted to a directory or custom filesystem,self.java -0,1390783643,5,Calling all DFW Java devs,self.java -0,1390772806,10,How to get an integer value from a dropdown menu,self.java -2,1390764692,29,Doing Codelab and stuck on a problem This is very beginner stuff and I m new to Java would someone be willing to help me out with this one,self.java -2,1390759107,5,A little help with GCJ,self.java -25,1390747408,4,Extrinsic vs intrinsic equality,blog.frankel.ch -21,1390743843,7,Running JUnit tests in parallel with Maven,weblogs.java.net -2,1390716034,10,How to Host your Java EE Application with Auto scaling,openshift.com -40,1390707101,6,Java 8 Date and Time API,youtube.com -0,1390691942,5,jar not working on mac,self.java -15,1390689497,13,Trouble with Java Webstart and Java 7u51 Here s a guide for you,sososoftware.blogspot.com -0,1390678712,10,This Is How I Imagine Exceptions Being Handled at Runtime,gph.is -13,1390667632,19,Learning java from the Java tutorials from oracle Any way to get them on my Kindle for reading anywhere,self.java -4,1390667361,17,What should be a development roadmap for a legacy Java Swing application for the next 5 years,self.java -12,1390663908,12,The la4j library release 0 4 9 sparse dense Java matrix library,la4j.blogspot.com -39,1390662213,9,20 very useful Java code snippets for Java Developers,viralpatel.net -19,1390649706,13,Introduction to JSR 310 Part 1 Overview of existing Date and Time API,java.amitph.com -0,1390637891,13,Please help me with this program I ve been stuck for 2 days,self.java -0,1390615697,9,I need you Java masters TAKE A LOOK INSIDE,self.java -5,1390607623,4,Memory Issues with LibGDX,self.java -0,1390606079,6,Is Wildfly 8 a game changer,colocationamerica.com -6,1390602536,3,Java server hosting,self.java -0,1390600955,31,I have ten days to brush up on my Java skills before an interview All I have done for 3 years is minor code changes What resource s would you recommend,self.java -3,1390595284,3,Generic method arguments,stackoverflow.com -9,1390593812,13,What s New in the JVM in Java SE 8 by Gil Tene,youtube.com -27,1390588096,4,Java interview question feedback,self.java -9,1390575974,4,question about java threads,self.java -5,1390567851,4,JVM Performance Magic Tricks,javacodegeeks.com -4,1390567599,7,Managing Java logs with logstash and Kibana,blog.progs.be -0,1390560939,2,Java problems,self.java -7,1390558637,8,JSR 356 Java API for WebSocket or Atmosphere,jaxenter.com -8,1390545269,17,I m creating an introduction to Java programming series inspired by the community and want your feedback,self.java -7,1390541578,9,Converting from json to Java within a Java program,self.java -5,1390535137,8,A question about how to develop frameworks libraries,self.java -2,1390519468,9,Need advice on designing mocking up a web service,self.java -5,1390510765,8,Simple gui toolkit for lwjgl or playn videogames,github.com -0,1390510316,11,Best Java book after Java for Dummies x posted to LearnProgramming,self.java -0,1390508907,6,Netty 4 0 15 Final released,netty.io -8,1390508310,9,Thread safe FIFO queues in Java over Generics types,self.java -0,1390506475,6,HttpComponents HttpClient 4 3 2 Released,mail-archives.apache.org -12,1390506177,7,TreeTable Sorting in upcoming PrimeFaces 5 0,blog.primefaces.org -7,1390504327,11,How can I define a standalone goal in Maven pom xml,self.java -6,1390500365,10,Where to get a certificate to sign my JavaFX app,self.java -1,1390496565,1,Scripting,self.java -4,1390491704,9,10 Reasons to Replace Your JSPs With FreeMarker Templates,blog.stackhunter.com -3,1390488736,8,Java Magazine Jan Feb 2014 published registr required,oraclejavamagazine-digital.com -0,1390488637,11,many concurrent reads 1 write cause ObjectNotFoundException due to ehcache why,stackoverflow.com -16,1390485260,6,Java security patch breaks Guava library,jaxenter.com -6,1390450521,3,CodeEval supports Java,codeeval.com -8,1390439030,10,How to implement desired functionality in JavaFX Background Socket Listener,self.java -25,1390438010,5,Stack amp Heap Java Programming,self.java -12,1390434068,3,Question about Immutability,self.java -6,1390426131,7,Book recommendations to learn Java for Android,self.java -3,1390424543,11,Practicing at the Cutting Edge Learning and Unlearning about Java Performance,infoq.com -0,1390420888,3,Help reinstalling java,self.java -2,1390418672,7,How much am I supposed to understand,self.java -2,1390410780,6,What is wrong 1 6 generics,self.java -3,1390407613,6,DataFlow or Pipeline library Framework recommendation,self.java -1,1390406299,7,The Top Java Memory Problems Part 1,apmblog.compuware.com -0,1390404861,6,How to compile java code dynamically,weblogs.java.net -17,1390401726,20,Interesting report on Java Build Tools Maven Gradle and Ant Ivy I wonder who will win least annoying build tool,zeroturnaround.com -0,1390401483,11,Java Memory Model Structures and causes for OutOfMemory Error Java Hash,javahash.com -0,1390401031,4,Multiple actionlisteners in JSF,stackoverflow.com -2,1390397939,6,Proof of Concept Using Spring Roo,keyholesoftware.com -103,1390385254,2,System exit,self.java -2,1390353184,4,Java to xls xlsx,self.java -4,1390343763,9,Why won t this extremely simple if statement work,self.java -13,1390328779,4,JBoss HornetQ and JCA,self.java -0,1390327104,18,M x shell and M x term don t play well with mvn test xpost from r emacs,reddit.com -14,1390326027,5,Is AES Cipher secure enough,self.java -5,1390322187,10,Does Java certification have a value on the job market,self.java -0,1390318163,7,SOLID Part 2 The Open Closed Principle,net.tutsplus.com -21,1390313112,3,JetBrains is hiring,blog.jetbrains.com -5,1390303554,12,What is so bad about static and how can I avoid it,self.java -0,1390301741,13,Is it me or is there something slightly odd about the Easymock logo,easymock.org -0,1390301711,6,Ajax Example with JSF 2 0,examples.javacodegeeks.com -2,1390273971,6,Pull model interface to the keyboard,self.java -105,1390265804,13,Notice Java 1 7 0 Update 51 is no longer compatible with Guava,code.google.com -0,1390260192,12,HELP Can someone tell me why this code gives me an error,self.java -0,1390255742,17,I just finished Beginning Programming with Java for Dummies and I am wondering where to go next,self.java -3,1390253882,10,ImageJ an image processing program widely used for scientific research,developer.imagej.net -3,1390241661,6,How can I bot my setup,self.java -3,1390240718,10,Ricston s experience of running Mule on a multitenant JVM,java.dzone.com -4,1390184152,12,Problems with tomcat embedded NoInitialContextException when trying to get a JDBC connection,self.java -5,1390182594,4,Question about advanced programming,self.java -1,1390181168,5,Setting up a photo array,self.java -3,1390172331,5,Question about calling static methods,self.java -41,1390171643,22,If you had to name 5 books that take you from being a java beginner to a pro what would they be,self.java -0,1390163664,7,High School Project need help with GUI,self.java -6,1390163633,5,LWJGL OpenGL scaling textures weirdly,self.java -5,1390159760,11,ANTLR 4 IDE can now export a syntax diagram to HTML,jknack.github.io -9,1390157151,10,What is a simple cool program to write in Java,self.java -5,1390156788,4,Java Starting class files,self.java -0,1390153006,4,WebJars and wro4j integration,blog.frankel.ch -1,1390149718,14,How do I stop the execution of a parent method within an execution stack,self.java -44,1390149121,10,JCommander An Alternative to Common CLI Apache 2 0 license,beust.com -8,1390143404,7,Automating JMeter tests with Maven and Jenkins,blog.codecentric.de -4,1390136579,9,What are Best Resources to Learn Java for Beginners,javatalk.org -7,1390124426,14,Why do I need to resize the frame for my images to be seen,self.java -0,1390115536,9,Using regex to hanging indent a paragraph in Java,blog.pengyifan.com -0,1390102567,2,JFrame help,self.java -0,1390098000,7,Need help on a Highschool project gui,self.java -10,1390092146,7,Coding can get quite lonely Context inside,self.java -9,1390080999,15,Are there any sample MVC projects out there that use a relational database for download,self.java -0,1390078087,17,ductilej A Java compiler plugin that turns Java into a mostly dynamically typed language Google Project Hosting,code.google.com -1,1390077173,17,I m trying to write some packages to use as a Framework and I have a question,self.java -0,1390074690,14,Is there a better alternative to BigInteger for java Especially for the operation modpow,self.java -1,1390068702,10,How to detect collision with pixels in a png file,self.java -1,1390058400,4,Java Queues Bad Practices,ashkrit.blogspot.sg -59,1390058160,7,Code faster with Intellij IDEA live templates,maciejwalkowiak.pl -9,1390056258,12,How fast can you learn spring and what resource is the best,self.java -11,1390052505,7,New to programming would love some suggestions,self.java -9,1390052480,5,MyBatis 3 Spring integration example,esofthead.com -5,1390052418,17,Java blocking applications with out giving me the option if I would like to run it anyways,self.java -0,1390040169,18,Now Don t Learn Just Small Programs Development Learn Real Life Software Development Online with online debugging facility,programsji.com -0,1390037704,6,Cannot play my game on Mac,self.java -1,1389999115,14,Apache Camel 2 11 3 Released ex Update to XML Security 1 5 6,camel.apache.org -0,1389996140,8,Coding techniques to avoid security exploits in Java,self.java -5,1389970931,10,How were the java util Collections optimized in Java 7,self.java -21,1389968330,8,Looking for fellow coding noobs to collaborate with,self.java -14,1389966855,14,What is the current status of JMX What are alternatives that are worth considering,self.java -1,1389958012,7,Need a little help with some basics,self.java -24,1389949155,7,Why is package private the default access,self.java -5,1389907885,11,Containers and application servers can someone help me with the terminology,self.java -0,1389902021,7,Coding question which should be very basic,self.java -16,1389897903,12,Java Blamed by Cisco for 91 percent of all Exploits in 2013,eweek.com -0,1389890853,6,Why won t my image display,self.java -5,1389890821,8,The top 5 features of NetBeans IDE 8,jaxenter.com -0,1389890358,10,Learn Java with LearnStreet s Java for Dummies Online Course,learnstreet.com -0,1389884799,12,Why Default or No Argument Constructor is Important in Java Class JavaRevisited,javarevisited.blogspot.com -74,1389881606,13,Java 7 update 51 has been released includes 36 security fixes Upgrade ASAP,oracle.com -0,1389880482,8,Where can I alter my Java security settings,self.java -7,1389876953,8,21 things about Synchronized and Synchronization in Java,javarevisited.blogspot.sg -17,1389860850,9,Shenandoah Red Hat s JEP for a pauseless collector,openjdk.java.net -2,1389855435,15,Is it a bad idea to use transaction in JDBC for executing single SQL statement,self.java -0,1389852786,10,Basic JAVA programming help I am a newbie to this,self.java -0,1389849854,7,What should be a simple JOption question,self.java -10,1389841193,14,Can someone guide me in creating a simple multi threaded program which uses locks,self.java -0,1389829854,7,HTTP server and socket on same port,self.java -0,1389829826,5,Anyone wanna help me out,self.java -0,1389799036,5,Dialog Box with multiple inputs,self.java -21,1389796173,6,The infamous sun misc Unsafe explained,mydailyjava.blogspot.no -8,1389768055,7,JavaEE Redirect user from HTTP to HTTPS,self.java -0,1389764630,4,Help with Java Assignment,self.java -10,1389760864,8,MQ Any comparison chart for correlationId vs messageId,self.java -0,1389760092,5,Why doesn t this work,self.java -0,1389749908,6,A little enquiry on my project,self.java -0,1389746267,4,Trouble using Maven JavaFX,self.java -0,1389737897,5,Help with first Java program,self.java -0,1389734886,3,Radicals in Java,self.java -7,1389734754,15,New security requirements for RIAs in 7u51 January 2014 Java Platform Group Product Management blog,blogs.oracle.com -5,1389731774,10,Automatically testing all possible states caused by pseudo random behaviour,babelfish.arc.nasa.gov -0,1389713204,13,X Post from r AskProgramming JButton setlocation only works inside my actionListener Help,self.java -2,1389712954,4,Incorporating a plugin framework,self.java -0,1389709293,6,Need help with a problem Diamonds,self.java -20,1389708474,9,I Don t Like Scala Bozho s tech blog,techblog.bozho.net -2,1389696565,11,Java Persistence Performance Objects vs Data and Filtering a JOIN FETCH,java-persistence-performance.blogspot.com -6,1389690672,6,JSF to become action based framework,weblogs.java.net -5,1389689683,13,Trying to generate reports in a PDF format Not sure where to start,self.java -0,1389664380,13,Anyone have a list of patches in Java patch day 2014 01 14,self.java -21,1389653915,10,Best book for experienced devs to touch up on Java,self.java -20,1389647549,4,OmniFaces 1 7 released,balusc.blogspot.com -0,1389645608,5,Is Java still worth learning,news.ycombinator.com -19,1389628778,5,Fluent Interfaces Yea or Nay,self.java -0,1389622338,7,Spring XD 1 0 0 M5 Released,spring.io -3,1389616483,9,Java EE 7 collection of resources by Abhishek Gupta,javaee7.zeef.com -1,1389607448,10,Adding an object to an array of objects at constructor,self.java -5,1389605988,15,Batch writing and dynamic vs parametrized SQL through JDBC How well does your database perform,java-persistence-performance.blogspot.ch -0,1389582169,9,Java How to streamline returning hard coded array values,self.java -0,1389567749,9,Issues with a Java Based Program in Windows 8,self.java -17,1389565463,14,What are the best practices and best tools to make unit testing less painful,self.java -0,1389551205,12,Guava is an heavyweight library and I would like this to change,blog.frankel.ch -0,1389538294,5,How to use LMAX Disruptors,vijayrc.com -0,1389537314,9,I need help with J Unit testing on Eclipse,self.java -44,1389536791,3,Apache Commons Imaging,commons.apache.org -14,1389535503,7,ANN Apache Tomcat 7 0 50 released,tomcat.10.x6.nabble.com -0,1389468119,6,For those confusing Javascript with Java,self.java -24,1389456092,9,Java code for Permutation using Steinhaus Johnson Trotter algorithm,programminggeeks.com -0,1389449376,19,Does anyone know of a good website that lists pros and cons of all the data structures in java,self.java -2,1389446219,4,Structorizer Nassi Shneiderman diagram,structorizer.fisch.lu -10,1389446064,13,SubEtha SMTP is an easy to use server side SMTP library for Java,code.google.com -5,1389445817,4,Zopfli bindings for Java,github.com -21,1389444302,6,Jetty 9 1 1 v20140108 Released,jetty.4.x6.nabble.com -5,1389409648,9,How is switch over string implemented in Java 7,coolcoder.in -14,1389391139,15,Can someone point me in the direction of some well structured well commented github projects,self.java -4,1389386810,8,Tutorial web development with JSF Security Part I,blog.mueller-bruehl.de -0,1389385325,9,What s the easiest quickest way to learn java,self.java -2,1389384661,9,Integrate openCMS 9 w Facelets Back end app how,self.java -19,1389380273,9,Why does Java prohibit static fields in inner classes,self.java -2,1389372992,11,Silent World 2D Minecraft Like Game Made with Java Alpha Version,youtube.com -5,1389369375,9,CMD recognizing java but not recognizing javac Please help,self.java -0,1389360829,5,Getting started with JBoss Fuse,rawlingsj.blogspot.co.uk -3,1389356102,5,Algebraic Data Types for Java,github.com -62,1389341931,19,Why is it called both Java 1 6 and Java 6 Are these two things 100 the same thing,self.java -0,1389331195,3,MAW Text Encoding,self.java -3,1389327122,4,Clear terminal Screen linux,self.java -0,1389319516,2,Coding crazy,self.java -4,1389317097,14,How do you activate OS X s native fullscreen without using the arrow button,self.java -5,1389313043,7,How to make borderless fullscreen in java,self.java -7,1389304888,9,Interesting article about java still being a important skill,readwrite.com -0,1389298238,7,Friends Don t Let Friends Use Eclipse,slideshare.net -3,1389287369,10,Free java source codes to learn from and play with,self.java -4,1389283034,8,DripStat Java Performance Monitoring Service Realtime MMO Game,chrononsystems.com -2,1389272458,6,Java 7u45 Deployment Rule Set Question,self.java -2,1389240454,7,Any recommendations for a full development stack,self.java -3,1389239036,8,Should I still go for the OCPJP 6,self.java -0,1389228242,2,Android browser,self.java -4,1389226694,12,What do you guys think of IDE One online java editor compiler,ideone.com -0,1389225587,3,Spare time project,self.java -7,1389222623,6,Apache Commons Exec 1 2 Released,mail-archives.apache.org -5,1389218748,2,KeyStore Explorer,keystore-explorer.sourceforge.net -0,1389215840,1,DocFetcher,docfetcher.sourceforge.net -30,1389197981,7,JNI Performance Welcome to the dark side,normanmaurer.me -0,1389195921,6,Is a Java String really immutable,self.java -18,1389193484,4,GOing back to Java,oneofmanyworlds.blogspot.ca -12,1389186794,7,Useful JVM Flags Part 8 GC Logging,blog.codecentric.de -0,1389153904,2,Java Training,self.java -0,1389149035,4,Is java still useful,medium.com -0,1389137679,4,java text receiving program,self.java -7,1389130861,13,XFlat Lightweight embedded no sql object DB persisting objects to flat XML files,xflatdb.org -2,1389130598,8,JumpStart tutorial for the future Tapestry 5 4,jumpstart.doublenegative.com.au -1,1389130011,6,Open Wonderland collaborative 3D virtual worlds,openwonderland.org -35,1389129893,8,How do I stop being a Java newbie,self.java -0,1389129441,5,Apache JMeter 2 11 released,mail-archives.apache.org -0,1389129390,5,JOnAS 5 3 0 released,jonas.ow2.org -5,1389128405,4,Need to learn openGL,self.java -2,1389122838,8,Why do JUnit assertions behave like yoda conditions,self.java -1,1389117835,5,What should I improve on,self.java -0,1389110535,8,I m hating hibernate I need something easier,self.java -2,1389105708,12,Capacity Planning memory for real world JVM applications what do you do,waratek.com -53,1389101069,8,What Every Java Developer should know about String,javarevisited.blogspot.sg -1,1389100758,6,Java plugin not working with firefox,self.java -10,1389099003,10,Tips and tricks creating profile specific configuration files with Maven,petrikainulainen.net -11,1389096595,11,How applicable is Java in terms of the future of technology,self.java -0,1389092429,8,what is wrong with this piece of code,self.java -14,1389091940,11,Java bytecode hacking for fun and profit x post r programming,cory.li -0,1389085441,15,Trying to learn Java Stuck on loops Please can someone help me with this question,self.java -0,1389073478,6,Java vs C Memory Management Features,codexpi.com -0,1389070675,14,I am not getting any errors my window opens but no graphics show up,self.java -10,1389070132,9,Making a java game why is my rendering jumpy,self.java -22,1389044991,16,Is it possible to catch an exception then make it just run the try block again,self.java -8,1389037893,4,Multiplayer Game In Java,self.java -0,1389026028,10,Hey there searching for someone to help me out S,self.java -0,1389024218,5,Changing Scenes without using FXML,self.java -0,1389017832,10,Why is tomcat a Webserver and not an Application Server,blog.manupk.com -1,1389016959,11,Boon JSON in five minutes Faster Java JSON parsing and serialization,rick-hightower.blogspot.sg -0,1389012481,11,How to configure an SSL Certificate with Play Framework for https,poornerd.com -4,1389010318,10,Domain Integrity What s the best way to check it,codergears.com -27,1389005821,4,Using jOOQ with Spring,petrikainulainen.net -6,1389000754,13,Android port of the Firebird Jdbc driver Jaybird 2 2 4 is released,firebirdnews.org -2,1388983127,7,Has anyone here used Java Au Naturel,self.java -10,1388973802,13,Do you find Ant or Java s style of to be more natural,selikoff.net -6,1388966328,13,How is Head First Java 2nd Edition for an absolute beginner to Java,self.java -2,1388916676,10,1 Hour Speed Code Attempt Conway s Game of Life,youtube.com -84,1388900938,9,7 Ways to be a Better Programmer in 2014,programming.oreilly.com -2,1388900379,3,Going beyond Swing,self.java -4,1388890310,9,Looking for feedback on a concurrency framework I built,github.com -0,1388859087,15,Could somebody help me modify a simple app to allow for spaces in a String,self.java -12,1388841625,5,Apache Oltu OAuth protocol implementation,oltu.apache.org -3,1388841094,3,XWiki 5 3,xwiki.org -0,1388829597,7,Debug Your java Spring Jsp Programs online,programsji.com -4,1388825204,24,Do oracle make money from maintaining and updating Java If so how do they and why do they Besides a creating a kickass language,self.java -0,1388821795,5,Compile clojure to Objective C,github.com -15,1388789647,11,One of the earliest appearances of Duke Java s mascot 1992,youtu.be -0,1388778476,4,Help with a calculator,self.java -87,1388770249,4,Looking for Java Beginners,self.java -0,1388761422,4,Opinions about Apache Beehive,self.java -0,1388756994,7,Working with OS environment variables in Java,java-only.com -0,1388755952,7,why jdon Jdon is a Domain container,en.jdon.com -3,1388753920,11,JSF usage in the real world List of sites using JSF,wikis.oracle.com -4,1388752562,7,Java Colletions waste statistics from 500 apps,plumbr.eu -24,1388748743,3,Everything about GlassFish,glassfish.zeef.com -41,1388736575,5,Snake in under 30 minutes,youtube.com -15,1388725263,16,All Hibernate Framework topics at a place If you don t find the topic suggest it,hibernate-framework.zeef.com -5,1388702777,6,Question about objects and file reading,self.java -1,1388699628,9,Could somebody help me with using the split method,self.java -35,1388699088,11,auto complete in google and bing faster than eclipse and netbeans,self.java -29,1388681792,6,Apache Commons Lang 3 2 released,mail-archives.apache.org -19,1388680136,5,Embedding Jython in Java Applications,blog.smartbear.com -0,1388676241,4,Immutable Binary Search Trees,self.java -4,1388670287,13,Is an M S worth the time and effort for an aspiring programmer,self.java -0,1388621182,3,Saving Player information,self.java -0,1388601596,5,Java String to Array split,self.java -4,1388515598,11,Program that concatenates images of various resolution into one large wallpaper,self.java -0,1388510752,8,What do lines 4 and 5 do here,self.java -0,1388510219,7,Community Support Open Source Project Repository Hosting,issues.sonatype.org -1,1388500466,5,Problem running compound system commands,self.java -1,1388494041,12,Spring from the Trenches Invoking a Secured Method from a Scheduled Job,petrikainulainen.net -1,1388461275,11,What are some caching options with a low open file footprint,self.java -8,1388455573,12,Emacs eclim users What are your opinions x post from r emacs,self.java -41,1388445887,13,To try catch or not What every Java Developer must know about Exceptions,10kloc.wordpress.com -3,1388436906,6,Netty 4 0 13 Final released,netty.io -3,1388436761,7,HttpComponents Core 4 3 1 GA released,mail-archives.apache.org -1,1388435348,12,How do can I call a function on it s own thread,self.java -2,1388421301,8,Creating Zoomable User Interfaces Programs with Piccolo2D Framework,codejava.net -1,1388415887,5,Let s compare some IDEs,self.java -21,1388415171,6,Apache Ant 1 9 3 Released,mail-archives.apache.org -42,1388414402,5,Pong Speed Code 1 Hour,youtube.com -0,1388388568,7,Whats an easy game program in processing,self.java -16,1388359388,8,Three Cheers for JSF 2 2 Faces Flows,liferay.com -11,1388342880,6,Restful Web Services Netbeans and Glassfish,self.java -15,1388340027,10,Are there disadvantages to using static variables within static methods,self.java -10,1388326903,39,What is wrong with my java install I had to do a system repair and ever since my java is refusing to validate certificates I ve uninstalled and re installed several times any ideas on how to fix it,prntscr.com -9,1388298472,8,Single sign on with Sharepoint WSS 3 0,self.java -16,1388293572,7,BrainFuck in java More info in comments,filedropper.com -1,1388261115,6,How expensive is text file polling,self.java -1,1388258052,12,Java Graph libraries with good user interaction and a save export function,self.java -0,1388257200,9,Books for learning Java coming from a JavaScript background,self.java -62,1388252083,6,Typesafe database interaction with Java 8,benjiweber.co.uk -1,1388250261,3,Regular expression using,self.java -19,1388248442,3,Swing or JavaFX,self.java -0,1388213176,4,help with binary division,self.java -14,1388204340,7,A Tool Atlas for the Enterprise Developer,infoq.com -17,1388193209,4,Unreachable and Dead Code,self.java -1,1388180297,6,rotating object to face another object,self.java -13,1388171634,11,10 Most Commonly Asked Questions About Multi Threading For Java Developers,efytimes.com -0,1388170619,10,How to use Type safe dependency injection in Spring 3,coolcoder.in -6,1388164416,9,Is Java really a good tool for personal projects,self.java -4,1388162674,9,Test Driven Development TDD Best Practices Using Java Examples,technologyconversations.wordpress.com -0,1388155357,9,About Bauke Scholtz BalusC top SO Java JSF user,bauke-scholtz.zeef.com -4,1388147173,9,A mandatory cast to Object is kind of funny,gist.github.com -60,1388139483,7,Top 10 not so popular Eclipse Shortcuts,summa-tech.com -27,1388111923,6,Which IDE do you prefer Why,self.java -0,1388059942,20,Part 3 of 3 Synopsis of articles amp videos on Performance tuning JVM GC in Java Mechanical Sympathy et al,neomatrix369.wordpress.com -1,1388054440,12,Looking for a tool offering CLI for building testing running Java project,self.java -14,1388016577,20,Which would you recommend for storing things like levels for players YML XML or SQL x post from r bukkit,self.java -3,1387983585,7,Oracle Tunes Java s Internal String Representation,infoq.com -16,1387981704,4,Clarifications on JDBC transaction,self.java -0,1387968854,5,Building a jar file HELP,self.java -3,1387966706,12,Need some help thinking through the architecture of this simple ish project,self.java -16,1387953109,4,Java Graphics and GUI,self.java -4,1387951707,12,Books and other resources for learning to use Java for interactive graphics,self.java -0,1387924762,15,How to create using Eclipse JavaDocs that looks good My current approach is not working,blog.diniscruz.com -14,1387920314,13,What is the difference between one line if statements and regular if statements,self.java -6,1387900403,8,The OCJP exam scoring retaking the test etc,self.java -8,1387899795,5,Questions about the OCJP exam,self.java -13,1387851294,11,Looking to start Learning Java what book s should I get,self.java -2,1387836459,17,Is there a predefined method for checking if a variable value contains a particular character or integer,self.java -9,1387833147,13,New to Java What are best practice for XML building and query building,self.java -2,1387830491,9,Something inherently wrong with how I m doing this,self.java -13,1387824857,6,Why must interface methods be public,self.java -7,1387821624,2,Layout help,self.java -3,1387808365,10,Java 8 Tutorials Resource and Books to learn Lambda Experssions,javarevisited.blogspot.sg -0,1387807698,5,What is up with else,self.java -5,1387807519,6,Orika Spring Framework easy bean mapping,kenblair.net -64,1387782603,4,Java Programming Timelapse Pong,youtube.com -10,1387750650,11,Why are all the JavaFX built in layout managers so bad,self.java -0,1387747664,6,Netbeans Windows Clean and Build problems,self.java -3,1387731010,15,Complete wipe of computer what do you suggest to have downloaded when start off fresh,self.java -0,1387717574,21,Trying to add an EVIL bit to java lang String aka Java Taint Flag and the first one has been set,blog.diniscruz.com -29,1387714859,8,JBoss AS 8 WildFly 8 CR1 is released,wildfly.org -0,1387713975,9,A blog post about creating Spring beans for tests,self.java -1,1387711472,6,Newbie question about strings and syntax,self.java -9,1387711037,7,Be a better Developer An Annotation Nightmare,beabetterdeveloper.com -2,1387707034,6,Need help with handling race conditions,self.java -0,1387696487,10,What is Java History of Java how it all began,javatalk.org -0,1387696427,12,Is it possible to run use Eclipse IDE online browser using RAP,self.java -0,1387694131,5,Partition a List in Java,baeldung.com -31,1387682725,12,Java Developers of Reddit are there any other programming forums you use,self.java -3,1387680823,18,XStream Remote Code Execution exploit on code from Standard way to serialize and deserialize Objects with XStream article,blog.diniscruz.com -13,1387667649,6,Why does my thread close automatically,self.java -1,1387643306,5,Ideas for a java project,self.java -6,1387627438,9,Any java conf s like javaone but less expensive,self.java -39,1387605861,10,Best way to expand java learning and get some skills,self.java -2,1387592654,4,GUI and other things,self.java -20,1387560484,16,New to Java working through short exercises Could someone please explain a result of this code,self.java -14,1387552956,5,Java Object Mapping with Orika,viaboxxsystems.de -11,1387548537,5,RAP 2 2 is available,eclipsesource.com -10,1387548501,4,Beginner Question about constructors,self.java -10,1387501275,3,JMS and JBoss,self.java -5,1387497946,20,Part 2 of 3 Synopsis of articles amp videos on Performance tuning JVM GC in Java Mechanical Sympathy et al,neomatrix369.wordpress.com -2,1387495678,14,What is the best book to get my dad for beginning to learn java,self.java -23,1387493859,11,What is a feature that the Java Standard Library desperately needs,self.java -0,1387493805,5,Help With Simple File Input,self.java -16,1387492223,7,Apache Sirona simple but extensible monitoring solution,sirona.incubator.apache.org -7,1387490864,10,Inter thread communications in Java at the speed of light,infoq.com -8,1387490460,9,Apache Mavibot 1 0 0 M3 released MVCC BTree,directory.apache.org -7,1387463371,6,Write concurrent Java tests with HavaRunne,lauri.lehmijoki.net -13,1387459733,6,RMI usage triggering regular Full GC,plumbr.eu -0,1387451019,6,AND and OR Operators in Java,self.java -0,1387446905,7,Banking system using hashMap and linked list,self.java -0,1387417329,13,Will learning JavaScript online hurt me from learning Java from a college course,self.java -1,1387404106,20,Part 1 of 3 Synopsis of articles amp videos on Performance tuning JVM GC in Java Mechanical Sympathy et al,neomatrix369.wordpress.com -1,1387369459,7,Yes you can do that in Maven,adamldavis.com -4,1387366205,21,Can anyone help me figure out how to check if an input is a number if the input is a String,self.java -0,1387361087,3,Chess Piece Help,self.java -40,1387338451,8,Coffee With Dessert Java And The Raspberry Pi,m.electronicdesign.com -9,1387308397,17,Does anyone know of a library framework that allows you to get a screengrab of a webpage,self.java -0,1387289961,4,JavaScript for Java developers,schneide.wordpress.com -32,1387272886,9,Hibernate 4 3 0 released JPA 2 1 certified,in.relation.to -7,1387237547,12,How would I go about creating an executable file for my program,self.java -2,1387160031,13,Eclipse and JDK trouble First couldn t find it now exit code 13,self.java -1,1387129508,15,Calculating probability from parameter estimates from a regression equation x post from learnprogramming and stackoverflow,self.java -62,1387118518,6,5 Facts about the Java String,codeproject.com -2,1387110785,8,Exercises and answers for threads synchronization and concurrency,self.java -6,1387079600,14,What are the best places to get practice program ideas X Post r learnjava,self.java -7,1387064908,7,Tutorial Simple HTTP Request in Android Java,droidstack.com -0,1387057090,5,Help creating Hashmap of Arraylists,self.java -5,1387055839,14,Implementing a HashMap class with generics Getting value type V from solely an Object,self.java -3,1387052085,9,What are some of the pitfalls of the JVM,self.java -19,1387040571,14,Programmers of this subreddit what s the best way for me to learn Java,self.java -0,1386994862,12,An error occurred while processing your request Reference 97 b147da3f 1386994777 1beed97d,java.com -6,1386993376,7,Adding and Removing MouseListeners from a class,self.java -11,1386974728,3,Noob Android Development,self.java -27,1386964869,7,About PayPal s Node vs Java fight,developer-blog.cloudbees.com -31,1386958824,12,What s the better career choice Java EE 7 or Spring 4,self.java -6,1386951968,12,Broadleaf Continues to Choose The Spring Framework over EJB 3 Sept 2012,broadleafcommerce.com -6,1386947786,7,Benchmarking SPSC concurrent queues latency using JMH,psy-lob-saw.blogspot.com -53,1386935856,8,Spring Java framework springs forward despite Oracle challenge,m.infoworld.com -0,1386927987,4,JDBC Basics for presentation,self.java -0,1386917239,2,Term Project,self.java -7,1386906858,5,Welcome to the new JavaWorld,javaworld.com -1,1386903077,3,Simulating in Java,self.java -4,1386902379,6,Having a hard time with recursion,self.java -0,1386895565,8,Need help returning lowest date in Java 1,self.java -1,1386891813,15,Fix monitor contention when parsing doubles due to a static synchronized method using bootclasspath p,github.com -4,1386888187,6,Commons BeanUtils 1 9 0 Released,mail-archives.apache.org -36,1386881083,11,Spring 4 0 GA released today time to experiment with it,spring.io -14,1386868054,11,Anyone know how to have java read the crontab in linux,self.java -8,1386861709,18,Find out how to Virtualize Java and the Challenges faced compared to the virtualization of other machine specifications,waratek.com -2,1386858128,6,Strategies for managing a large image,self.java -3,1386852001,3,Measure not guess,javaadvent.com -29,1386833095,8,Java Advent Calendar Anatomy of a Java Decompiler,javaadvent.com -0,1386829723,6,How to use an API question,self.java -3,1386823402,10,Using invoke dynamic to teach the JVM a new language,jnthn.net -5,1386815811,6,java generics extending multiple class interfaces,self.java -41,1386796442,11,Where to go to keep up with new developments in Java,self.java -1,1386794965,7,Javadoc creation gives 9 errors line Help,self.java -5,1386783186,11,Java Programmers One month head start enough to help a noob,self.java -2,1386772633,8,Enable CDI when bundling an overriding JSF version,weblogs.java.net -0,1386771571,5,Learning Apache Maven 3 Video,self.java -8,1386759187,7,Struts 2 3 16 GA release available,struts.apache.org -0,1386737017,13,What s the black console window that everyone seems to use to code,self.java -5,1386714088,7,Confused about a review question final tomorrow,self.java -15,1386701674,6,Java 8 for the Really Impatient,weblogs.java.net -0,1386699250,12,Apples and Oranges The Highlights of Eclipse IntelliJ IDEA and NetBeans IDE,parleys.com -0,1386698738,10,Java Only Working with basic file attributes in Java 7,java-only.com -1,1386697259,10,A Lesser Known Java 8 Feature Generalized Target Type Inference,java.dzone.com -51,1386688603,7,Jetbrains changes IntelliJ IDEA Personal Licensing Model,blog.jetbrains.com -1,1386671683,7,Time Overlap Check in Java Using BitSet,technoesis.net -0,1386664500,8,Help with front end wev dev in Java,self.java -2,1386657570,9,Where can I find a general tutorial on eclipse,self.java -50,1386626270,6,Apache Commons Collections 4 0 released,mail-archives.apache.org -11,1386626222,6,Apache Commons Pool 2 0 released,mail-archives.apache.org -6,1386625789,2,Java RMI,self.java -3,1386624915,9,Private constructor issue with Serialization of third party class,self.java -0,1386623995,6,What are the commonly expected Methods,self.java -8,1386622956,8,tempFile delete returns true but the files remain,self.java -4,1386605663,10,Addison Wesley Signature Series sale this week 50 off ebooks,informit.com -17,1386596292,10,Alexey Ragozin HotSpot JVM garbage collection options cheat sheet v3,blog.ragozin.info -5,1386593773,5,Framework for GANTT like charts,self.java -16,1386567643,15,Open source project plans to fork chromium bring java vm to the browser client side,upliink.aero -2,1386567432,15,The Firebird JDBC team is happy to announce the release of Jaybird 2 2 4,firebirdnews.org -8,1386549058,5,App to code on Android,self.java -0,1386541683,19,JAVA EXPERTS Help me kind of sort of finagle my FINAL EXAM for my intro to JAVA college course,self.java -22,1386521474,17,An overview of Apache Karaf a lightweight OSGi container by introducing its main components and overall architecture,developmentor.blogspot.com -8,1386503381,6,GC Tuning With Intel Performance Counters,javaadvent.com -27,1386490991,9,A print method that provides it source code line,self.java -0,1386439725,6,A month of Apache Tapestry 5,indiegogo.com -27,1386422984,5,Bouncy Castle Release 1 50,bouncycastle.org -16,1386422727,6,Spring WebSockets and Jetty 9 1,java.dzone.com -0,1386396433,52,I am really finding it difficult to understand Command and Observer Design Pattern Can someone explain me the complete flow with an example from end to end i am referring the link below but don t get it why we have so many classes and what is role of each in practical,newthinktank.com -0,1386376602,6,ELI5 Difference between classes and interfaces,self.java -0,1386357040,4,Connect 4 computer AI,self.java -0,1386353009,3,Java vs C,self.java -8,1386348605,6,Learning Java quick about IDE s,self.java -5,1386347380,19,Is 8 3 x 2 3 Math pow 8 3 java lang Math sqrt x 2 3 in Java,self.java -5,1386340923,4,Good JavaFX 2 layout,self.java -2,1386329475,8,Java template engine like Razor and Play templates,rythmengine.org -48,1386324008,3,JHipster home page,jhipster.github.io -0,1386312521,12,What is Java History of Java how it all began Java Talk,javatalk.org -5,1386306827,3,Semantic logging libraries,self.java -1,1386299871,3,Regarding Code Efficency,self.java -4,1386293491,3,R java help,self.java -47,1386282589,27,InnerBuilder an IntelliJ IDEA plugin that adds a Builder action to the Generate menu Alt Insert which generates an inner builder class as described in Effective Java,github.com -2,1386279171,18,Find optimal combination of flights to get from one place to another using a graph xpost r programminghelp,self.java -2,1386273527,4,How to test null,self.java -5,1386272504,11,Spring Why can t you just give me the Jar files,self.java -0,1386271119,6,Help with JCreator 5 00 Centering,self.java -2,1386259263,10,How can I hide INFO messages from org apache sshd,self.java -0,1386255923,6,Scala 1 Would Not Program Again,overwatering.org -15,1386253863,15,What is the Java server side response to HTML5 and jQuery like client side frameworks,self.java -0,1386244531,9,BEST JAVA IDE for JAVA Programming Language Java Talk,javatalk.org -7,1386212395,2,GUI applications,self.java -2,1386210139,9,Trouble with eclipse swt library on 32 bit JVM,self.java -1,1386208678,12,Help with Creating a My Anime List application for a final project,self.java -5,1386200651,3,preprocessing java ftw,gist.github.com -32,1386175431,5,Core Java 7 Change Log,java-performance.info -6,1386169280,9,Trisha Gee Design is a process not an artefact,jaxenter.com -1,1386154254,6,Hierarchical finite state machine for Java,github.com -2,1386147459,7,Java2Days 2013 Modern workflows for JavaScript integration,blog.mitemitreski.com -48,1386140075,9,Should Swing be deprecated to force use of JavaFX,weblogs.java.net -0,1386103389,7,Who uses null values in a list,self.java -0,1386096747,21,What is the correct way to use if statements i e How does having two else statements not overwrite one another,self.java -5,1386093370,4,Java compiler in java,self.java -0,1386090121,10,How to output the SUM of your name in Java,self.java -73,1386084025,3,IntelliJ IDEA 13,jetbrains.com -2,1386044537,15,Have you used any open source Java e commerce software Which one would you recommend,self.java -3,1386037900,27,Help I m making a class that uses different sorting algorithms on an array but the original array changes and ruins the sorting for the subsequent algorithms,self.java -0,1386036860,4,Tic tac toe GUI,self.java -18,1386018681,10,Best practice for many quick and short lived TCP Sockets,self.java -4,1386018166,10,A lite MSAccess mdb export tool Jackess Wrapper pure Java,github.com -1,1386014519,11,How to hide INFO level log output from org apache ftpserver,self.java -29,1386006389,4,Good algorithms book suggestions,self.java -1,1386005948,13,Create a simple RESTful service with vert x 2 0 RxJava and mongoDB,smartjava.org -0,1386004565,7,Help with making enemies disappear Android Game,self.java -3,1385999600,5,Java Game with Window Builder,self.java -40,1385996202,4,Current Java Web Stacks,self.java -13,1385981291,4,Collection of Hibernate links,hibernate-framework.zeef.com -6,1385963953,10,Any books you reccomend for a next to complete beginner,self.java -11,1385954063,4,Generic Data Access Objects,community.jboss.org -15,1385920677,6,Solr as a Spring Data module,blog.frankel.ch -0,1385916023,2,Java AutoUpdater,self.java -2,1385855237,11,x post javafx adding a date to a table via observablelist,self.java -2,1385850095,8,Can someone explain groupSum from CodingBat to me,self.java -6,1385842196,18,Do you always call certain variables by the same name If so what names do you normally use,self.java -321,1385807026,7,IntelliJ really has some hard working inspections,imgur.com -15,1385733045,6,Getting started with Spring Data Solr,mscharhag.com -0,1385731959,6,I have a problem with Java,self.java -0,1385717985,6,How to write Production quality code,javarevisited.blogspot.sg -6,1385693832,6,Interesting easy to learn java libraries,self.java -0,1385682982,5,Need help hashsets and deduplication,self.java -3,1385678063,10,Implementing the in Mapper Combiner for Performance Gains in Hadoop,dbtsai.com -3,1385673774,3,Unreachable statement Why,self.java -59,1385655184,9,Paypal Switches from Java to JavaScript for Production Applications,paypal-engineering.com -0,1385649681,10,Best Countries to Work and Live in as a Developer,blog.splinter.me -4,1385648614,13,Regex Help How to split a string with multiple back to back delimiters,self.java -8,1385646787,8,View UMLet diagrams inside GitHub with Chrome Extension,chrome.google.com -0,1385630627,11,I could use some help with a java problem for homework,self.java -0,1385627886,16,Fetching website s source code after x seconds page loads ie chat using JSoup or other,self.java -0,1385598095,5,I keep getting this error,self.java -3,1385592349,6,Am I marketable with the JVM,self.java -5,1385590121,6,Good libraries to get exposed to,self.java -15,1385588916,12,Java EE examples amp tests now a top level org on GitHub,blog.arungupta.me -4,1385585668,6,Strange String issues in JVM languages,sites.google.com -0,1385578899,13,Would 3 x 2 3 2 3 x 2 3 2 in java,self.java -5,1385575845,10,How do I register scp as a valid URL protocol,self.java -0,1385574924,8,How does this part of the code work,self.java -0,1385551732,3,coding the IoT,blogs.oracle.com -4,1385550507,15,GitHub s 10 000 most Popular Java Projects Here are The Top Libraries They Use,takipiblog.com -0,1385530864,17,Jdon is a java opensource reactive framework use to build your Domain Driven Design CQRS EventSourcing applications,github.com -0,1385526377,7,Quick question about creating new class types,self.java -0,1385514813,4,Question Answer MIDTERM EXAM,youtube.com -73,1385508694,7,What DON T you like about Java,self.java -0,1385494292,7,Help me printing out a directory tree,self.java -2,1385491168,4,Catching up Java knowledge,self.java -0,1385475404,15,Can somebody please help me with Math pow and specifically raising to the power of,self.java -3,1385470437,6,Time intervals and repetitions with Java,self.java -2,1385458316,7,Just got an interview for Java Developer,self.java -4,1385437851,6,Pseudo random number function in Java,self.java -3,1385413719,13,Teaching myself Java Having issues de serializing an array from a file Java,self.java -0,1385401167,6,What is giving me these errors,i.imgur.com -1,1385392870,5,Java SE 7 Programmer I,self.java -12,1385387611,6,6 Differences between Java and Scala,javarevisited.blogspot.com -28,1385380964,8,AOT compiler Excelsior JET pay what you can,self.java -0,1385373341,1,Hybernate,self.java -10,1385350694,7,YAML JSON Parsing for settings configuration file,self.java -7,1385349060,6,Help with a random number generator,self.java -8,1385331187,6,Making a round grid world help,self.java -9,1385307344,7,Who of you uses JNI and why,self.java -17,1385305971,4,Spreading some JavaFX love,blog.frankel.ch -20,1385289110,7,Is Effective Java 1st Edition still relevant,self.java -0,1385267975,5,Need help with a program,self.java -40,1385267931,6,Google Guava s Bloom Filter Tutorial,codingjunkie.net -4,1385267791,16,Interesting Woodstox STAX Tutorial Including Comparison With DOM Based XML Parser With Full Sample Source Code,developerfusion.com -3,1385261278,13,Comparing the Lotus Notes Domino and Sharepoint as platforms for Rapid Application Development,self.java -0,1385219682,11,Changes to String internal representation made in Java 1 7 0_06,java-performance.info -0,1385187442,5,Echoing all values in bean,self.java -0,1385178060,6,Asynchronous Java database and Play Framework,self.java -0,1385155219,7,Can A Java Class Constructor Be Private,sribasu.com -2,1385153592,9,Implementing a DFA in Java without using reg expression,self.java -4,1385147767,23,Looking to develop for small businesses such as trading companies and retail businesses Wondering how I should prepare myself More in the description,self.java -13,1385136179,4,International Base64 Encoding Confusion,self.java -30,1385107150,9,Has anybody been using the JDK 8 Early Release,self.java -0,1385106328,12,Is there a Java library for interacting with the Ebay Shopping API,self.java -3,1385100494,5,Learning Java coming from Python,self.java -0,1385094710,19,Hopefully this is a simple question how do I update components in a JPanel instead of add remove them,self.java -0,1385077863,13,If statements not registering as false when they should am I being stupid,self.java -0,1385070176,7,I need help for my java project,self.java -0,1385064766,10,Need help finding the correct command for a Modding Project,self.java -0,1385063537,12,Lightweight HTTP FTP servers for use with JUnit tests and ClassLoader files,self.java -31,1385062802,6,Pretty good java 8 lambda tutorial,dreamsyssoft.com -0,1385060115,4,New free dns service,self.java -59,1385030691,9,New backdoor worm found attacking websites running Apache Tomcat,arstechnica.com -0,1385019559,4,I am Learning Java,self.java -0,1385007551,8,Need help deciding on a simple ish project,self.java -0,1385004650,6,Need help with the Point class,self.java -0,1385001271,8,Need help converting json into ArrayList using GSON,self.java -0,1384993377,6,Formatting a Gui interface in java,self.java -10,1384956409,11,Day 22 Developing Single Page Applications with Spring MongoDB and AngularJS,openshift.com -0,1384950353,10,Cache vs In Memory Data Grid vs In Memory Database,dzone.com -65,1384940484,9,Poison Null Byte and The Importance of Security Updates,blog.c2b2.co.uk -0,1384929058,8,QUESTION What JVM languages has the best ecosystem,self.java -0,1384923792,30,Please help My least common multiple method seems to be missing a return statement but I m sure I ve put one Does anyone know what I m doing wrong,self.java -1,1384916193,5,Discovering Corporate Open Source Contributions,garysieling.com -0,1384911306,7,Removing duplicates from a double linked list,self.java -4,1384907812,5,Need help with strange SSLHandshakeException,self.java -2,1384905926,6,Best performance monitoring tools for Tomcat,self.java -5,1384897513,6,Having trouble with random Integer Arrays,self.java -1,1384889778,10,Is it possible to see the code behind an app,self.java -0,1384886637,9,Got a problem with my bouncing ball help Please,self.java -0,1384883213,6,jd gui best Java Decompiler ever,self.java -6,1384880127,8,Questions about Java SE 7 Programmer I Cert,self.java -0,1384869957,2,Spring Loaded,self.java -10,1384869183,7,Trove High Performance Collection Library LGPL License,trove.starlight-systems.com -38,1384868777,7,Memory Efficient Java Tutorial Direct PDF Link,cs.virginia.edu -25,1384865079,4,Profiling and memory handling,self.java -3,1384841995,27,My Friend says my code is really messy what do you guys think and how could i improve it to make it easier to read for people,pastebin.com -0,1384830496,10,ELI5 how to impliment persistance on a simple java program,self.java -5,1384815996,7,Notes from Java EE meetup at Devoxx,blog.arungupta.me -1,1384795583,7,Best Headless alternatives to Java WebStart JNLP,self.java -0,1384793287,4,Make printer form feed,self.java -59,1384788363,25,TIL Oracle changed the internal String representation in Java 7 Update 6 increasing the running time of the substring method from constant to N programming,reddit.com -6,1384787985,7,This Great Library Need More Attention op4j,op4j.org -0,1384787196,7,JAVA Tutorials and Example with Source Code,javatutorialsource.blogspot.com -17,1384786261,10,JRE 7 is the only thing in my path variable,self.java -5,1384786187,15,If anyone is familiar with the JDBM BTree interface I could use a little help,self.java -0,1384783698,12,How to use Intellij idea Live templates to make your life easy,lankavitharana.blogspot.sg -0,1384776358,6,Need help reading from txt file,self.java -0,1384766087,11,Having some issues with Java Homework could really use some help,self.java -0,1384755904,12,Having an arrayindexoutofbounds problem in eclipse not sure how to solve it,self.java -0,1384738360,21,Need help writing a method that will take in an integer parameter and return an integer array filled with random numbers,self.java -4,1384737489,7,How do i make my program standalone,self.java -40,1384733631,22,All java based games minecraft 8bit mmo etc have been displaying font this way What happened and how do I fix it,i.imgur.com -5,1384731102,7,What is the purpose of an Interface,self.java -0,1384728318,11,I need some help understanding the problem I need to build,self.java -0,1384723016,5,Allow user to name object,self.java -0,1384716554,8,Is setting the classpath as a property portable,self.java -0,1384713530,13,Using JSF 2 2 features to develop ajax scrollable lazy loading data table,dwuysan.wordpress.com -0,1384704485,6,Allow user to set object name,self.java -3,1384693774,7,Turning Assertions Into a Domain Specific Language,petrikainulainen.net -21,1384687844,15,Java 8 Lambda Expressions and the Psychology of the Masters of the Universe devoxx style,ileriseviye.wordpress.com -6,1384665415,8,Another day another Java menace Ceylon has landed,jaxenter.com -30,1384638589,8,When to use Java and when to not,self.java -0,1384627118,37,Hey guys so Im trying to make a recursive method that finds the minimum value in an array and returns it But im having some trouble with my code When executing it just returns 0 Any suggestions,self.java -38,1384622389,11,R in Java FastR an implementation of the R language scribd,oracle.com -11,1384609153,10,Can java be used to make a video editor app,self.java -8,1384583031,8,Day 18 BoilerPipe Article Extraction for Java Developers,openshift.com -0,1384579111,3,3d game tutorial,self.java -6,1384561774,7,What Java EE Book would you recommend,self.java -22,1384543698,12,Ents a new Entity Component Model View Controller game library for Java,self.java -0,1384543173,9,Looking for some starter projects to help me learn,self.java -9,1384540643,8,Get a REPL On Your Current Java Project,joeygibson.com -23,1384532649,31,I just posted this to a request for advice on becoming a Java developer in r Austin anything I missed or messed up I don t want to lead anyone astray,self.java -17,1384525177,17,Juergen Hoeller Co founder of the Spring Framework Spring eXchange Keynote Spring 4 on Java 8 Video,skillsmatter.com -0,1384521576,4,Java Application with DB,self.java -1,1384501961,13,Should I use an embedded web server or deploy to a standalone server,self.java -4,1384498002,17,Day 17 JBoss Forge Build and Deploy Java EE 6 AngularJS Applications using JBoss Forge and OpenShift,openshift.com -16,1384464879,14,Google open sourced AutoValue an immutable value type code generation for Java 1 6,docs.google.com -0,1384452140,14,Java beginner stuck amp feel like I m so close to figuring it out,self.java -37,1384450454,8,Create charts in Excel using Java Apache POI,programming-free.com -6,1384440283,32,My company just announced a 5 3M investment We use Java machine learning and game theory to predict what will interest people We re based in Austin TX and we re hiring,self.java -0,1384434745,9,Need help with coding on Khan Academy Java base,self.java -33,1384419158,5,Ceylon 1 0 0 released,ceylon-lang.org -1,1384408405,6,JavaFX Problem with Oracle FXML Example,self.java -8,1384391399,7,Difference between Static and Non Static Methods,self.java -0,1384375593,12,Easy way to integrate SPICE circuit simulator into JAVA without OS dependencies,self.java -38,1384374638,9,Repository of Java 8 source code examples for learning,github.com -6,1384371831,10,My first major accomplishment been coding for about three months,self.java -14,1384354385,21,Can JavaFX be compiled to HTML5 JS Or is it a competitor to Flash in an era where Flash is dying,self.java -0,1384354212,5,import awt is not working,self.java -2,1384351224,23,Mac using 10 6 8 seems unable to use Java in both Chrome amp Safari but insists that it is up to date,self.java -0,1384342031,11,Newbie seeking help with probably a simple problem unique to me,self.java -20,1384337960,14,First OpenJDK OpenJFX 8 App finally found its way to the Mac App Store,mihosoft.eu -3,1384325213,11,So i finished my 1st java program that actual does something,self.java -17,1384321620,5,IntelliJ 13 preview now available,blog.jetbrains.com -1,1384309677,6,Java tool to browse Windows shares,self.java -0,1384302972,9,Help with a type of syntax for arrays substrings,self.java -9,1384298033,5,syso like shortcuts on Eclipse,self.java -8,1384291113,21,Is it bad practice to use interfaces as a way to store constants even if it s for only two classes,self.java -0,1384290259,13,Minecraft Make Your Own Mod Part 1 Introduction and Java Setup How To,youtube.com -8,1384289787,6,What s up with the Factories,self.java -0,1384287994,5,Java Algorithms question need help,self.java -0,1384284530,7,Adding a jPanel GUI to a jPanel,self.java -2,1384272663,5,How does Math random work,self.java -2,1384269204,6,Lambdas for Fluent and Stable APIs,blog.thesoftwarecraft.com -78,1384250464,9,AMD charts a path to Java on the GPU,semiaccurate.com -0,1384243005,4,Need help ASAP please,self.java -3,1384234547,9,Day 13 Dropwizard The Awesome Java REST Server Stack,openshift.com -0,1384226318,3,User Defined Exceptions,self.java -11,1384217510,15,I am stuck in programming I really don t know where to go from here,self.java -15,1384214892,42,I need help understanding what exactly the spring framework is used for I have read about it a bit and I understand the concepts of AOP and IOC But a little more explanation with respect to real world examples would be awesome,self.java -7,1384202100,5,Code convention for spring annotations,self.java -6,1384158827,13,BQueue A Single Producer Consumer queue alternative interesting near empty full queue handling,psy-lob-saw.blogspot.com -17,1384152677,8,Day 12 OpenCV Face Detection for Java Developers,openshift.com -0,1384146827,7,Where should I start my unit tests,self.java -0,1384140170,6,SwitchMap error after decompiling jar file,stackoverflow.com -42,1384136855,20,Forbes wrote an article about r java and u kristler after his shining example of the Socratic method of teaching,forbes.com -1,1384128536,7,Creating an ssl connection using a p12,self.java -55,1384126877,16,Do you think Java will still be a dominant programming language in a decade In two,self.java -0,1384124919,2,Swing help,self.java -1,1384120187,3,Question about serializable,self.java -3,1384119949,7,Book review Getting Started with Google Guava,blog.mitemitreski.com -7,1384114132,8,Desktop app that connects with a weather site,self.java -0,1384111864,3,10 method program,self.java -11,1384110313,4,IBM witdraws Geronimo support,www-01.ibm.com -25,1384089425,3,Strange Graphics Bug,imgur.com -17,1384052585,3,Java to Arduino,self.java -6,1384034920,7,Create a JSF flow programmatically using annotations,weblogs.java.net -0,1384014409,9,A Java geek Integrate Spring JavaConfig with legacy configuration,blog.frankel.ch -24,1384013214,6,Learning the history of Java Platform,self.java -0,1383996724,8,Need help with my first simple java program,self.java -0,1383982538,6,Need help installing and running java,self.java -0,1383979967,27,Taking a CS class made a program in which you play rock paper scissors vs the computer How d I do and what improvements could I make,self.java -2,1383979452,9,Day 11 AeroGear Push Server Push Notifications Made Easy,openshift.com -0,1383974356,12,Help with a normal and reverse binary search on an array list,self.java -0,1383959913,6,Help with this simple GPA Calculator,self.java -0,1383946836,17,Q What is the simplest way to save High Score to a file and read it later,self.java -0,1383941796,10,Step by step install Apache Tomcat in Amazon EC2 instance,excelsior-usa.com -5,1383940919,5,Suggestions for good Java resources,self.java -0,1383940162,17,Does there exist an automatic HTML table generator that does the row counting wrapping logic for you,self.java -0,1383938950,3,Web Application Container,self.java -73,1383938179,5,Popular Coding Convention on Github,sideeffect.kr -0,1383931092,14,How to search and find the current contents of an array for a number,self.java -9,1383925201,5,20 Java unit testing framework,ssiddique.info -17,1383924638,6,NetBeans warning about If Else statements,self.java -1,1383924288,7,Tips for witching from Eclipse to IntelliJ,self.java -11,1383918511,7,Java Should I assert or throw AssertionError,flowstopper.org -33,1383918048,17,Informal Poll What Frameworks and Servers do you use to build your Java web application at work,self.java -6,1383912094,6,Accessing Google Calendar using their API,self.java -4,1383905286,9,How to gather information to support remote J2EE applications,self.java -0,1383880969,9,Help with basic Java programming in Dr Java Urgent,self.java -0,1383880876,10,Good and bad books for OCAJP 7 Exam 1Z0 803,codejava.net -0,1383872839,8,Help with a little program editing amp compiling,self.java -0,1383871491,11,How can I import my own graphics to a Snake game,self.java -0,1383870633,5,Regex and print formatting notation,self.java -0,1383867695,11,Rounding up or down based on which perfect square is closer,self.java -0,1383866084,11,Problems with compressor code for robotics don t really know java,self.java -0,1383862230,6,Having trouble with arrays university assignment,self.java -0,1383848048,10,New to Java trying to accomplish a simple switch code,self.java -11,1383843192,9,R I P GlassFish Thanks for all the fish,blog.eisele.net -10,1383840226,7,Trouble connecting to MS SQL Server Database,i.imgur.com -79,1383838809,5,5 Useful Hidden Eclipse Features,tech.pro -4,1383816348,2,Stateless JSF,weblogs.java.net -4,1383804180,9,How to identify AWT component names in running applet,self.java -621,1383798569,9,Changing the color of a bug based on direction,self.java -4,1383771806,7,SAP Integration with Red Hat JBoss Technologies,de.slideshare.net -0,1383766365,5,New to Java need help,self.java -0,1383756292,4,Sin x Program homework,self.java -0,1383752328,3,GUI help netbeans,self.java -9,1383749731,6,Connecting to Eclipse Kepler OSGi Console,digizol.com -2,1383746631,7,What does read timeout means in URLConnection,self.java -0,1383733420,3,Switch Case help,self.java -15,1383731654,16,Q How are real time updates achieved on a HTML front end with an MVC backend,self.java -7,1383703951,9,Help With Managed Images and OSX Xpost r javagamedev,self.java -18,1383682404,14,My company is going to pay for my Java courses Which is your favorite,self.java -2,1383671891,16,Does anyone have any experience invoking TestNG programmatically within java running only a single test method,self.java -2,1383660427,11,What is your go to resource for java tuts news etc,self.java -0,1383654527,9,Help with Java Not getting the answers I need,self.java -4,1383635072,8,Java toString the Program Logic vs Debug Dilemma,flowstopper.org -0,1383624968,7,How to install javadb in 64bit OS,self.java -0,1383616301,5,Estudo de Java Para iniciantes,arruda.blog.br -15,1383614895,3,Stateful JAX RS,self.java -29,1383590512,8,No more commercial support from Oracle for GlassFish,blogs.oracle.com -13,1383588541,13,Is there anyway to re inject data into a method for rapid testing,self.java -26,1383584236,14,How can I scan my java code for fields yet to be javadoc ed,self.java -0,1383582982,2,Pastebin Scraper,self.java -2,1383579738,11,Day 6 Grails Rapid JVM Web Development with Grails And OpenShift,whyjava.wordpress.com -1,1383575847,9,Desktop Java Server Side Java Embedded Java Informal Poll,self.java -12,1383557877,6,Spring Framework 4 0 RC1 released,spring.io -0,1383557180,4,My case against autowiring,blog.frankel.ch -50,1383538245,10,HikariCP New JDBC Connection Pool blows doors off the competition,brettwooldridge.github.io -1,1383526335,6,Accessing localhost SQL database with Netbeans,self.java -20,1383520538,10,The difference between doing a job and getting a job,self.java -12,1383510992,6,WebLogic 12c Does WebSockets Getting Started,blog.c2b2.co.uk -8,1383490821,16,Trying to improve my best practices Care to critique a short two classes program I wrote,self.java -7,1383484747,11,Firebird Java driver Jaybird 2 3 will become Jaybird 3 0,firebirdnews.org -1,1383424031,8,Java 8 Lambdas in Action First chapter free,manning.com -3,1383422465,7,Is anyone here developing for Adobe CQ5,self.java -23,1383412165,5,Java tutorial for beginners Introduction,javatutorialbeginner.blogspot.com -0,1383408121,3,Java help requested,imgur.com -0,1383385319,9,Need help with a CS 110 Connect 4 project,self.java -0,1383350694,8,Java noob help me improve this code please,self.java -0,1383343644,5,Migrate your ManagedProperty to annotations,weblogs.java.net -0,1383340513,6,How would I search for this,self.java -0,1383334495,2,Java tutorial,self.java -0,1383333841,2,Learning BIRT,self.java -0,1383314960,8,Help for me and those mobile java programmers,self.java -0,1383312974,6,D mystifier les iteratees avec Java,infoq.com -11,1383309659,7,Discovering Senior Developers From Source Code History,garysieling.com -0,1383298167,13,How to specify null value in MS Access through the JDBC ODBC bridge,stackoverflow.com -108,1383292435,13,Watch out for these 10 common pitfalls of experienced Java developers amp architects,zeroturnaround.com -1,1383279481,10,Starting a new Java app with Spring MVC Stop me,self.java -4,1383236109,5,Less verbose alternative to Maven,self.java -14,1383223742,8,How to cache component rendering in JSF example,byteslounge.com -0,1383217800,4,Help on Java JSF,self.java -8,1383212537,8,Migrate your JSF ManagedBean to CDI Named annotations,weblogs.java.net -0,1383195125,10,Scanner based program to remove comments trying to use useDelimiter,self.java -0,1383180485,6,Java redirect to download updated plugin,self.java -3,1383176081,10,Project JAdventure Looking for a project to get involved in,self.java -0,1383173031,5,help with java letter counting,self.java -0,1383163849,8,Core Java JPA Hibernate Spring Youtube Video Channel,hubberspot.com -1,1383159529,7,Scanner reads uc285 as end of line,self.java -15,1383159051,15,Is it common for JVM to complain of heap errors when you spawn 100 threads,self.java -0,1383150858,4,The IoT takes flight,jaxenter.com -0,1383136741,6,synchronized vs ReentrantLock in java threading,guruzon.com -1,1383102904,6,Having some troubles with this program,self.java -7,1383096786,12,Strange problem with JDK 1 7 0_45 on Mac OS X Maverick,self.java -0,1383086574,7,Databen ch JVM Persistence Benchmark Round 2,databen.ch -10,1383086365,8,Disabling all EJB timers in Java EE 6,jdevelopment.nl -17,1383080775,20,Tutorial Designing and Implementing a Web Application with Spring we ve had no end of questions on this topic lately,spring.io -10,1383077764,3,Working with PDFs,self.java -4,1383069411,6,Lesser known concurrent classes Part 1,normanmaurer.me -5,1383064810,8,Java Swing in 2013 Is it worth it,java.dzone.com -0,1383060745,32,Would it be easy to reuse Jersey s JAX RS Routing capabilities I am looking to make a JAX RS implementation for Finagle and would prefer to not have to rewrite everything,self.java -3,1383054042,6,Help with Connect 4 in Greenfoot,self.java -0,1383021746,3,Help with pseudocode,self.java -0,1383018718,12,Yahoo games and unsigned applications warning Not overly important just wondering something,self.java -0,1383012278,5,help with basic java strings,self.java -0,1383008298,2,Joyce Farrell,self.java -0,1382996419,16,Help with polymorphism For some reason I can t get the instance variables of the superclass,self.java -0,1382992141,10,Lady Java YouTube Something funny I ran across on Youtube,youtube.com -3,1382989872,20,A simple and easy Java Performance API that allows single and multi thread benchmarking with assertions what do you think,github.com -2,1382975455,6,Hibernate Bidirectional OneToOne primary key association,fruzenshtein.com -0,1382968943,8,Spring Make your java based configuration more elegant,fruzenshtein.com -0,1382936255,10,How to Make a Java Virus Just a little fun,youtube.com -0,1382917177,11,I m really interested in learning but starting is so confusing,self.java -2,1382900333,6,Of running multiple regexp at once,fulmicoton.com -15,1382891062,7,Java EE 7 JSR 166 Concurrency Utilities,en.kodcu.com -0,1382886316,4,Needing help with Java,self.java -19,1382885809,18,If you could only buy one book to learn as much Java as possible what would it be,self.java -0,1382840178,9,Making a char by removing spaces from another char,self.java -15,1382824148,5,Howto overwrite static final field,self.java -26,1382785638,10,JavaOne 2013 Roundup Java 8 is Revolutionary Java is back,infoq.com -0,1382770640,11,Problem with Program can someone help a new java coder out,self.java -0,1382765322,5,Java Help for a noob,self.java -0,1382760095,7,Need help with exception handling in swing,self.java -47,1382750957,22,If I were hired at your place of work as a java developer what might my first week of work be like,self.java -0,1382745100,2,Immediate Help,self.java -0,1382739450,2,coding help,self.java -0,1382730760,5,Need beginner java question answered,self.java -0,1382729294,7,Flapi A fluent API generator for Java,github.com -4,1382725115,9,How do I install Java SE 6 in Mavericks,self.java -2,1382722011,7,Java and XML Based Neural Net Suite,github.com -6,1382705889,9,Book to learn EJB on not so basic level,self.java -12,1382695879,6,a atay ivici of PrimeFaces interview,devrates.com -6,1382676922,14,How can I write to a javax sound sampled SourceDataLine without blocking or polling,self.java -0,1382674452,8,Explain JPA Java Persistence API and its Architecture,youtube.com -0,1382671682,13,I want to know what r java thinks of this program I wrote,self.java -0,1382665891,4,What s the difference,self.java -0,1382664772,5,Fixing basic code for homework,self.java -0,1382662526,1,jQuery,plugins.jquery.com -0,1382645826,3,Need some advice,self.java -0,1382641269,2,JFrame error,self.java -7,1382640823,8,How to remove included resources in JSF example,byteslounge.com -0,1382636116,14,Java being blocked at work What does this mean sorry for the idiotic question,self.java -0,1382635015,7,How You Helped Shape Java EE 7,blogs.oracle.com -0,1382629803,5,Simple array for loop issue,self.java -1,1382621043,6,The road ahead for WebLogic 12c,technology.amis.nl -0,1382619761,19,Not sure if this is the right place but I need help with a program that I am writing,self.java -11,1382596750,3,Web App frameworks,self.java -0,1382580739,8,Swing component not sure how to create this,self.java -0,1382574346,7,Need help converting png to int please,self.java -0,1382568544,3,help por favor,self.java -0,1382567137,7,Rock Paper Scissors program in Java 1,self.java -0,1382560618,11,Here are some tutorials if you are trying to learn Java,youtube.com -3,1382542012,17,Why Can t Johnny Read Urls Request for comments on a URL library in Java xpost programming,gist.github.com -28,1382534621,8,We don t have time for code reviews,blog.8thcolor.com -0,1382534516,10,Getting Started with method security in Grails using Spring Security,mscharhag.com -2,1382532931,23,OOP Has A relationship has my mind swimming Details with POC working code inside just want to make sure I m not stupid,self.java -0,1382521115,6,Trying to understand System out printf,self.java -1,1382500550,6,Need help with Git on NetBeans,self.java -1,1382500388,10,Learning programming at home using Java Any books you recommend,self.java -0,1382496265,17,Why wont one piece of code work in netBeans but it work perfectly fine in Eclipse Keplar,self.java -0,1382490510,2,Weird error,self.java -0,1382470048,13,Can anyone point me to an example of an attractive desktop Java app,self.java -0,1382467526,14,Popping Tag libs From my co worker s wall while removing old custom taglibs,imgur.com -1,1382462434,4,eli5 java file constructor,self.java -0,1382451161,11,Why should you use Unchecked exceptions over Checked exceptions in Java,jyops.blogspot.in -1,1382446062,7,A Boon to Java Development introducing Boon,rick-hightower.blogspot.sg -2,1382442921,14,Exclusive interview with Hans Dockter ahead of his keynote at the Gradle eXchange 2013,skillsmatterblog.wordpress.com -2,1382437443,3,Demystifying ThreadLocal variables,plumbr.eu -5,1382419764,4,Java 1 6 REPL,javarepl.com -1,1382403621,7,Is there anything wrong with this practice,self.java -3,1382402688,3,Best Java applications,self.java -48,1382400794,8,Is Java the right language to learn first,self.java -0,1382400214,13,How to print the first and second digit of a two digit number,self.java -0,1382396565,15,How to insert a variable entity into the html code from my java server code,self.java -0,1382391082,5,5 Song MP3 Player Problems,self.java -0,1382387735,13,REST JaxB Validating parameters Can someone help point me in the right direction,self.java -2,1382385020,12,Can i be good at Java without a degree in Computer Science,self.java -7,1382380146,9,How can I statically add elements to a Map,self.java -0,1382376253,5,What makes a great developer,beabetterdeveloper.com -2,1382343276,7,A failed experiment improving the Builder pattern,branchandbound.net -5,1382340841,19,Multi Producer Single Consumer Queues From 2M ops sec 6 producers ABQ to 50Mops sec lock free MPSC backoff,psy-lob-saw.blogspot.com -0,1382336478,10,Dear Java Stop alt tabbing me from games to update,self.java -6,1382334990,14,Anyway to automatically prepare a static variable that can t just be trivially initialized,self.java -0,1382320719,3,Basics on iteration,self.java -2,1382315685,10,Annoying issue trying to remove line feeds from XML SAX,self.java -0,1382310020,7,Code for updating a value every minute,self.java -4,1382291418,5,Why embed javascript in java,self.java -47,1382288701,7,You Thought You Knew About Java Performance,nerds-central.blogspot.com -0,1382264738,13,Cannot get junit to work in eclipse after upgrade to windows 8 1,stackoverflow.com -9,1382254256,7,Brian Goetz Survey on Java erasure reification,surveymonkey.com -6,1382249852,7,Looking for advice doing a VoIP project,self.java -0,1382232834,5,JDK 7 will not uninstall,self.java -0,1382231745,8,HW Help Coding a simple interface calculator class,self.java -0,1382212766,9,Why is it so hard to find Java talent,ensode.net -0,1382197153,7,Alternative to Oracle Java for the browser,self.java -27,1382195649,9,JHades Your way our way out of Jar Hell,jhades.org -31,1382191919,9,Oracle releases 127 security fixes 51 for Java alone,nakedsecurity.sophos.com -5,1382179310,8,PrimeFaces Extensions drag and drop feature in Timeline,ovaraksin.blogspot.com -13,1382177610,21,I wrote up a small example that shows how to use the FileSystem URL Reader Pattern Objects InputStream URL URI etc,rick-hightower.blogspot.com -14,1382137540,6,JEUS application server The story continues,arjan-tijms.blogspot.com -2,1382136607,9,Meta Can we have a monthly job posting thread,self.java -0,1382130338,8,HIRING ENFOS is looking for Java Software Engineers,enfos.com -0,1382129541,5,Wanted Java developers to be,infoworld.com -2,1382129098,7,Hibernate Facts The importance of fetch strategy,vladmihalcea.wordpress.com -0,1382112388,2,Method Parameters,self.java -0,1382109772,14,How can I configure maven antrun plugin to print out the command it runs,self.java -5,1382101501,10,JPA Criteria API By Example x post from r JPA,altuure.com -26,1382093067,10,RESTful Webservices made easy with spring data rest An Introduction,beabetterdeveloper.com -0,1382067172,5,Need Java Help for class,self.java -0,1382061810,4,Adding JPanels to JFrames,self.java -7,1382057906,5,JRE not updating Mac OSX,self.java -2,1382056950,25,I have a friend who insists on using Terminal the built in OSX app to program in Java How can I convince him not to,self.java -0,1382038874,3,Java Developer Position,linkedin.com -0,1382030716,10,Custom error pages for expired conversations involving CDI and JSF,jaitechwriteups.blogspot.com -0,1382029621,9,Add Some Entropy and Random Numbers to Your JVM,tech.pro -18,1382023886,11,The most popular Java EE 7 technologies according to ZEEF users,arjan-tijms.blogspot.com -0,1382020642,10,Why are my class files smaller under linux than windows,self.java -1,1382020456,26,Is there a way to continue to use java jre 1 7 0_25 Since update 45 cane out with a new security baseline it s blocked,self.java -0,1382016348,2,Overloading variables,self.java -0,1382015061,3,Java Digital Signature,self.java -7,1382011084,11,How to handle many many objects without running out of memory,self.java -20,1381996683,9,Which features would you love to see in Java,self.java -0,1381991793,6,What has happened to Spring MVC,self.java -2,1381991221,9,Java resources tutorials for experienced programmers in other languages,self.java -1,1381985388,17,Is it correct to use a volatile Void field to enforce a consistent view of global memory,self.java -21,1381984667,36,YSK JIVE interactive execution environment for eclipse You can manually step forwards AND BACKWARDS through a program s execution while it syncs the code position sequence diagrams object diagrams AND console output It s gloriously helpful,cse.buffalo.edu -0,1381977580,18,If I wanted to learn to code where would I start and how would I go about learning,self.java -0,1381966381,4,object oriented design questin,self.java -14,1381959682,4,Semantic diffing Java code,codicesoftware.blogspot.com -3,1381959084,2,Lexicographical Order,self.java -0,1381955438,9,Explain Java Class Loaders Java Interview Questions and Answers,youtube.com -12,1381955423,14,A more efficient way of moving an array of C strings into Java space,self.java -2,1381951298,11,Free Java Devroom Call for Papers now open for FOSDEM 2014,wiki.debian.org -0,1381947770,5,Please help me with java,self.java -39,1381934173,4,NetBeans 7 4 released,netbeans.org -0,1381930034,3,question about error,self.java -66,1381907897,7,Hilarious job posting for a Java developer,i.imgur.com -7,1381900885,15,JDBC lint helps Java programmers write correct and efficient code when using the JDBC API,github.com -38,1381894447,7,1000 Responses to Java Is Not Dying,drdobbs.com -19,1381875220,9,Please explain the relationship between OpenJDK Oracle and HotSpot,self.java -9,1381873454,7,Oracle Critical Patch Update Advisory October 2013,oracle.com -0,1381871313,6,Assistance needed for small project questions,self.java -0,1381863662,4,Boost your development speed,beabetterdeveloper.com -0,1381856828,3,hey help please,self.java -9,1381853961,9,Best ways to learn about multi threading and concurrency,self.java -0,1381851102,3,Self teaching Java,self.java -6,1381847732,8,Best place to assist in self teaching Java,self.java -15,1381830613,11,Why is my code running significantly faster on an older machine,self.java -0,1381821909,5,PrimeFaces 4 0 1 released,blog.primefaces.org -2,1381819235,13,Help with error Could not open create prefs root node Software JavaSoft Prefs,self.java -5,1381810232,18,What does the Java certification exam cover and would 2 classes on it be enough to pass it,self.java -0,1381806420,7,Error in my queue simulator Need Help,self.java -0,1381788380,4,some help if possible,self.java -2,1381784768,14,How are you designing your Java web architecture to include more client side libraries,self.java -21,1381782732,9,The Resurgence of Apache and the Rise of Eclipse,insightfullogic.com -2,1381762813,10,Just started learning java need help with classes and methods,self.java -3,1381762365,13,In a Maven project how can I configure JUnit to show error traces,self.java -27,1381734484,12,Hitting 400M TPS between threads in Java using a lock free queue,psy-lob-saw.blogspot.com -2,1381732426,7,Issues with multi project maven Java project,self.java -33,1381723871,12,What kinds of skills does a Java programmer need for a job,self.java -1,1381698184,3,Why the hate,self.java -4,1381695662,11,What learning sources print or online best cover idiomatic Java practices,self.java -0,1381673044,3,Need some help,self.java -8,1381666819,4,Java update mirror broken,self.java -2,1381655660,20,Would like to learn about a practical implementation of CDI Context and dependency injection in Java EE in real life,self.java -1,1381652620,15,Changing the displayed value of a button after clicking on it from a java bean,self.java -0,1381619947,23,Fun with genetic algorithms image generation using GA inspired by the Alsing Mona Lisa blog post r java tell me what you think,self.java -24,1381616700,5,Is Java a hard language,self.java -0,1381608131,8,Using the Very Unsupported Java Flight Recorder API,hirt.se -8,1381604087,14,JBoss 8 next State of the Union starring Wildfly it s new ModularServiceContainer heart,reddit.com -0,1381594217,13,Help on a small piece of code question Not sure if right place,self.java -0,1381579715,15,Remember the good old days when we were newbies Can I combine Java and SQL,stackoverflow.com -2,1381536522,10,Beginner Java student looking to branch out into Android development,self.java -2,1381527427,9,Batch Jobs and CDI Quartz ExecutorService etc And BatchEE,kildeen.com -48,1381514332,6,How Java Programmers Feel in 2013,discursive.com -1,1381467953,9,Can anyone help me make this method more efficient,self.java -0,1381465481,19,Are there other options than using nested ifs or switch case for evaluating a number and returning a string,self.java -0,1381463922,11,What do I do with the class file I ve created,self.java -0,1381450057,3,Java homework help,self.java -50,1381420030,13,10 Reasons Why Java Rocks More Than Ever Part 2 The Core API,zeroturnaround.com -0,1381416736,6,Is Java JNI in JEE possible,self.java -5,1381416564,9,Will Java 8 IO input streams feature boolean isClosed,self.java -11,1381391165,7,CodeCache is full Compiler has been disabled,blogs.atlassian.com -0,1381366319,40,Hi Me and a friend over the summer decided to open up a Youtube channel teaching people how to code This is my first Java tutorial mind giving me some tips om how to improve myself Than s so much,youtube.com -0,1381355378,10,Hey new to Java i have a question about Threads,self.java -0,1381352498,13,Just started university thrown in at the deep end with Java Crapping myself,self.java -12,1381345413,21,Ask r Java What Java Profilers do you use Is there any text books on techniques or advanced tools and methods,self.java -1,1381339752,3,OutOfMemoryError or Swapping,self.java -108,1381336777,9,If Java Is Dying It Sure Looks Awfully Healthy,drdobbs.com -0,1381335992,10,Can anyone figure out the encryption algorithm my encrypter uses,self.java -16,1381331105,5,Java Auto Unboxing Gotcha Beware,tech.pro -3,1381329582,9,Why JSF 2 0 Hides Exceptions When Using AJAX,beyondjava.net -0,1381316868,7,How to remove this Java from Firefox,imgur.com -0,1381312618,3,Change origin oval,self.java -0,1381304833,11,I want to delete string and ints from a text file,self.java -6,1381290299,7,Enterprise App Multiple WAR vs single WAR,self.java -12,1381262226,8,Goodbye Redeployment spring loaded a free jrebel alternative,babdev.blogspot.co.at -5,1381254387,7,Can someone please explain Logging to me,self.java -10,1381241259,5,How relevant are application server,self.java -36,1381232748,12,sun misc Unsafe could migrate to a public API in Java 9,mail.openjdk.java.net -3,1381215529,13,Is It Time For Semantic HTML 5 For JSF In Java EE 8,adam-bien.com -4,1381206082,14,Install Oracle Java 7 in Ubuntu via PPA Repository Web Upd8 Ubuntu Linux blog,webupd8.org -0,1381199071,6,Options for wrapping 3rd party classes,self.java -2,1381198549,2,MJPEG streaming,self.java -39,1381198022,11,Well I guess LGA arrival departures does Java and Windows 7,i.imgur.com -0,1381189956,5,Output to a text file,self.java -0,1381182943,10,Beginner checkup 2 Any critique for this code Completed homework,self.java -0,1381176147,8,I have a question about a compareTo method,self.java -0,1381172855,19,Is there a way to list variables that are in scope based on the current highlighted line in Eclipse,self.java -0,1381171902,10,How to use Javadoc Comments in Java program for Documentation,youtube.com -0,1381159884,11,Executing a exe or w e linux uses from a jar,self.java -0,1381146941,4,Result is not correct,self.java -68,1381131840,14,10 Reasons Why Java Now Rocks More Than Ever Part 1 The Java Compiler,zeroturnaround.com -10,1381104815,11,What is the significance of the words Big Java Late Objects,self.java -0,1381102992,6,Is downloadjava us a malware site,self.java -0,1381074769,9,How to query Environment Variables through a Java Program,youtube.com -13,1381065482,9,JavaFX has no accessibility support What are my options,self.java -0,1381054143,10,How to Install Java JDK and Set Environment Variables Path,youtube.com -6,1381036235,8,How can I improve this nonblocking binary semaphore,self.java -1,1381020686,3,double a5 10,self.java -4,1381020242,3,New to this,self.java -0,1381000566,16,The method paintComponent Graphics in the type JComponent is not applicable for the arguments Graphics Error,self.java -13,1380998374,13,OmniFaces 1 6 1 and why CDI doesn t work well in EARs,balusc.blogspot.com -0,1380983785,5,Maven is broken by design,blog.ltgt.net -31,1380977309,5,Huge collection of Spring resources,springframework.zeef.com -0,1380934036,16,Iterate an array replace int with first number that is not equal to that int Help,self.java -6,1380923149,9,PrimeFaces 4 released What s new with PrimeFaces Push,jfarcand.wordpress.com -6,1380923044,4,PrimeFaces 4 0 released,blog.primefaces.org -0,1380915878,10,Is there a open source discussion platform implemented in java,self.java -0,1380909175,14,Is there any tool that moves multiple java files into one big java file,self.java -0,1380897400,5,Kick off the programming game,self.java -0,1380880132,5,Jsoup cant Login on Page,self.java -0,1380844541,4,Login in https page,self.java -0,1380840629,5,Help with a simple code,self.java -5,1380836931,13,Is there a modeling studio that can export animations as working Java code,self.java -9,1380836354,10,Reflections on JavaOne 2013 by the NetBeans Community Part 1,netbeans.dzone.com -14,1380829936,9,Friendly reminder about Integer int nulls and autoboxing unboxing,self.java -0,1380819621,13,How can I mimic Java 7 s switching on strings in Java 6,self.java -0,1380817088,13,Stack Overflow is a question and answer site for professional and enthusiast programmers,stackoverflow.com -0,1380805795,19,A question for Java developers If life is like a Java program then what are emotions dreams sexuality ect,self.java -5,1380786323,8,Unable to combine pipeline with transaction using Jedis,self.java -0,1380758759,3,How to Subtract,self.java -6,1380747743,14,Can JavaFX Scene Builder generate a UI wherein panes are repopulated with different components,self.java -0,1380738243,4,Problem using Clip class,self.java -0,1380737516,2,Need suggestion,self.java -0,1380728580,15,Can anyone help me with a code tiny error I think just newish to Java,self.java -39,1380703364,8,Devoxx 2012 made all 180 presentations freely available,parleys.com -0,1380693016,5,Need help with program ASAP,self.java -0,1380688602,5,Learning Java Looking for help,self.java -15,1380663769,10,can i learn java the same way i learned python,self.java -0,1380648965,15,mvn install install file Dfile x jar failing to read the jar s pom xml,self.java -24,1380642615,12,The la4j Linear Algebra for Java 0 4 5 has been released,la4j.blogspot.ru -0,1380624007,4,Need help with methods,self.java -0,1380623187,6,Java2Scala Converts Java code to Scala,java2scala.in -7,1380594221,6,How to begin working with frameworks,self.java -5,1380579367,4,JavaOne 2013 trip report,branchandbound.net -0,1380577807,8,Why does my program print out even numbers,self.java -0,1380574050,9,How to solve this in Java using for Loops,i.imgur.com -39,1380570239,16,If there is one Java library that you need to start using today this is it,projectlombok.org -0,1380554676,14,How do I check if an array has the same value as another array,self.java -0,1380524997,20,Just finished a school project and would like some feedback Primarily deals with updating a 2D Array with random ints,self.java -0,1380501003,4,need 3d programming help,self.java -0,1380497098,9,Brand new to java Looking for ideas for class,self.java -46,1380488210,10,What is the best open source code you have seen,self.java -13,1380481938,7,Best place and ways to learn java,self.java -0,1380469953,11,I am seriously lost with my if else lab Please help,self.java -0,1380457371,9,Go Agile Java Development with Spring to Maximize ROI,javascriptstyle.com -0,1380400916,9,HIRING a Java Team Leader and 2 Java Developers,self.java -0,1380397112,15,In which order should Java be learnt and what excercises for Java do you recommend,self.java -0,1380395992,4,I Need Some Advice,self.java -0,1380395008,4,Java Meme Wrapper Class,i.imgur.com -0,1380391137,7,Java Beginner Project Looking for a partner,self.java -0,1380387995,2,Textbook help,self.java -28,1380373481,7,Eclipse 4 3 SR1 again silently released,jdevelopment.nl -0,1380349215,15,Trying to place 2 values on an array border that aren t on the corners,self.java -0,1380313557,4,help with simple error,self.java -4,1380309618,5,Definding message structures in Java,self.java -10,1380303511,14,Somewhat fresh to Online Java trying to expand my portfolios Would love some ideas,self.java -16,1380297383,4,Java to Scala converter,javatoscala.com -2,1380259486,11,Just released Firebird JDBC driver Jaybird 2 2 4 SNAPSHOT version,firebirdnews.org -3,1380259032,4,Java Video Tutorial Ideas,self.java -0,1380236638,4,Help out a Newbie,self.java -0,1380235343,10,Looking for advice on how to improve my program code,self.java -0,1380227748,5,Looking for Java collections practice,self.java -0,1380219352,8,Beginning java programming What are some good resources,self.java -0,1380208918,9,New subreddits about Reactive Programming and Dataflow in general,self.java -18,1380205995,8,Hunting Memory Leaks in Java Deciphering the OutOfMemoryError,toptal.com -0,1380203989,5,Help configuring checkstyle Maven plugin,self.java -0,1380197766,7,Silly question but what is in java,self.java -0,1380112531,12,Vice president of engineering at Twitter talks about Java and the jvm,wired.com -53,1380112452,6,Java8 The Good Parts JavaOne 2013,java.dzone.com -5,1380110691,8,Diving into the unknown the JEUS application server,arjan-tijms.blogspot.com -0,1380089322,7,One more error Pretty sure Help please,self.java -0,1380088525,3,Debugging help please,self.java -0,1380072086,3,Anagram Java Program,self.java -0,1380067153,17,Beginner checkup Any advice for this completed code Just some things I had to do for homework,self.java -0,1380064212,10,Null pointer Exception while trying to sort an class array,self.java -6,1380062203,8,Java Comparable consistent with equals reversible SortedSet related,self.java -0,1380051910,5,AP Computer Science Test help,self.java -42,1380050419,8,12 Things Java Developers Should Know About Scala,alvinalexander.com -6,1380047849,7,The Java Fluent API Designer Crash Course,tech.pro -0,1380046062,23,If you re wondering why astroturfers spam r java lately click on Oracle s price list and search for Java SE Advanced PDF,oracle.com -15,1380044250,5,GPU Acceleration Coming to Java,blogs.nvidia.com -1,1380035012,8,How to Write Your Own Java Scala Debugger,takipiblog.com -6,1380033183,9,Project Avatar ServerSide JS on JVM is Open Source,blogs.oracle.com -0,1380031745,22,How can I Xlint most of my code in a Maven project while ignoring certain generated java code e g from Thrift,self.java -34,1380031742,8,The HotSpot VM is Removing the Permanent Generation,openjdk.java.net -0,1380028519,8,Build and Parse ISO Message using JPOS library,zeeshanakhter.com -0,1380023941,10,Building Modern Web Sites A Story of Scalability and Availability,infoq.com -26,1379988507,14,I think I have a bad Data Structures teacher Should I drop the course,self.java -0,1379979584,10,Java Exploits Seen as Huge Menace So Far This Year,self.java -3,1379975388,3,Alternatives to GWT,self.java -0,1379967023,11,I got this message the other day what does it mean,self.java -5,1379954180,8,Low Overhead Method Profiling with Java Mission Control,hirt.se -3,1379953985,5,Native Memory Tracking in 7u40,hirt.se -16,1379930773,4,JavaOne 2013 NetBeans Day,blog.idrsolutions.com -6,1379920601,9,Diving into Cache Coherency and it s performance implications,psy-lob-saw.blogspot.com -0,1379895100,21,How can I convert from an integer to a long but treat the integer as if it s an unsigned value,self.java -0,1379894041,5,Begginner Bank Account program question,self.java -0,1379888744,2,overloading question,self.java -0,1379881115,5,Help me understand exception handling,self.java -7,1379826195,12,How often are little wrapper methods like this used for method overloading,self.java -0,1379823969,3,Problem Comparing Integers,self.java -5,1379810974,6,Simple Boolean Expression Manipulation in Java,bpodgursky.wordpress.com -1,1379803223,7,Injecting spring beans into non managed objects,kubrynski.com -2,1379789985,13,Processing on Disorient s Pyramid at Burning Man x post from r processing,davidshimel.com -8,1379788370,9,Session replication clustering failover with Tomcat Part 1 Overview,tandraschko.blogspot.se -5,1379723066,4,Redditors going to JavaOne,self.java -1,1379690385,5,Rebuilding a Linux Java App,self.java -0,1379676826,4,Design Patterns in Java,latest-tutorial.pakifreelancer.com -6,1379676180,6,NetBeans 7 4 RC1 Now Available,netbeans.org -42,1379653527,6,State of the Lambda final version,cr.openjdk.java.net -3,1379628468,8,First RoboVM app accepted on iOS App Store,badlogicgames.com -0,1379624303,18,How can I save and send a java file to someone who plans on running it on cmd,self.java -11,1379623261,8,OmniFaces goes CDI with its 1 6 release,balusc.blogspot.com -0,1379619871,8,Java 8 What s New Series Milestone 4,musingsofameaneringmind.wordpress.com -2,1379612277,12,How to implement feature toggles for web applications deployed on multiple servers,self.java -0,1379608866,12,Dependency Injection Is it possible to inject a private static final field,self.java -0,1379607817,18,Why am I getting a NullPointerException when I try to write an object to a Mockito mocked ObjectOutputStream,self.java -4,1379598766,8,TmaxSoft JEUS 8 Now Java EE 7 Compatible,blogs.oracle.com -46,1379578957,4,Introduction to Java multitenancy,ibm.com -0,1379578644,6,How do I make a class,self.java -25,1379556640,10,IO trace generation in java experimenting with sun misc IoTrace,axtaxt.wordpress.com -0,1379554006,6,Help with rock paper scissors game,self.java -0,1379542582,3,Change Calculator help,self.java -0,1379535670,11,Not familiar with the problem that just started happening please help,self.java -0,1379513625,11,How to determine active users sessions in a Java Web Application,hubberspot.com -0,1379507664,19,New to java programming I can t get this palindrome recognition program to work Can you offer some help,self.java -48,1379501022,11,Chart showing lines of code vs time spent reading and editing,fagblogg.mesan.no -0,1379484421,13,Looking for tutorials for basic Java and libGDX individually on Unix no IDE,self.java -0,1379466305,4,I really need help,self.java -12,1379464485,13,Arjan Tijms and Bauke Scholtz BalusC Talk About OmniFaces and Building zeef com,jsfcentral.com -0,1379460534,3,Java vs NodeJS,self.java -40,1379458075,9,Beginnings of raw4j the Reddit API Wrapper for Java,self.java -4,1379446285,5,Patch management of my application,self.java -0,1379445671,3,First time Java,self.java -0,1379439784,9,Java 8 whats new series milestone 2 and 3,musingsofameaneringmind.wordpress.com -0,1379423537,6,How to use Map in Java,latest-tutorial.pakifreelancer.com -26,1379372791,11,A modern JIRA instance finally up amp running for the JDK,mail.openjdk.java.net -0,1379354141,4,RDRAND library in Java,software.intel.com -0,1379352583,13,Do any free collections libraries offer a non blocking callback style semaphore implementation,self.java -24,1379348147,7,RESTX a fast lightweight Java REST framework,restx.io -0,1379342078,5,Good Tutorial for some beginners,self.java -0,1379326591,8,Java 8 What s new series Milestone 1,musingsofameaneringmind.wordpress.com -9,1379311409,7,Develop iOS Apps in Java with RoboVM,robovm.org -59,1379275568,5,Filmed talks from JavaZone 2013,vimeo.com -2,1379271948,8,Struktur A skeleton starter template for JavaFX applications,bitbucket.org -8,1379231859,5,JSF 2 2 Flow Calls,en.kodcu.com -0,1379227992,9,How can I portable spawn a new JVM instance,self.java -6,1379182573,4,Mavenizing the Flex SDK,anthonywhitford.blogspot.com -12,1379122377,15,TurnItIn originality checker catches academic plagiarists by indexing the web also has a Java SDK,turnitin.com -0,1379110418,8,Why isn t my program returning a result,self.java -1,1379107956,9,Windows ruins everything a tale of a simple bug,blog.existentialize.com -0,1379106758,40,Need help implementing my Pseudo Code So basically I have 3 arrays size n that s suppose to check if there is a triple which adds up to zero from different arrays Returns true if triple exists and false otherwise,self.java -3,1379098412,10,The Hidden Java EE 7 Gem Lambdas With JDK 7,adam-bien.com -51,1379080832,8,The Trie A Neglected Data Structure in Java,toptal.com -52,1379034404,11,How does java util Random work and how good is it,javamex.com -6,1379027332,7,Google error prone compile time static analysis,code.google.com -5,1379024422,7,Why floor round and ceil return double,self.java -1,1378958331,6,JRE 6 class in JRE 5,self.java -40,1378946391,7,Why doesn t Java have more convenience,self.java -0,1378944565,10,Where and why might my application be using reference queues,self.java -0,1378939127,13,Anyone recommend a good book to learn about webservices from a Java perspective,self.java -0,1378938118,3,Simple Name Chooser,self.java -7,1378923867,7,Remote or Local for Data Access Layer,self.java -0,1378912422,9,A question about constructors and how to use them,self.java -2,1378905143,21,I need help with this little game I am not sure why it doesn t run Anyone able to help me,self.java -11,1378883703,4,Java application memory use,self.java -4,1378858791,5,Web development with Java redux,self.java -0,1378857806,14,How do I add the ability for the user to type in the window,self.java -52,1378853713,4,Java to Scala cheatsheet,techblog.realestate.com.au -0,1378836195,9,I want to learn java where do i beggin,self.java -0,1378835484,3,Is Java dying,self.java -5,1378834954,4,Need a programming idea,self.java -3,1378823250,11,Why is mvn generate sources ignoring my custom generate sources executions,self.java -0,1378806043,12,Using an image as a JButton and displaying an image in GUI,self.java -0,1378791215,5,someone wanna help me out,self.java -35,1378782251,5,Java 8 Enters Developer Preview,mreinhold.org -0,1378779231,9,How do I convert XML to HTML using java,self.java -0,1378774594,4,Can someone help me,self.java -24,1378774079,3,Very beginner question,self.java -7,1378756113,7,How to do validation the right way,self.java -0,1378739366,18,I m helping run a Spring Framework conference in London Spring Exchange What would you like to see,self.java -0,1378694624,8,Best way to store data in plain text,self.java -0,1378679179,2,Formating StringBuffer,self.java -0,1378663326,10,I ve got a question for all you Java buffs,self.java -0,1378544338,3,Help with BigInteger,self.java -19,1378522020,12,Nashorn Aiming at Taking Over Config Files Build Scripts and the Bash,youtube.com -0,1378507114,7,A Reddit API Wrapper using Jersey Client,self.java -0,1378480753,3,Help with Recursion,self.java -10,1378480221,7,Scaling Play to Thousands of Concurrent Requests,toptal.com -0,1378429717,3,Multiple AlphaComposite sources,self.java -13,1378405800,13,Simple CRUD Web Application PrimeFaces 3 5 EJB 3 1 JPA Maven SQL,simtay.com -0,1378400543,7,Need help with creating a search function,self.java -5,1378386021,17,What are some good modern resources that explain how to manage organize deploy a large JavaEE project,self.java -7,1378384710,27,7 years of Ruby on Rails thinking of picking up Java What type of project can I work on to prove that I m a good candidate,self.java -4,1378383947,7,Java 8 working with Eclipse or Netbeans,self.java -0,1378365484,8,Having issue finding jdk no problem finding jre,self.java -6,1378360579,7,Jackrabbit Oak the next generation content repository,jackrabbit.apache.org -1,1378327929,29,Can someone please help me figure out what s going on I m one of the only people who can t access this applet required for my Government course,self.java -11,1378311017,9,How to Generate Printable Documents from Java Web Applications,blog.smartbear.com -4,1378306220,8,Installing JGRASP to use for a Java Class,self.java -7,1378304328,5,New Fragment component in PrimeFaces,blog.primefaces.org -0,1378303382,9,Implementing Hexagonal Architectures with the Life Preserver and Spring,skillsmatter.com -4,1378293986,7,FacesMessage severity differences between Mojarra and MyFaces,javaevangelist.blogspot.com -9,1378287696,4,Better I18n in Java,blog.efftinge.de -0,1378265511,4,Sortable HTML table help,self.java -0,1378265095,6,I have a question about threads,self.java -0,1378230101,2,Java Help,self.java -0,1378154771,15,Help with code that I am struggling with Pixel needs to create a square outline,self.java -2,1378147027,9,Unable to create connection pool with SSL on GlassFish,self.java -30,1378140121,3,Graph algorithm libraries,self.java -0,1378138667,4,Question Non Focused Hotkeys,self.java -0,1378059378,19,Swing Why do the JPanel s getWidth and getHeight functions not reflect any changes in the panel s dimensions,self.java -0,1378058718,6,Need help with Java Robot class,self.java -13,1378046176,12,Two nearly identical lines of code and only of them is working,self.java -1,1378004082,14,JAVAW EXE is taking up 8GB of Ram How do I find out why,self.java -0,1377996270,4,Whats wrong with this,self.java -0,1377987657,9,Upload Excel or CSV using RESTEasy and Data Pipeline,northconcepts.com -12,1377984079,14,Why would I be seeing the ClassLoader method loadClass show up in my profiling,self.java -0,1377913413,24,What is the best place to learn Java online I really need practice but I want something a little more hand holdy than JavaRanch,self.java -27,1377909689,15,Open or not source projects that an entry level dev should be able to understand,self.java -4,1377906571,6,How to Inject Shellcode from Java,blog.strategiccyber.com -6,1377904791,5,Inversion of Control IoC Overview,tapestry.apache.org -3,1377903007,7,Calling Defender Methods from within a Lambda,self.java -0,1377900779,9,What are some incredibly helpful sights to learn Java,self.java -0,1377899207,6,casting a subclass object as superclass,self.java -11,1377886996,18,Can Maven handle different dependency versions in components of an application or must they all be the same,self.java -3,1377884791,12,How do I add a maven dependency hosted on a git URL,self.java -4,1377860816,9,Java security will be in the spotlight at JavaOne,infoworld.com -1,1377832542,9,Has anyone used Filters with Java using Twitters Finagle,self.java -0,1377829483,2,What program,self.java -0,1377826426,11,How do I make a moving pixel create a square outline,self.java -0,1377810682,5,Invitation to Green Programmer Survey,self.java -8,1377807743,4,False Sharing in Java,mechanical-sympathy.blogspot.com -0,1377784001,13,Web sites from a didactic point of view to live sites on host,self.java -8,1377780423,10,Best features of eclipse that some might not know about,self.java -185,1377770976,12,Come on Eclipse You should be able to figure this one out,i.imgur.com -0,1377762381,10,Good Serialization Libraries With Small Overhead in terms of Size,self.java -10,1377756807,9,10 Common Mistakes Java Developers Make when Writing SQL,blog.jooq.org -2,1377747729,14,Best method for waiting on JavaFX2 WebEngine to load before executing my JavaScript commands,self.java -0,1377714946,10,What is Map lt Character Character gt for a Map,self.java -0,1377713487,12,Split String every nth char or the first occurrence of a period,self.java -6,1377713086,5,Multi threading Swing GUI Updates,self.java -0,1377697673,26,Why do you have to type Class class to get a class s class You don t type 5 int to get an int s int,self.java -5,1377679626,6,Getting Started with HotSpot and OpenJDK,infoq.com -3,1377677264,9,Client side validation framework for JSF in PrimeFaces 4,blog.primefaces.org -0,1377672314,10,Writing a Java Regular Expression Without Reading the ing Manual,java.dzone.com -2,1377655547,5,Data Pipeline 2 3 Released,self.java -0,1377653843,18,What are some good tutorials to learn Java and XML I would like to create an android OS,self.java -5,1377640487,4,Pointer to JSF resources,self.java -0,1377633019,12,Any Midwest Java developers out there My Indy based company is hiring,self.java -4,1377631427,9,Java SE 8 Early Draft Review Specification DRAFT 2,cr.openjdk.java.net -21,1377617238,7,Will lambdas in Java 8 reduce boilerplate,self.java -0,1377606327,7,Java 6 exploit found in the wild,theinquirer.net -0,1377600729,3,Experiences with CloudBees,self.java -1,1377598728,19,APIMiner 2 0 IDE version released JavaDoc pages for Android Studio and Eclipse ADT instrumented with source code examples,java.labsoft.dcc.ufmg.br -8,1377597091,7,Hackers Target Java 6 With Security Exploits,informationweek.com -4,1377583389,8,OpenMOLE a workflow engine to leverage parallel execution,openmole.org -0,1377546152,7,Exciting Workshops on the Skills421 Training Courses,skills421.wordpress.com -2,1377506081,10,HSA targets native parallel execution in Java VMs by 2015,techcentral.ie -41,1377499127,4,Java Algorithms and Clients,algs4.cs.princeton.edu -0,1377455451,7,Jave J2EE Tutorials with Example on guruzon,guruzon.com -0,1377453355,17,JAVA path setting help I already followed all of the online instructions and I still need help,self.java -0,1377440911,7,Needed help in making a java program,self.java -13,1377436078,5,Jasypt 1 9 1 Released,jasypt.org -0,1377436002,6,tynamo federatedaccounts 0 4 3 released,apache-tapestry-mailing-list-archives.1045711.n5.nabble.com -1,1377382462,11,New programmer with minimal Python programming experience where do I start,self.java -0,1377369535,6,Jetty 9 0 5 v20130815 Released,dev.eclipse.org -15,1377367985,6,java Money and Currency JSR 354,github.com -0,1377352491,12,Programming Eclipse in Real Time using an Groovy based Eclipse Plug in,blog.diniscruz.com -0,1377330255,8,What s a really good crash course review,self.java -0,1377289798,6,Help with public boolean equals method,self.java -33,1377286839,9,More Effective Java With Google s Joshua Bloch 2008,oracle.com -28,1377267760,14,Java 7 Sockets Direct Protocol Write Once Run Everywhere and Run Some Places Blazingly,infoq.com -0,1377267566,8,Lambdas Myths and Mistakes by Richard Warburton Podcast,skillsmatter.com -0,1377261297,8,Importing Data From Solr To Postgres With Scala,garysieling.com -12,1377237481,6,Commons Collections 4 0 alpha1 released,mail-archives.apache.org -0,1377237420,8,Apache Mavibot 1 0 0 M1 MVCC BTree,mail-archives.apache.org -0,1377237255,6,Maven Surefire Plugin 2 16 Released,maven.40175.n5.nabble.com -4,1377237174,8,Recordinality cardinality estimation sketch with distinct value sampling,github.com -17,1377236454,11,gitBlit pure Java stack for managing viewing and serving Git repositories,gitblit.com -0,1377211010,14,Can an object be created that is a member of a dynamicly chosen class,self.java -12,1377205762,6,Good concurrent collections library for Java,self.java -0,1377199860,9,Noob Trying to achieve this functionality with Java programming,self.java -9,1377196066,13,How can I get an array of all the subclasses of class X,self.java -1,1377195663,10,Maven YAML plugin allows you to write POM in YAML,github.com -6,1377185441,6,Advanced Topics in OOP and Java,self.java -13,1377171519,10,String intern in Java 6 7 and 8 string pooling,java-performance.info -0,1377170822,7,Java devs among best paid in industry,jaxenter.com -27,1377169519,10,How do you deal with the logging mess with Maven,self.java -0,1377163613,8,Useful Eclipse Plugin to create J2EE Base Templates,3pintech.com -0,1377154125,5,java exe is a virus,i.imgur.com -9,1377136250,10,Decided to buckle down and learn Java What version question,self.java -0,1377099540,12,The Big Data Company Blog Hadoop vs Java Batch Processing JSR 352,blog.etapix.com -77,1377077576,7,10 Subtle Best Practices when Coding Java,java.dzone.com -30,1377068598,13,Stas s blog The most complete list of XX options for Java JVM,stas-blogspot.blogspot.co.il -3,1377060729,11,A set of high quality controls and add ons for JavaFX,jfxtras.org -0,1377047390,12,For anyone who needs help with renameTo the File API is terrible,self.java -3,1377043206,20,Am I reinventing the wheel here Are there any libraries for auto forwarding methods calls to other threads freely available,self.java -4,1377038549,6,Java EE Servlets Help Introduction Guide,self.java -0,1377032925,9,Can anyone help me out in regards to treads,self.java -18,1377029959,7,What exactly is the point of interfaces,self.java -12,1376981064,4,Help me understand JavaFX,self.java -4,1376978313,5,Best Android game development tutorial,self.java -0,1376958279,6,Help out on a homework question,self.java -0,1376929336,12,Java 101 The next generation Java concurrency without the pain Part 2,javaworld.com -5,1376891611,2,Utilizing SHA3,akoskm.github.io -0,1376860557,16,What code base should I assign permissions in my policy file to get JUnit to work,self.java -0,1376839402,7,Netbeans won t load on Peppermint Linux,self.java -10,1376800603,10,Getting Eclipse Kepler 4 3 to work on a Mac,trevmex.com -6,1376779371,7,JAVA JVM Restart requirements On code changes,self.java -0,1376766422,3,Trouble in eclipse,self.java -0,1376766357,13,Under what privileges does code inside a thread s uncaught exception handler run,self.java -2,1376737511,9,Using Selenium WebDriver to select JSF PrimeFaces selectOneMenu options,javathinking.com -58,1376729685,6,New Tweets per second record 140k,blog.twitter.com -10,1376720351,32,I am interested in using Java for graphing what is the best way to go about this I have some knowledge already but could really use a nudge in the right direction,self.java -0,1376706194,4,ScrollBar not working Help,self.java -0,1376697063,19,Giving an url that redirected is a url with spaces to Jsoup leads to an error How resolve this,self.java -4,1376691655,9,Any alternatives to ROME for parsing RSS Atom feeds,self.java -3,1376687945,6,Learning Java Book or online tutorial,self.java -17,1376661912,6,Type safe Hibernate query builder JPA,torpedoquery.org -0,1376653919,3,Mocking a value,self.java -22,1376644171,5,Spring Data REST in Action,javacodegeeks.com -0,1376633046,9,Is double checked locking by checking HashMap get safe,self.java -0,1376624466,17,Lowes com craps out at checkout every goddamn time guess I ll spend 700 at home depot,self.java -18,1376602217,11,Google confirms Java and OpenSSL crypto PRNG on Android are broken,android-developers.blogspot.com.au -12,1376588524,4,Understanding complex system code,self.java -18,1376588329,3,Quintessential Java Book,self.java -1,1376585208,20,How can I portable use a whitelist based approach for my custom SecurityManager if different JVMs rely upon different resources,self.java -5,1376582086,12,Can mvn install packages globally e g command line tools like nutch,self.java -40,1376574093,12,5 Things You Didn t Know About Synchronization in Java and Scala,takipiblog.com -0,1376524622,12,Need help debugging this code Can t figure out what s wrong,self.java -20,1376518565,6,Spring Boot Simplifying Spring for Everyone,blog.springsource.org -6,1376498705,13,I am writing an API for search and rating links on popular trackersites,self.java -7,1376474926,4,15 Java Enum Questions,java67.blogspot.com -0,1376451015,19,I m having trouble installing the Java Plugin on my browser and I can t use any Java applets,self.java -0,1376428773,10,LMAX Disruptor backed Thrift Server implementation half sync half async,github.com -0,1376419859,3,anjlab tapestry liquibase,github.com -0,1376419210,9,DictoMaton dictionaries that are stored in finite state automata,github.com -40,1376417534,15,So I visited Oracle a couple of days ago and wanted to share my experience,self.java -1,1376398133,9,Cloud development with Google App Engine and RedHat OpenShift,self.java -12,1376394716,6,Eclipse Preferences You Need to Know,eclipsesource.com -89,1376389234,10,Java tops C as most popular language in developer index,infoworld.com -7,1376356914,5,A RESTesque Java Web Server,dkuntz2.com -3,1376340048,14,Duke s Choice Community Awards voting ends today Vote for the most innovative product,java.net -0,1376335667,7,So You Think You Can Do Messaging,java.dzone.com -0,1376324491,16,Oracle and ARM to tweak Java Customizing Java SE and Java EE for ARM multicore systems,javaworld.com -0,1376318876,10,Looking for weekly Tutor for a programming II class java,self.java -41,1376304835,9,Microsoft adds Java to its Windows Azure cloud service,computerworld.com -19,1376259825,7,JSR 356 Java API for Websocket JEE7,programmingforliving.com -0,1376259513,6,What is Headless mode in Java,blog.idrsolutions.com -8,1376258533,8,Testing JASPIC implementations using Arquillian and full wars,arjan-tijms.blogspot.com -0,1376252396,7,Book to properly understand learn basic principles,self.java -0,1376233118,5,Beginner Need help in Alice,self.java -7,1376227446,11,Oracle Java Technology Evangelist Simon Ritter discusses Lambdas and Raspberry Pi,jaxlondonblog.tumblr.com -2,1376192919,12,How do I clear a JTextField in a JFrame with a JButton,self.java -10,1376131337,5,JSF 2 2 View Action,hantsy.blogspot.com -4,1376112439,3,Riojug Project Kenai,java.net -0,1376074090,6,Apologies if repost Request for aid,self.java -1,1376069223,8,The embedded EJB container in WebLogic Server 12c,vineetreynolds.blogspot.com -0,1376067840,3,Unmarshalling in Java,self.java -19,1376037016,9,A help for you to create awesome overengineered classes,projects.haykranen.nl -0,1376003315,5,Which IDE do you use,self.java -8,1375997936,6,JSF 2 2 HTML5 friendly markup,jsflive.wordpress.com -26,1375980859,8,Date and Time Manipulation in Java Using JodaTime,blog.smartbear.com -0,1375979173,3,Eclipse vs Netbeans,self.java -1,1375974555,6,JMS listener with WebSphere 7 0,self.java -1,1375972228,10,Can a generic Interface be extended by another generic Interface,self.java -0,1375968413,7,Java 1 6 0 SDK Major Bug,self.java -32,1375967702,8,I m hooked on test driven development TDD,endyourif.com -0,1375963681,11,Awesome location for a Software conference MEDIT Symposium Software Conference 2013,blog.mylaensys.com -0,1375957525,9,Java faces tough climb to catch up to Net,infoworld.com -2,1375947970,11,I think I found a bug in the standard library TreeSet,self.java -25,1375936147,4,Does anyone use NetBeans,self.java -0,1375916892,4,Eclipse ECF for Indigo,self.java -0,1375915996,2,NEED HELP,self.java -0,1375910217,9,Recommend a book to learn java from command line,self.java -0,1375885308,3,A little trick,self.java -0,1375854063,5,Help needed Simple I O,self.java -11,1375836584,8,Apache Tomcat 8 0 0 RC1 alpha Available,tomcatexpert.com -3,1375831909,8,Best FOSS OS to run JVM apps on,self.java -28,1375826408,7,OracleVoice There s Java In Your Tweets,forbes.com -0,1375823036,42,Looking into when to use enums this quote reminded me of simpler times You should use enum types any time you need to represent a fixed set of constants That includes natural enum types such as the planets in our solar system,docs.oracle.com -0,1375819054,10,Jetty Release 7 6 12 v20130726 8 1 12 v20130726,jetty.4.x6.nabble.com -2,1375818938,11,Priha an implementation of the JSR 170 Java Content Repository API,priha.org -0,1375803136,5,Any good Google Guava resources,self.java -0,1375790812,14,krasa jaxb tools maven plugin for generating JSR 303 Bean Validation Annotations from XSD,github.com -17,1375777387,8,The fallacy of the NO OP memory barrier,psy-lob-saw.blogspot.com -0,1375767127,5,Spring Data Babbage RC1 released,springsource.org -24,1375755296,4,Method calls in constructors,self.java -10,1375747129,17,Coding Standards Question For enumerations is it bad to make fields public instead of creating getter methods,self.java -0,1375726902,4,Increase Java Serialization Performance,drdobbs.com -3,1375690765,8,Java program to convert location in Lat Long,javaroots.com -0,1375675671,4,Business Delegate Design Pattern,youtube.com -0,1375622456,9,JSF CDI Tip of the Day PostConstruct Lifecycle Interceptor,javaevangelist.blogspot.com -17,1375604861,6,ORMs vs SQL The JPA Story,cforcoding.com -13,1375542081,8,Spring Framework 4 0 M2 WebSocket Messaging Architectures,java.dzone.com -18,1375524388,15,swagger maven plugin maven build plugin which helps you generate API document during build phase,github.com -1,1375524241,11,Jetty NPN Next Protocol Negotiation Specification for OpenJDK 7 and greater,github.com -22,1375522660,5,Apache Solr 4 4 released,mail-archives.apache.org -3,1375522606,11,Apache Jackrabbit 2 6 3 released Content Repository JCR 2 0,mail-archives.apache.org -2,1375522297,7,Creating JSF pages with pure Java code,java.dzone.com -0,1375479718,12,Fairly new to Java looking for some help on object arrays GUIs,self.java -0,1375475585,13,JSF Tip Do not put code with side effects in a getter method,weblogs.java.net -64,1375464109,18,Yet another guide on when how to catch exceptions in Java first one to make sense to me,doc.nuxeo.com -0,1375458792,18,Chrome automatically load up site call javaupdateappspot and downloaded something suspicious onto my computer anyone else getting this,self.java -0,1375450291,6,Tess4J Does not read multiple times,self.java -3,1375449186,13,How do I select a string literal from a set of string literals,self.java -0,1375425247,2,Base Patterns,youtube.com -28,1375417199,3,Java Concurrency Animated,sourceforge.net -0,1375414229,6,Covariance with self referential bounded generics,self.java -9,1375394595,4,Getting started with OSGi,self.java -6,1375383692,5,JAX WS SOAP over JMS,biemond.blogspot.de -0,1375370457,6,I need help with my Calculator,self.java -0,1375364788,7,Java Magazine July August 2013 Edition Released,oraclejavamagazine-digital.com -1,1375339709,7,How to highlight invalid components in JSF,blog.oio.de -0,1375339685,2,Design patterns,youtube.com -308,1375313769,11,Caught a funny line in a Java book I was reading,i.imgur.com -2,1375296851,9,Serving multiple images from database as a CSS sprite,balusc.blogspot.com -0,1375295850,19,Can someone explain these practice problems Not Homework just examples I m supposed to already understand for a course,self.java -5,1375232943,10,Naming What s a good general name for this technique,self.java -1,1375220789,10,I m completely new to Java and programming in general,self.java -0,1375219038,7,Fun and easy way to learn Java,self.java -2,1375210668,7,Oracle Java Day at Guadalajara in Mexico,flickr.com -0,1375205222,7,Why Functional Programming in Java is Dangerous,cafe.elharo.com -0,1375195718,5,sviperll task Java multitask library,github.com -62,1375194638,9,10 Common Mistakes Java Developers Make when Writing SQL,blog.jooq.org -0,1375180092,15,I have a habit of clicking random then top all time I found this Heh,imgur.com -10,1375170548,9,Offheapsters Beware Atomicity of Unaligned Memory Access in Java,psy-lob-saw.blogspot.com -0,1375133461,5,Hi guys i need help,self.java -28,1375131887,5,TrieHard a Java Trie Implementation,self.java -0,1375121679,10,Oracle JDBC Driver for DB 12C and Java 7 Out,oracle.com -9,1375117136,12,java Replacing a full ORM JPA Hibernate by a lighter solutionload save,stackoverflow.com -0,1375113855,9,The state of web accessibility in the JavaEE world,blog.akquinet.de -23,1375075752,14,Compute Java Object Memory Footprint at runtime with JAMM Java Agent for Memory Measurements,blog.javabenchmark.org -0,1375064023,5,Java in a few years,self.java -46,1375012133,8,Java 8 Lambdas Default Methods amp Bulk Data,zeroturnaround.com -5,1374998841,6,Two s complement and absolute values,tslamic.wordpress.com -0,1374996030,13,Jaybird 2 2 4 snapshot with basic Java 8 JDBC 4 2 support,firebirdnews.org -5,1374982510,8,Is possible to make fast java desktop applications,self.java -14,1374958419,9,Average rates you ve encountered as an independent consultant,self.java -17,1374931760,8,Was Struts Responsible for Apple s Security Breach,java.dzone.com -0,1374864280,13,Java EE 8 Why all of you are being asked translation from German,translate.google.com -0,1374858595,2,Education point,educationtpoint.blogspot.in -4,1374833666,7,Jato VM What is it s purpose,self.java -3,1374819527,4,Open Map by BBN,self.java -0,1374800896,8,Should be easier comparing against a text file,self.java -0,1374765308,7,Embedding images into e mail with JavaMail,codejava.net -0,1374761151,5,NetBeans 7 4 Beta Released,i-programmer.info -13,1374728688,7,Yet Another Process Library for Java YAPLJ,zeroturnaround.com -7,1374727000,5,Question Regarding Dynamic Class Loading,self.java -4,1374700537,14,Simple and scalable event subscription with STOMP WebSockets SockJS and Spring Framework 4 0,blog.springsource.org -0,1374696260,6,RichFaces 4 3 x Resource Mapping,javaevangelist.blogspot.com -7,1374682330,9,How and When to Use Java s ThreadLocal Object,blog.smartbear.com -9,1374678002,8,What s new in Weblogic 12 1 2,blog.c2b2.co.uk -15,1374645405,13,Lock free queues hitting over 170M ops sec Comparing Inlined and Floating Counters,psy-lob-saw.blogspot.com -4,1374619132,15,What is the simplest program I could write that would tax my cpu the most,self.java -3,1374617790,9,oraconf parse and manipulate Oracle tnsnames files bsd license,self.java -33,1374588010,9,Lambda Expressions Backported to Java 7 6 and 5,blog.orfjackal.net -3,1374583320,5,Glassfish 4 Migrating to Glassfish,blog.c2b2.co.uk -11,1374568487,4,Dependency Badges for Java,versioneye.wordpress.com -8,1374568411,12,London GlassFish User Group September New JMS features in GlassFish 4 0,c2b2.co.uk -5,1374565387,7,Tool for creating UML diagrams from code,self.java -15,1374562800,10,JBoss Tools 4 1 and Developer Studio 7 go GA,community.jboss.org -0,1374512700,9,How do you guys go about looking for libraries,self.java -0,1374501551,4,Why I hate Java,gyazo.com -38,1374499837,7,5 Coding Hacks to Reduce GC Overhead,takipiblog.com -0,1374497928,5,Clojure All The Way Knockout,dimagog.github.io -4,1374487249,13,Oracle SOA Suite 11g Performance Tuning Cookbook a Few Words From the Author,blog.c2b2.co.uk -10,1374481986,6,PrimeFaces Elite 3 5 9 Released,blog.primefaces.org -1,1374481066,6,What s new in Coherence 12c,blog.c2b2.co.uk -2,1374463428,5,dependency management using maven repo,self.java -63,1374412718,6,Log4j 2 Performance close to insane,grobmeier.de -35,1374382473,9,why you should use the final modifier more often,omsn.de -14,1374351025,6,any gaming companies that use java,self.java -0,1374340798,5,Change Attribute in XML file,stackoverflow.com -0,1374318046,10,What are the must read books for Java web developer,self.java -14,1374282070,5,A new subreddit r javasoftware,self.java -6,1374251532,6,Apache XMLBeans headed for the Attic,mail-archives.apache.org -25,1374243418,16,Don t Throw Away Your Old Java Web Framework the Short Single Page History of Twitter,java.dzone.com -4,1374237268,2,Lync API,self.java -0,1374234407,3,Problem at compilation,self.java -0,1374223380,8,Why do Java Preferences work with multiple ClassLoaders,stackoverflow.com -7,1374191163,10,Using and avoiding null from docs of Google Guava library,code.google.com -0,1374183627,6,Garbage Collection in Java Part 4,java.dzone.com -43,1374181945,9,Java Garbage Collection Distilled Good summary of Java GC,mechanical-sympathy.blogspot.ca -2,1374173155,8,Java EE 8 wish list 2 Antonio Goncalves,antoniogoncalves.org -3,1374163035,15,Qualitas class Corpus Compiled Eclipse Java projects for 111 systems included in the Qualitas Corpus,java.labsoft.dcc.ufmg.br -1,1374157399,17,Any free open source Java library recommendation for communicating with RS232 on a n embedded Windows platform,self.java -0,1374154031,8,When to make a method static in Java,javarevisited.blogspot.com -17,1374133611,4,The Java Modularity Story,branchandbound.net -0,1374086363,2,JAVA Question,self.java -1,1374074665,16,Dev team behind WebSphere Application Server Liberty Profile doing a live Q amp A session tomorrow,self.java -5,1374071450,10,JPA 2 Fetch Joins and whether we should use them,kumaranuj.com -12,1374068225,10,Stateful vs Stateless and Component vs Action web framework benchmark,content.jsfcentral.com -0,1374056440,15,Looking for a way to download presentations from java software Blackboard Collaborate for offline viewing,self.java -11,1374050807,7,Glassfish 4 Performance Tuning Monitoring and Troubleshooting,blog.c2b2.co.uk -2,1374011294,7,Jumi Common test runner for the JVM,jumi.fi -1,1374007063,4,Read Write in Excel,self.java -30,1374002949,5,Maven 3 1 0 Release,maven.40175.n5.nabble.com -6,1373985793,9,Apache Maven Survey Which Java version are you using,docs.google.com -0,1373982888,8,Maven 3 1 0 Released What a Disappointment,insaneprogramming.be -0,1373971686,3,Java amp Javascript,twitter.com -0,1373965732,6,First Java class having loop issues,self.java -0,1373964391,8,Question Java does not throw overflow Exception Why,self.java -0,1373941236,12,How do I maintain an artifact separate from pojects that use it,self.java -63,1373930560,28,Computer Science Professor uses java software to analyze The Cuckoo s Calling and unmasked the authour as J K Rowling who wanted to write under a fake name,entertainment.time.com -1,1373919243,6,Apache Ant 1 9 2 Released,mail-archives.apache.org -0,1373915583,2,Mistletoe Project,mistletoe.qos.ch -1,1373915440,6,Oracle Discontinuing sun reflect Reflection getCallerClass,infoq.com -0,1373908873,8,New problem with nested for loops and java2d,self.java -0,1373902018,3,Java Application HELP,self.java -5,1373895192,4,Flyway 2 2 Released,flywaydb.org -17,1373893553,13,Fast 130M ops second lock free queue eliminating run to run performance variance,psy-lob-saw.blogspot.com -8,1373893016,10,How to control memory usage and avoid the dreaded OutOfMemoryError,self.java -1,1373887602,7,Upcoming Spring Framework conference The Spring Exchange,skillsmatter.com -62,1373878639,5,Understanding Weak References in Java,weblogs.java.net -6,1373873016,6,Lazy sequences implementation for Java 8,javacodegeeks.com -21,1373837536,8,Java 7 vs Groovy 2 1 performance comparison,kubrynski.com -0,1373834251,11,Safe Saver from AVG will disable your Javascript in ALL browsers,self.java -4,1373830729,10,SQLJ an ISO standardized DSL for embedding SQL in Java,en.wikipedia.org -2,1373808164,7,Configuring Spring and Hibernate for Standalone Applications,girlcoderuk.wordpress.com -15,1373797383,17,How quickly will Java software vendors migrate to Java 8 given the presence of Lambda Expressions poll,java.net -35,1373777767,20,How do I expand my Java skills when my professional experience only uses core Java and a subset of J2EE,self.java -9,1373760129,5,Java EE 8 wish list,arjan-tijms.blogspot.com -0,1373753019,11,Oracle WebLogic 12 1 2 Now With EclipseLink MOXy JSON Binding,blog.bdoughan.com -0,1373743666,8,Oracle WebLogic Server 12 1 2 is available,blogs.oracle.com -32,1373719337,4,Java s Reflection API,rodrigosasaki.com -0,1373711104,6,Import CA root certificate into JDK,hussainanjar.com -1,1373710559,10,Oracle JDeveloper and ADF 12c 12 1 2 new features,oracle.com -0,1373699720,6,5 reasons to avoid code comments,pauloortins.com -10,1373666457,7,Java Methods selection with Overloading and Overriding,stackoverflow.com -0,1373622711,5,EARs WARs And Size Matters,adam-bien.com -19,1373622346,4,Hibernate adds OSGi Support,infoq.com -1,1373600124,6,Question about Grails and the enterprise,self.java -2,1373599525,5,Help with a home project,self.java -3,1373587444,24,timed wait for input from console e g if no input typed and return hit within 5 seconds doesn t wait for next line,self.java -0,1373556577,11,Need to do image processing in Java having trouble finding libraries,self.java -0,1373531786,8,Highly Available PHP sessions using memcached 4 Coherence,blog.c2b2.co.uk -42,1373527826,18,Throwing null in Java means you re throwing NPE but don t do that to your co workers,stackoverflow.com -1,1373524841,3,Interoperability Java Frege,mmhelloworld.github.io -0,1373504852,4,XPath for Streaming JSON,self.java -1,1373494173,9,Just In Time compilation more than just a buzzword,javaeesupportpatterns.blogspot.com -3,1373493994,10,Parallel ready SplittableRandom proposed by Guy Steele for JDK 8,cs.oswego.edu -2,1373492549,7,JSF in the trenches About developing ZEEF,balusc.blogspot.com -3,1373491312,1,hawtio,hawt.io -10,1373490935,7,Apache Maven War Plugin 2 4 Released,mail-archives.apache.org -0,1373488743,5,Linting in pre commit hooks,self.java -4,1373443107,4,Lightweight Asynchronous Sampling Profiler,jeremymanson.blogspot.com -8,1373442830,4,Streaming audio in Java,self.java -0,1373417203,3,Request Netbeans intro,self.java -5,1373402181,8,Apache Camel 2 10 6 CVE 2013 2160,mail-archives.apache.org -3,1373402000,12,Tips or ideas for a long term beginner to intermediate level project,self.java -1,1373397779,12,How do you Pass the Gap Between Hello World and Viable Programs,self.java -0,1373395692,15,Can you help with a plugin dependency issue in a recent Netbeans 7 3 installation,self.java -5,1373384736,5,Mojarra 2 1 24 released,java.net -5,1373382226,7,Testing Java 8 in 3 Easy Steps,insightfullogic.com -0,1373376830,8,Reliable Java to COM bridges for commercial use,self.java -11,1373342517,5,Using HDFS from Java Coding,voidtricks.com -3,1373317371,13,What are my primary choices for a GUI in a desktop java program,self.java -2,1373312854,6,Commons Collections 4 0 alpha1 released,mail-archives.apache.org -27,1373312805,6,Apache Tomcat 7 0 42 released,mail-archives.apache.org -5,1373306019,9,First release of AArch64 ARMv8 64 bit OpenJDK port,mail.openjdk.java.net -9,1373283839,7,JBoss community and EAP are things changing,blog.c2b2.co.uk -5,1373280554,6,GlassFish 4 Features for High Availability,blog.c2b2.co.uk -41,1373225597,12,Winner of Darpa s Virtual Robotics Challenge coded almost entirely in Java,robots.ihmc.us -2,1373216889,5,Java RXTX serial port unplugged,self.java -17,1373202061,8,Code rant When Should I Use An ORM,mikehadlow.blogspot.ca -5,1373190768,9,MetaModel Providing Uniform Data Access Across Various Data Stores,infoq.com -21,1373170374,7,Why should I teach my students Java,self.java -1,1373158539,12,Java Use of class with no modifier versus class with public modifier,self.java -1,1373156574,9,Why can I not monitor local processes using JConsole,self.java -5,1373119552,5,JGoodies Tutorial up to date,self.java -1,1373083919,2,Javaee7 Resources,javaee7.zeef.com -18,1373057178,8,OpenIMAJ Open Intelligent Multimedia Analysis toolkit for Java,openimaj.org -0,1373032316,6,Unable to create a TLS connection,self.java -5,1373026759,3,GWT 2 Tutorial,self.java -6,1373022021,6,The Heroes of Java Kevlin Henney,blog.eisele.net -20,1373009573,8,Thinking of switching from Eclipse to IntilliJ IDEA,self.java -0,1372994651,6,Spring Web MVC vs JAX RS,infoq.com -0,1372963654,11,Using the File Upload Component in JSF 2 2 Oracle tutorial,apex.oracle.com -16,1372962776,6,Collection of Java EE 7 resources,javaee7.zeef.com -0,1372961934,4,Good Objects Breaking Bad,mlangc.wordpress.com -3,1372956416,12,Java SFTP upload using JSch but how to overwrite the current file,self.java -0,1372952016,7,Sign up for Oracle to get JDK,self.java -0,1372951598,5,Getting Started with GlassFish 4,blog.c2b2.co.uk -4,1372949602,9,How to make an iOS app using JavaFX 8,blog.software4java.com -40,1372945080,12,Is IntelliJ IDEA Community any good I m sick of Eclipse crashing,self.java -0,1372944867,5,Spring Security Expressions hasRole Example,baeldung.com -4,1372925492,8,Late Night Game Development at its Best WillNeedJava,imgur.com -0,1372907840,33,How do you create a java program on Google App Engine that is able to write HTML or return information so that something else can write HTML as a result of receiving parameters,self.java -3,1372890102,8,Concurrency in Java and odd behaviour from RWLock,self.java -10,1372883350,8,Strategy Pattern using Lambda Expressions in Java 8,java.dzone.com -24,1372877776,23,The classpath article on Wikipedia currently tells you how to avoid smashing 20 diff JARs in the command line to run a program,en.wikipedia.org -27,1372868587,6,Monster Component in Java EE 7,antoniogoncalves.org -10,1372857628,10,Webinar Functional Programming without Lambdas by Spring Source July 18th,springsource.org -8,1372851632,12,Developers expect Java EE 7 to become predominant within 2 3 Years,weblogs.java.net -0,1372846141,4,IllegalStateException in Response SendRedirect,javaroots.com -0,1372845583,5,Need help on beginner program,self.java -0,1372829840,5,Java Trivia 10 bullet points,javaroots.com -0,1372804644,5,Bean Validation 1 1 examples,rmannibucau.wordpress.com -2,1372804041,11,An illustration of Expression Language 3 0 in a Servlet environment,weblogs.java.net -15,1372794034,5,Guacamole HTML5 Clientless Remote Desktop,guac-dev.org -1,1372793968,11,Maven Javadoc Plugin 2 9 1 Javadoc vulnerability CVE 2013 1571,maven.40175.n5.nabble.com -4,1372783349,14,X Post r Androiddev Firebase Announces New Java Client Library for Realtime Data Synchronization,firebase.com -0,1372779043,9,Unable to locate Compiler Error in Eclipse and Maven,javaroots.com -5,1372776245,4,Capabilities of Java EE,self.java -7,1372762379,9,Basic clustering with Weblogic 12c and Apache Web Server,self.java -8,1372742167,4,Exception Dashboard for Java,self.java -26,1372713635,6,My First Java Library Java Stocks,github.com -11,1372690443,8,Any sample project architecture using EJB 3 0,self.java -5,1372685993,15,Looking for an XML less sample Spring Spring MVC project to clone for trouble shooting,self.java -0,1372680266,6,Slick2D help post anyone help please,self.java -4,1372666643,15,A mini util for measuring connectivity IPC UDP TCP latency How low can it go,psy-lob-saw.blogspot.com -0,1372662705,21,Just wondering if anyone can help me out starting a story for a game I m currently making in Java p,self.java -0,1372656313,12,Difference between Math Random and the nextInt method of the Random class,self.java -6,1372650295,3,JavaFX GUI Design,self.java -7,1372639596,4,Shenandoah GC An overview,rkennke.wordpress.com -18,1372637079,4,Spring Framework Starting out,self.java -0,1372624487,2,Help please,self.java -10,1372622371,6,A question about game design concepts,self.java -0,1372603097,10,How would you add labels to this sweet hurricane map,self.java -18,1372602513,12,SugarJ library based language extensibility for example inline XML with syntax validation,sugarj.org -16,1372601748,5,Machine Learning Library for Java,self.java -2,1372589473,8,What s new in CDI 1 1 presentation,youtube.com -7,1372571508,7,java OO design of a Battleships game,self.java -1,1372502705,7,Injecting An ExecutorService With Java EE 7,adam-bien.com -36,1372481174,7,Differences between Math sin and StrictMath sin,self.java -0,1372471480,4,Dj cristian Electro house,youtube.com -2,1372455760,8,Sirix a versioned XML storage system Berkeley DB,github.com -1,1372455337,7,Hama 0 6 2 has been released,mail-archives.apache.org -2,1372455273,6,Apache Camel 2 10 5 released,mail-archives.apache.org -5,1372455170,5,Jetty 9 0 4 v20130625,dev.eclipse.org -1,1372455029,13,Perfidix tool for developers to conveniently and consistently benchmark Java code ala junit,disy.github.io -67,1372449675,8,Yo dawg I herd you like internal errors,imgur.com -0,1372448164,5,JSF 2 2 and HTML5,infoq.com -0,1372447163,3,Help with GUI,self.java -3,1372446989,10,JSF 2 2 Pass Through Attributes in PrimeFaces 4 0,blog.primefaces.org -0,1372441540,15,HELP I need to write these methods for an assignment and cannot figure them out,self.java -0,1372433091,10,Learn Play Framework 2 for Java with this Video Book,packtpub.com -15,1372430940,3,Git Cheat Sheet,git-tower.com -30,1372421310,5,Tricks to speed up Eclipse,stackoverflow.com -0,1372420445,6,Recommended Coding Rules for Java Developers,dzone.com -3,1372419969,6,How to disable a console output,self.java -2,1372414777,13,Looking for a library to export a resultset to a spreadsheet as csv,self.java -0,1372412816,5,How do I fix this,i.imgur.com -1,1372380345,12,We ve Got Your Back New Relic Supports Windows Azure Web Sites,blog.newrelic.com -11,1372374578,9,Code coverage for GitHub hosted Java projects with Coveralls,blog.eluder.org -19,1372373183,10,Build Your First Counter Android App Using This Quick Tutorial,simpledeveloper.com -0,1372368190,8,Java EE 7 support in Eclipse 4 3,blogs.oracle.com -17,1372365758,54,I have a db with data in it accounts invoices articles comments images and so on I need to build a web app to search create update delete these things and perform some business processes on them QUESTION What the quickest easiest way to build a web UI to do these things in Java,self.java -3,1372342805,8,Remove certain item or clear whole OmniFaces cache,whitebyte.info -1,1372342014,5,Eclipse Kepler By the Numbers,java.dzone.com -26,1372333866,8,The Rise and Fall and Rise of Java,marakana.com -9,1372316032,10,Handling feature flags in a Java EE application using Togglz,hascode.com -0,1372310227,9,Help Needed Window on top of Desktop Not Hidden,self.java -2,1372276040,6,Need some info on Java certificates,self.java -0,1372262858,4,Recommend a good book,self.java -6,1372210910,10,Server side events EventSource with Servlet 3 0 async support,stackoverflow.com -0,1372201030,12,What should I do when I see a security prompt from Java,java.com -2,1372186215,9,JLayer s MP3 data values and general DSP questions,self.java -6,1372184708,9,Build Your First Android App From Scratch Using Java,simpledeveloper.com -0,1372184334,12,Way too many ways to do the same thing Too many choices,livememe.com -0,1372180926,7,Javaland Execution in the Kingdom of Nouns,steve-yegge.blogspot.com.ar -1,1372158371,16,GlassFish 4 Webinar Series A new series of short and snappy educational webinars about GlassFish 4,c2b2.co.uk -86,1372149855,10,6 tips to make eclipse lighter prettier and more efficient,blog.scramcode.com -23,1372142952,7,Garbage Collection in Java G1 Garbage First,insightfullogic.com -19,1372099509,9,G1 vs Concurrent Mark and Sweep Java Garbage Collector,blog.sematext.com -37,1372096643,12,Is there a site like codeacademy com where I can learn Java,self.java -3,1372088471,15,Anyone know of a good tool library for code analysis in regards to symbol linking,self.java -0,1372085534,4,Runtime Error in JavaHelp,self.java -0,1372077180,11,How to add two Integers in Java without using or operator,javarevisited.blogspot.com.br -14,1372014136,5,Trying Liberty 8 5 5,arjan-tijms.blogspot.com -0,1371975343,7,What is Important in Secure Software Design,swreflections.blogspot.ca -20,1371952284,7,Java visualizer based on Online Python Tutor,cscircles.cemc.uwaterloo.ca -23,1371926709,5,Java Job Market Advice Please,self.java -3,1371888268,7,Purpose of Abstract class without Abstract methods,self.java -0,1371885616,7,Define different main method format in Java,dotnethearts.blogspot.in -1,1371849751,45,If a java program requests data from a server and is waiting for a response does can the program progress to the next request from a different server while it waits or does it simply wait for the first request before proceeding to the next,self.java -47,1371848718,21,I just added a slew of cool projects to GitHub that I ve had sitting around for sometime looking for input,self.java -0,1371816220,7,Remediation Support Top Eclipse Kepler Feature 2,eclipsesource.com -0,1371816184,8,Eclipse Platform Improvements Top Eclipse Kepler Feature 3,eclipsesource.com -0,1371816127,8,RAP 2 x Top Eclipse Kepler Feature 4,eclipsesource.com -17,1371803024,8,Scalable performance counters for multi threaded Java apps,psy-lob-saw.blogspot.com -4,1371785568,4,Need a learning project,self.java -0,1371773156,17,Java and online banking Does Java help Linux users security as well x post from r linux,self.java -0,1371751382,14,TIL Basic Grails functionality depends on some pretty hilarious hacks using undefined JDK behaviour,twitter.com -0,1371751011,4,Help Null Pointer Exception,self.java -8,1371748379,10,AppScale open source Google App Engine 1 8 0 Released,blog.appscale.com -0,1371743584,31,Hi r java I m looking for some source code to study that relies on generics Especially code that goes beyond using generics only for collections Does anyone have any examples,self.java -2,1371743143,2,Book recommendations,self.java -6,1371742987,10,Vulnerability Note VU 225657 Oracle Javadoc HTML frame injection vulnerability,kb.cert.org -14,1371738258,6,Java EE 7 And Then What,drdobbs.com -6,1371736928,4,Permission or policy checker,self.java -0,1371734263,6,See you later Java I hope,self.java -3,1371704535,3,Session Bean interfaces,self.java -2,1371694650,13,Can anyone explain to me the difference between static methods and instance methods,self.java -0,1371681718,7,I need help with a java problem,self.java -4,1371672136,5,Examples of Swing Best Practices,self.java -83,1371668065,5,JDK 8 is feature complete,mail.openjdk.java.net -6,1371661808,9,Anyone know a good SQL parsing class or library,self.java -3,1371658417,9,Java SE Development Kit 7 Update 25 Release Notes,oracle.com -4,1371645831,6,Embedded war using Jetty and Gradle,fernandorubbo.blogspot.com.br -2,1371644051,24,Walter Bright asks about the implementations of the Initialization on demand holder idiom s generated code guarantees allowed by JSR 133 Java Memory Model,reddit.com -0,1371638513,11,Getting java security InvalidAlgorithmParameterException the trustAnchors parameter must be non empty,self.java -1,1371638447,13,Question Ideas on streaming Audio mp3 from Java web app to html frontend,self.java -1,1371628525,11,Thoughts about subject observer publisher subscriber and emulation of self types,gallium.inria.fr -0,1371625359,7,Every time i install a java update,i.imgur.com -0,1371616200,4,What is a NullPointerException,self.java -3,1371598911,6,Java 2D Game Programming Platformer Tutorial,youtube.com -39,1371596377,9,Java 7u25 has been released includes 40 security fixes,oracle.com -0,1371593081,10,Reconsidering using Java for web projects please give some feedback,self.java -38,1371591787,13,JDK now comes with an expiration date Unknown what happens when it expires,oracle.com -0,1371572851,3,UnsupportedClassVersionError In Java,javaroots.com -0,1371570816,5,Fledgling Coder Needs Advice Badly,self.java -1,1371559859,5,Java SMPP Application Working on,github.com -2,1371521537,11,I m not looking for the best IDE but the quickest,self.java -0,1371514754,11,Will the equals operator ever be fixed with respect to Strings,self.java -11,1371508285,7,Oracle Java Critical Patch Update June 18,oracle.com -9,1371503904,1,Javapocalypse,youtube.com -1,1371496604,6,Dev environment question Windows OSX Linux,self.java -6,1371486879,15,Bringing Closures to Java 5 6 and 7 No Need To Wait for Java 8,mseifed.blogspot.se -11,1371477824,5,The Future of Java Standards,docs.google.com -14,1371441886,3,Data Structures Book,self.java -8,1371411095,5,Good books for learning Java,self.java -1,1371403839,6,Java serialization for a specific protocol,self.java -7,1371363004,14,As a C MVC developer what should I be familiarizing myself with in Java,self.java -10,1371357688,9,I just started java and need help on something,self.java -4,1371308635,7,Most intensely fun way to learn Java,self.java -42,1371306400,8,Shenandoah A pauseless GC for OpenJDK from RedHat,rkennke.wordpress.com -0,1371302570,7,JPA 2 Dynamic Queries Vs Named Queries,kumaranuj.com -19,1371294000,10,Apache Commons Net 3 3 released ftp client mail client,mail-archives.apache.org -6,1371293921,5,Apache Qpid 0 22 released,mail-archives.apache.org -0,1371267454,5,Help Reqest Teamspeak API Work,self.java -0,1371260543,2,Strange error,self.java -2,1371253006,2,Beginner help,self.java -5,1371244146,7,RichFaces 5 0 0 Alpha1 Release Announcement,bleathem.ca -37,1371243771,3,JavaZone 2013 Javapocalypse,youtube.com -1,1371239325,4,infoShare 2013 nagrania video,javaczyherbata.pl -3,1371237423,11,WebSphere Application Server and Developer Tools V8 5 5 available now,ibmdw.net -1,1371218317,11,Echo3 Web Application Framework announces the release of version 3 0,self.java -4,1371211387,3,License to Code,youtube.com -86,1371209897,4,JavaZone 2013 the javapocalypse,jz13.java.no -3,1371199604,5,Newbie question about custom menu,self.java -21,1371154898,15,Adam Bien s presentation on infoShare 2013 conference in Gdansk Poland on good JavaEE practices,youtube.com -0,1371141864,4,What Should I Use,self.java -16,1371128089,6,Deploy Java Apps With Docker Awesome,blogs.atlassian.com -0,1371126721,9,Mylyn Reviews with Gerrit Top Eclipse Kepler Feature 8,eclipsesource.com -1,1371126648,8,avc binding dom Java DOM binding with annotations,code.google.com -0,1371093327,7,having trouble with java homework on methods,self.java -0,1371075924,15,Zarz dzenie z o ono ci przez tr jpodzia logiki Open closed principle w praktyce,javaczyherbata.pl -42,1371063543,10,Java EE 7 officially launches bringing HTML5 and WebSocket support,jaxenter.com -5,1371061266,9,What would you recommend for cheap reliable tomcat hosting,self.java -9,1371043173,6,Java Magazine May June 2013 Released,oraclejavamagazine-digital.com -32,1371041215,36,The only thing I will remember in 40 years time from my development career is an instant muscle memory recall of typing mvn eclipse eclipse I ll probably be mumbling it at my nursing home too,self.java -3,1370992652,6,Ultra fast reliable messaging in Java,kubrynski.com -10,1370990922,15,A cross platform exe wrapper for a jar file that I just stumbled across today,launch4j.sourceforge.net -48,1370985520,9,Guava simple recipes to make your Java code cleaner,onthejvm.blogspot.com -8,1370951393,7,Spring Data JPA vs EclipseLink vs Hibernate,self.java -6,1370949984,8,EGit 3 0 Top Eclipse Kepler Feature 9,eclipsesource.com -9,1370933837,5,OmniFaces 1 5 is released,balusc.blogspot.com -3,1370918147,7,What is the point of abstract methods,self.java -3,1370892282,10,Java wrapper for svdlib a fast sparse SVD in C,bitbucket.org -0,1370885915,11,Brand new JRE 7 update 21 install doesn t even verify,self.java -37,1370863126,42,MapDB provides concurrent Maps Sets and Queues backed by disk storage or off heap memory It is a fast and easy to use embedded Java database engine This project is more than 12 years old you may know it under name JDBM,mapdb.org -5,1370853748,12,Marketing done right JRebel trials can win you an awesome geek trip,zeroturnaround.com -17,1370845605,12,What s New in JMS 2 0 Part Two New Messaging Features,oracle.com -0,1370826927,20,JAVA Is there any good tutorials for making a picture slideshow ie java app that displays photos in slideshow fashion,self.java -0,1370820531,2,Getting started,self.java -24,1370809153,22,If anyone is interested here a bunch of other Redditors and I are making a tournament for the awesome programming game RoboCode,self.java -12,1370808047,4,A bizzarre JavaFx bug,raintomorrow.cc -1,1370798589,4,Functional Interfaces in JDK8,passionandtech.blogspot.com -6,1370797134,6,Recommend some interesting technologies to explore,self.java -19,1370769912,9,Quick note on Oracle Java SE Time Zone Updates,openj.dk -14,1370743028,7,Best way to deploy Java Desktop Applications,self.java -5,1370739893,7,Array Buffer Object is disabled Please help,self.java -0,1370731904,12,Can t make my code work What am I doing wrong here,self.java -12,1370731113,24,We made a Pacman clone in Java for our AP Computer Science final project here it is How can we make it less crappy,self.java -1,1370714976,4,Active rendering tearing lagging,self.java -1,1370696879,11,Deployment Overlays A new feature of the JBoss EAP 6 1,blog.akquinet.de -65,1370695982,7,Oracle Discontinues Free Java Time Zone Updates,developers.slashdot.org -2,1370680799,2,Project dependencies,self.java -0,1370664828,7,How to make a list of objects,self.java -0,1370663367,6,Look Mate No Setters No XML,eclipsesource.com -10,1370640268,12,Facebook unveils Java based Presto engine for querying 250 PB data warehouse,gigaom.com -164,1370633638,44,I had an old man ask me to help him update his Java He had parkinsons and couldn t keep his hand steady enough to click the checkbox Scumbag java updater still no focus on the string It s only been 9 years now,i.imgur.com -11,1370614159,7,Code driven no annotations ORM for Java,github.com -4,1370610129,9,Style Guide for staying below 80 chars per line,self.java -4,1370588511,11,Annotation based Dependency Injection in Spring 3 and Hibernate 3 Framework,java-tv.com -12,1370587699,7,Asynchronous Servlet and Java EE Concurrency Utilities,weblogs.java.net -0,1370579024,4,Help with NetBeans please,self.java -15,1370568982,5,JavaFX on Android and iOS,self.java -3,1370561511,4,Using Graphics in Java,self.java -2,1370553331,2,ProcessBuilder help,self.java -14,1370537945,6,Oracle Java Virtual Developer Day 2013,oracle.6connex.com -0,1370523749,7,RAP Client Scripting Phase II 2 3,eclipsesource.com -4,1370516589,22,Does anyone know of simple framework in java for playing wav files that supports turning volume up and down as they play,self.java -14,1370508450,6,Joint union in type parameter variance,stackoverflow.com -1,1370486745,3,Help with Jython,self.java -0,1370478878,4,Help with Birthday Paradox,self.java -2,1370470986,13,What is the best resource for an absolute beginner to coding learn Java,self.java -0,1370452866,17,Friend and I got into an argument on this one I say its B Am I right,imgur.com -1,1370442500,8,Intermediate level Java programmer interested in game development,self.java -7,1370424928,4,Spring Security Authentication Provider,baeldung.com -0,1370420580,5,Spring Framework 4 0 Announced,infoq.com -20,1370417623,10,Announcing MapStruct a new code generator for Java bean mappings,mapstruct.org -2,1370397697,4,Complex Event Processing Comparison,self.java -1,1370391953,4,need if else help,self.java -0,1370390912,4,Peter Seibel on Maven,twitter.com -31,1370386910,12,Oracle to lop off Java s least secure bits to save servers,theregister.co.uk -2,1370383340,5,How do programs save settings,self.java -1,1370382759,4,Enum lt E gt,self.java -13,1370372181,10,Java EE 7 is final Thoughts Insights and further Pointers,blog.eisele.net -5,1370371799,10,All Java EE 7 JSRs have published their Final Releases,blogs.oracle.com -2,1370371654,5,Java EE 7 Deployment Descriptors,antoniogoncalves.org -3,1370368250,23,Beginner Java game Developer here Want to add some others like me on skype so we can help each other build programs together,self.java -10,1370364481,4,Java java code formatter,self.java -7,1370360907,11,WildFly 8 0 0 Alpha1 Release and a Bit of History,java.dzone.com -9,1370352512,9,What is Lambda Calculus and why should you care,zeroturnaround.com -1,1370344960,10,Java EE 6 Web Component Developer Certification Implementing MVC Design,epractizelabs.com -8,1370299300,10,Mapping enums done right with Convert in JPA 2 1,nurkiewicz.blogspot.com -94,1370263944,12,This is my last assignment for my Java unit ready for submission,imgur.com -3,1370262538,7,Short jhat tutorial diagnosing OutOfMemoryError by example,petermodzelewski.blogspot.sg -2,1370261962,7,Multicast file transfer protocol library for java,self.java -13,1370227004,13,Why is the toString method of arrays behavior different than the List class,self.java -9,1370192146,7,Code academy LCtHW like resources for Java,self.java -0,1370185730,4,TOMCAT service is failing,self.java -50,1370176214,4,JVM Performance Magic Tricks,takipiblog.com -13,1370110673,14,Ruby dev looking to lean on Java for performant web services Where to start,self.java -11,1370090454,11,New version of la4j 0 4 0 fast matrix Java library,la4j.blogspot.ru -11,1370087897,6,Where to find more JavaFx styles,self.java -0,1370067827,7,A simple Chaatroom in Java Programing Language,taskstudy.blogspot.com -3,1370063757,8,How to properly handle InnoDB deadlocks in Java,self.java -69,1370038021,13,MongoDB Java Driver uses Math random to decide whether to log Command Resultuses,github.com -5,1370036994,6,Apache ACE distribution framework with OSGi,ace.apache.org -5,1370029735,7,Understanding JSF 2 0 Performance Part 1,content.jsfcentral.com -0,1370028537,4,Head First Design Patterns,codeescapism.com -1,1370015080,5,Images won t get drawn,self.java -0,1370013330,3,Spring Custom Events,hmkcode.com -10,1370009680,13,What s new in JEE 7 blogging from reza rahman s oracle talk,selikoff.net -2,1370003504,8,Java on SPARC T5 8 Servers is FAST,blogs.oracle.com -6,1369998379,16,Maintaining the security worthiness of Java is Oracle s priority The Oracle Software Security Assurance Blog,blogs.oracle.com -28,1369995987,10,r java logo proposal to be featured on the poster,self.java -0,1369977783,11,Java noob here What is the fuss about the API documentation,self.java -0,1369944177,5,What happens in my programs,cdn.uproxx.com -4,1369941772,9,OmniFaces 1 5 Release Candidate now available for testing,arjan-tijms.blogspot.com -20,1369936010,4,SemanticMerge now speaks Java,codicesoftware.blogspot.com -4,1369931325,7,How to create bookmarkable pages using JSF,openlogic.com -0,1369925127,7,Looking For Memebers For A Development Team,self.java -11,1369920905,9,Stackifier for Java Make sense of your stack trace,stackifier.com -0,1369918949,9,Liferay Portal Practical Introduction Updated for Liferay 6 1,phloxblog.in -3,1369914027,7,What s with the hate on gridbag,self.java -0,1369886479,6,Finding a point on an oval,self.java -14,1369880451,39,Coming from c where do I start I m used to Net and Visual Studio What is the best way to dive right in What tools do I need Am I going to weep over not having Resharper P,self.java -7,1369864931,7,Web Developer trying to increase knowledge base,self.java -5,1369860640,13,Looking for some feedback for my little project djinn a graphical dependency explorer,self.java -0,1369859927,12,Hi I am working on a project and I need some insight,self.java -0,1369832532,7,Java Game Help Null In Integer Comparison,self.java -12,1369781188,6,Porting Perl 6 to the JVM,jnthn.net -0,1369768212,14,Text adventure game Need help with picking up items and moving to players inventory,self.java -36,1369763589,9,What code do you find yourself retyping a lot,self.java -3,1369759404,5,Gradle eXchange London October 28th,skillsmatter.com -4,1369754313,4,JEEConf 2013 trip report,branchandbound.net -3,1369743363,15,Some strange behavior with Eclipse RCP EMF GMF and linked diagrams inside a custom project,self.java -0,1369742330,12,Is it possible to find out if this program is already running,self.java -0,1369726936,3,Problem with openjdk7,self.java -7,1369689033,9,JSF choice between legacy components and fashionable performance killers,ovaraksin.blogspot.com -0,1369687445,16,If you have like 15 minutes to spare to write some code in java please help,self.java -0,1369686727,9,Help Cant add subtract multipy or devide in java,self.java -43,1369679921,11,r IntelliJIDEA A subreddit for discussion and assistance for IntelliJ IDEA,reddit.com -14,1369670424,12,Java8 plugin that adds supports for persistent local variables l C99 static,github.com -18,1369668506,10,Proof of Concept LambdaSpec how testing will look with Java8,blog.project13.pl -4,1369664847,12,I have created a scripting language and I am looking for feedback,bitbucket.org -7,1369657741,6,Abstract Class vs Interface in Java,javarevisited.blogspot.com.br -0,1369639404,6,Understanding Dynamic Proxy Spring AOP Basics,javaroots.com -2,1369617551,11,r ProgrammingJokes is new Feel free to post your best Joke,reddit.com -0,1369612846,17,I hate java just leaving this here because I can t find enough people to vent to,i.imgur.com -63,1369594211,9,gag some annotations that will help you express yourself,code.google.com -14,1369586088,7,Joeffice The Open Source Java Office Suite,joeffice.com -9,1369584926,7,New Maven plugins for simpler architecture management,h-online.com -10,1369570532,8,Apache OpenWebBeans 1 2 0 has been released,mail-archives.apache.org -7,1369569496,16,Announce XChart 2 2 0 Released MATLAB theme CSV import export and high res Chart export,blog.xeiam.com -16,1369522806,7,Tuning the Size of Your Thread Pool,infoq.com -11,1369520719,7,A question regarding the programming language Java,self.java -17,1369504487,12,Creating a simple batch job in Java EE 7 using JSR 352,planetjones.co.uk -11,1369497722,10,Implementing LWJGL OpenGL draw method into the Slick2D render method,self.java -23,1369435320,11,I m starting a Java Programming Internship what should I know,self.java -8,1369433131,8,Java EE 7 and JAX RS 2 0,jaxenter.com -1,1369431661,7,Is there an alternate link to Slick2d,self.java -0,1369386373,6,Item 5 Avoid Creating Unnecessary Objects,kodelog.com -6,1369368765,8,Java GC tuning for High Frequency Trading apps,onthejvm.blogspot.sg -50,1369361168,10,Matured Java open source project looking for some extra hands,self.java -7,1369341633,7,Writing acceptance tests with Selenium and Jnario,sebastianbenz.de -5,1369334573,16,Code that calls open also calls close APIMiner now supports examples for methods frequently called together,apiminer.org -0,1369324733,13,Need to hire a Super Sr Java Web developer Location doesn t matter,self.java -15,1369321125,12,JBoss EAP 6 1 Final released and available from public download page,access.redhat.com -4,1369258710,6,JSR 356 Java API for WebSocket,java.dzone.com -0,1369252316,9,setSelected with JRadioButton r new JRadioButton 3 not working,self.java -2,1369230724,10,Avoiding Java memory layout pitfalls with examples and funky tools,psy-lob-saw.blogspot.sg -45,1369229553,13,Useful Eclipse Plugins that didn t made it to the Top 10 list,jyops.blogspot.in -0,1369222140,8,Anyone know of a WYSIWYG editor in Java,flikode.com -1,1369221418,4,MDB messing REST service,self.java -1,1369218196,4,R I P JavaBlogs,osintegrators.com -7,1369192460,2,Network Programming,self.java -0,1369184556,20,Trying to test loading in a sprite from a sprite sheet and getting a null pointer exception Anyone know why,self.java -30,1369175329,14,The Great Java Application Server Debate with Tomcat JBoss GlassFish Jetty and Liberty Profile,zeroturnaround.com -5,1369166518,3,Java vs Scala,self.java -0,1369160407,7,Can t Play Sound More Than Once,self.java -4,1369152083,16,Trying not to re invent the wheel Something like Tasker but in Java xpost r javahelp,reddit.com -3,1369146787,1,Interfaces,self.java -16,1369142344,5,Functional Programming in 5 Minutes,slid.es -2,1369133912,9,Acquiring and releasing cloud servers in Java using JClouds,syntx.co -16,1369121924,10,How to Examine and Verify your Java Object Memory Layout,psy-lob-saw.blogspot.com -8,1369117519,6,Getting Started with RabbitMQ in Java,syntx.co -4,1369091374,7,Switching between data sources when using DataSourceDefinition,jdevelopment.nl -0,1369079836,6,jdk 1 4 thread httpurlconnection example,self.java -11,1369076600,13,Monitoring Memory Usage inside a Java Web Application with JSF PrimeFaces and MemoryMXBean,blog.javabenchmark.org -1,1369073063,11,Is it normal good practice to embed versioning in package name,self.java -0,1369069422,9,New Object Oriented feature I would like to see,self.java -0,1369059579,8,Thumbs db getting returned when searching for PDFs,self.java -5,1369057894,7,Asynchronous logging using Log4j ActiveMQ and Spring,syntx.co -4,1369049504,10,Using Rhinoslider with image and youtube content in JSF pages,kahimyang.info -5,1369048926,5,JSF 2 2 New namespaces,jsflive.wordpress.com -1,1369048545,9,Storing arrays in Infinispan 5 3 without wrapper objects,infinispan.blogspot.com -46,1369047877,7,Five Java Synchronizers you might not know,blog.josedacruz.com -0,1369041671,6,Toggle Key in Java Stack Overflow,stackoverflow.com -2,1369026358,6,Sending MIDI file to a DAW,self.java -0,1369019833,9,Can anyone help me with a Java Programming Question,self.java -6,1368992688,2,DEMUX Framework,demux.vektorsoft.com -0,1368991746,11,Anyone know how to make a Galaga style game using gridworld,self.java -24,1368991041,5,Is intellij better than netbeans,self.java -1,1368979394,5,Please help with netbeans issue,self.java -11,1368976533,8,Apache Wicket 6 5 vs JSF 2 0,codebias.blogspot.com -7,1368965899,8,Understanding Serialization and Constructor Invocations gt Hacking Singletons,kodelog.com -7,1368960484,10,Starting Maven based development of App Engine Endpoints REST services,planetjones.co.uk -0,1368938080,7,How could Scala do a merge Sort,dublintech.blogspot.sg -3,1368928583,9,Landed a Job How can I get even better,self.java -6,1368910891,6,Maven Dependency Plugin 2 8 Released,maven.40175.n5.nabble.com -12,1368870224,8,JSF Performance Mojarra improves dramatically with latest release,blog.oio.de -0,1368855067,6,Question Needing help on a project,self.java -0,1368847818,9,I want to learn Java Where do I start,self.java -4,1368825156,6,Maven Site Plugin 3 3 Released,maven.40175.n5.nabble.com -1,1368807836,13,Java 1 7 Deployment with SCCM MDT Your Java version is insecure workarounds,labareweb.com -13,1368802632,10,Getting Started with JMH a new Java Micro Benchmarking framework,psy-lob-saw.blogspot.com -0,1368799213,5,Spring Config File Best Practices,deepakgaikwad.net -43,1368782539,5,Lambda Expressions The Java Tutorials,docs.oracle.com -0,1368778075,5,Who doesn t uses pojo,qkme.me -1,1368771980,7,JSTL with IntelliJ and Tomcat 7 problem,self.java -4,1368765346,7,Looking for a good Android development tutorial,self.java -0,1368760197,8,QUESTION Reducing number of bytes in an image,self.java -4,1368754222,5,How to distribute my game,self.java -4,1368749819,14,Looking for practice exams for 1z0 804 OCJP7 not braindumps What do you recommend,self.java -0,1368734512,6,Handling string input for a calculator,self.java -0,1368724801,8,QUESTION Simple 3D rendering in a JAVA game,self.java -96,1368699215,14,IntelliJ IDEA is the base for Android Studio the new IDE for Android developers,blog.jetbrains.com -0,1368690592,8,Why Integer MAX_VALUE Integer MAX_VALUE result in 2,self.java -1,1368687219,17,Newbie How do I change the icon of a JTree parent node according to its child nodes,self.java -3,1368666834,22,Game develpoers of reddit I want to create a 3D JAVA game like Minecraft where did you learn to program 3D java,self.java -0,1368627987,6,Invoking EJB3 in WebSphere using Spring,ykchee.blogspot.com -0,1368615191,5,Help with basic Java calculator,self.java -16,1368593604,13,NQP compiler toolkit and Rakudo Perl 6 in NQP being ported to JVM,6guts.wordpress.com -1,1368576000,10,Is Java For Dummies a good resource for learning Java,self.java -11,1368552575,10,Remove all null references from a list in one line,stackoverflow.com -5,1368550513,7,Transactions and exception handling in EJB EJBTransactionRolledbackException,palkonyves.blogspot.hu -0,1368536514,5,Java GUI interface with scroll,self.java -0,1368518455,11,Why the amp does not Java s Deprecated attribute have this,imgur.com -0,1368497360,8,Started the Java Tutorial Built My First App,i.imgur.com -6,1368477520,6,JSF 2 2 Stateless views explained,jsfcorner.blogspot.com -20,1368476760,9,Reactor a foundation for asynchronous applications on the JVM,blog.springsource.org -13,1368468889,6,Jetty 9 0 3 v20130506 Released,jetty.4.x6.nabble.com -3,1368468798,6,Apache Tomcat 7 0 40 released,markmail.org -3,1368462445,7,DIY Java App Server on Redhat OpenShift,dmly.github.io -14,1368456529,6,Garbage Collection in Java part 3,insightfullogic.com -0,1368436806,7,need help passing a string and fast,self.java -21,1368436232,7,What s your all time favorite lib,self.java -27,1368363980,6,Java EE CDI in one page,kodelog.com -9,1368350921,8,Does the new keyword necessarily denote heap allocation,self.java -0,1368319210,19,New to Java And I need some critical help here I don t know whats wrong about my code,i.imgur.com -9,1368313464,3,Web app framework,self.java -6,1368312586,8,Simple Java based JSF 2 2 custom component,jdevelopment.nl -20,1368289827,7,Should package name be plural or singular,self.java -0,1368274533,10,Why isn t Java used for modern web application development,programmers.stackexchange.com -5,1368242308,17,Is it feasible to represent integers or BigIntegers as an ArrayList of the number s prime factors,self.java -14,1368241548,21,Looking for top tier Java books on the same level or higher quality as Head First Java Desperate for good material,self.java -5,1368240222,7,Getting mouse keyboard events without a GUI,self.java -2,1368224138,7,Anyone have experience with the Restlet Framework,self.java -12,1368222080,11,To Scala or Groovy Which is better for a mathematical approach,self.java -7,1368212558,4,JSF Configuration Context Parameters,blog.oio.de -1,1368192617,6,Spring MVC and the HATEOAS constraint,city81.blogspot.co.uk -5,1368188411,34,I have a table inside a scrollPane I m trying to auto scroll to the last row in the scroll pane but it only goes to second to last and hides the last one,self.java -3,1368167581,7,Using Spring PropertySource and Environment in Configuration,blog.jamesdbloom.com -12,1368135289,10,Gil Tene Azul CTO InfoQ talk on JVM inner workings,infoq.com -11,1368122017,6,Apache Tomcat 6 0 37 released,mail-archives.apache.org -3,1368118479,15,Free Java Tutorials For Absolute Beginners Episode 4 JDK Secret Explore CodeMink Life Gadgets Technology,codemink.com -9,1368101063,9,CogPar A Versatile Parser for Mathematical Expressions in Java,cogitolearning.co.uk -2,1368092319,10,How to Cluster Oracle Weblogic 12c via the Command Line,tokiwinter.com -7,1368092050,14,About the rise of the builder pattern in Java JDK 8 s Calendar Builder,javaworld.com -2,1368091434,8,Protocol Upgrade in Servlet 3 1 By Example,weblogs.java.net -31,1368091193,11,Change in version numbering scheme of Java SE 7u14 becomes 7u40,oracle.com -12,1368085461,6,Charlie Hunt Fundamentals of JVM Tuning,emergingtech.chariotsolutions.com -17,1368085393,6,Doug Lea Engineering Concurrent Library Components,emergingtech.chariotsolutions.com -0,1368070931,9,I need a loop that will crash my program,self.java -19,1368058655,6,Memoized Fibonacci Numbers with Java 8,blog.informatech.cr -6,1368057005,5,What is a Java Module,self.java -11,1368052793,9,Java EE 7 JMS 2 0 With Glassfish v4,piotrnowicki.com -9,1368043547,6,Java EE CDI Disposer methods example,byteslounge.com -28,1368038461,9,Should I throw an exception or return a boolean,self.java -0,1368036151,10,I m in highschool doing a Java project help please,self.java -0,1368033880,9,Score big with JSR 77 the J2EE Management Specification,javaworld.com -1,1368029442,11,Video Considerations for using NoSQL technology on your next IT project,skillsmatter.com -0,1368027112,19,Java Runtime Environment Version Selection in the New Java Plug In Technology introduced in Java SE 6 update 10,oracle.com -24,1368023841,7,The Great Java Application Server Debate GlassFish,zeroturnaround.com -1,1368023424,4,Copying Objects Cost Efficiently,self.java -10,1368000768,7,How would I do this in Java,self.java -0,1367975230,7,Can JNA load libraries from a jar,self.java -5,1367974712,9,Has anyone here taken the AP Computer Science course,self.java -9,1367945706,5,Liferay 6 1 custom portlets,self.java -7,1367934579,13,Tomb Raider now runs in jDosBox 3dfx Voodoo 1 emulation ported from MAME,jdosbox.sourceforge.net -7,1367932661,13,Am I right in thinking this is a Java Web App I want,self.java -7,1367929981,6,JPA JPQL Intermediate Queries with NamedQuery,tothought.cloudfoundry.com -0,1367905715,6,Best ways in layman s terms,self.java -1,1367904929,11,help advice for multilingual virtual keyboard X post from r javahelp,self.java -0,1367897940,7,In Need of some Java Programming Help,self.java -0,1367882397,3,g12 homework ArrayLists,self.java -0,1367875393,7,I need help getting shapes to move,self.java -0,1367868113,22,Simple question but I could really use the answer How do I make program run on its own outside of the compiler,self.java -5,1367853987,16,Best Source to learn Java with goal of Android development for a complete beginner to programming,self.java -15,1367834421,2,JVM Internals,blog.jamesdbloom.com -2,1367825720,3,JSF Performance Tuning,blog.oio.de -2,1367808609,8,Your Thoughts Graph DataStructures Boolean boolean bit Arrays,self.java -63,1367794645,7,Java Code To Byte Code Part One,blog.jamesdbloom.com -0,1367794058,4,Java homework help please,self.java -0,1367786678,3,Java instrumentation tutorial,blog.javabenchmark.org -0,1367780890,4,A different clock program,self.java -24,1367766572,8,What Properties in Java Should Have Looked Like,cafe.elharo.com -28,1367705521,7,What is the best Java networking library,self.java -0,1367697027,3,Java for Babies,howtogetrich.com -0,1367639332,7,Optimal way to do a for loop,self.java -8,1367594531,9,Java Enterprise Edition 7 WebSockets but no cloud support,h-online.com -0,1367594421,5,Java EE 7 moves forward,infoworld.com -20,1367573294,11,Integrating WebSockets and JMS with CDI events in Java EE 7,blogs.oracle.com -0,1367536825,9,How can I better understand drawings Graphics in Java,self.java -2,1367531057,8,The Great Java Application Server Debate JBoss AS7,zeroturnaround.com -0,1367529477,16,SpringMVC router Play Rails style routing configuration file for Spring MVC x post from r javapro,resthub.github.io -32,1367524228,10,Play Framework 2 1 The Bloom is Off The Rose,stupidjavatricks.com -6,1367522179,15,Hibernate Validator 5 0 1 and the story behind the missing 5 0 0 Final,in.relation.to -13,1367521857,9,Mark Little s Blog Java EE 7 is approved,community.jboss.org -2,1367521539,7,Proxy Chaining Aspects on Java Dynamic Proxy,dmly.github.io -1,1367520588,9,Creating Rest Services With Rest Easy In Web application,javaroots.com -14,1367514900,32,The Checker Framework enhances Java s type system to make it more powerful and useful This lets software developers detect and prevent errors in their Java programs x post from r javapro,types.cs.washington.edu -4,1367510963,4,Integrating Java with C,m.javaworld.com -15,1367507642,2,Javafx concerns,self.java -0,1367507118,6,Suggestions for existing Java project anyone,self.java -0,1367505932,10,I am new to java and need help and advice,self.java -0,1367445752,2,Eliminating types,self.java -0,1367435178,13,Run test case and test suite generated by Selenium IDE from command line,github.com -0,1367433950,4,Tapestry 5 3 7,tapestry.apache.org -2,1367433880,5,Qi4j SDK Release 2 0,qi4j.org -74,1367373384,4,New Java Decompiler WIP,self.java -0,1367372009,4,Announcing FX Experience Tools,fxexperience.com -2,1367360063,8,Need help keeping the mouse inside a JFrame,self.java -0,1367359332,5,Migrate to 21st century UI,self.java -1,1367358068,5,Requesting advice on Classpath issues,self.java -0,1367357774,15,Confused about updating a JLabel when a user selects a new image via a filechooser,self.java -2,1367348620,3,JEE Archetypes Guidance,self.java -5,1367342496,7,Please explain assets to me in java,self.java -0,1367339070,12,Anything I need to know for the AP Computer Science A test,self.java -5,1367335983,8,Async I O NIO2 question about AsynchronousServerSocketChannel accept,self.java -1,1367335299,8,Staff Availability Project no idea where to start,self.java -0,1367310733,3,Beginner java help,self.java -20,1367305773,7,Java EE 7 JSR 342 is final,blog.oio.de -0,1367281327,15,Can anyone write a script to take images from IG and post on a subreddit,self.java -17,1367270831,6,Apache Commons Codec 1 8 Released,mail-archive.com -0,1367262999,19,jLabel setText problem lt Java gt It s a question I asked somewhere in AskReddit and redirected me here,reddit.com -7,1367262591,11,JSF 2 2 Final Draft Approved Java EE 7 Coming Soon,blogs.jsfcentral.com -8,1367249279,5,Java application accessibility and networking,self.java -11,1367244547,9,Why Java is One of the Best Programming Language,javarevisited.blogspot.com.br -0,1367232761,6,jsp hook in liferay 6 1,javadispute.com -3,1367231805,5,Building a jar in netbeans,self.java -27,1367210396,6,Java nested classes in a nutshell,to-string.com -6,1367182885,15,Im having trouble with hashmaps could someone please explain to me where im going wrong,self.java -1,1367166305,5,Back from JavaOne Russia 2013,technicaladvices.com -0,1367159310,4,Seeking help with project,stackoverflow.com -16,1367152322,6,Apache Camel 2 11 0 Released,mail-archive.com -0,1367152172,7,HttpComponents HttpClient 4 2 5 GA release,mail-archive.com -0,1367149352,8,Help Update text in html from txt file,self.java -10,1367074545,8,JavaEE Next Java EE 7 8 and Beyond,infoq.com -10,1367068739,9,Java RAII and Long Lived objects is it possible,self.java -7,1367013569,8,Asynchronous Loggers for Low Latency Logging apache org,news.ycombinator.com -7,1367011819,5,Java 8 Hold the train,mreinhold.org -25,1367011487,22,Used DrJava to win a simulation AI competition for class in comments link to watch this competition go every hour all night,i.imgur.com -11,1367006629,6,JSR 356 Java API for WebSocket,oracle.com -6,1367005904,9,Is it possible to have a variable for classes,self.java -0,1366992251,7,PingTimeout fr WANTED Stacktraces on Hotspot JVM,pingtimeout.fr -12,1366949887,7,The eclipse plugin CodeRuler Where to download,self.java -27,1366915283,7,The Great Java Application Server Debate Tomcat,zeroturnaround.com -12,1366914238,12,Weld 2 0 0 Final CDI 2 0 Java EE 7 released,in.relation.to -2,1366901114,12,Best way to create a complex data table for a web application,self.java -1,1366897259,5,When an exception gets lost,eclipsesource.com -15,1366883903,7,Swing AWT sufficient to make a game,self.java -2,1366863857,13,Issues with using Java in Runescape Java Platform SE 7 U21 has crashed,self.java -2,1366860477,3,Trivia Game Testers,self.java -1,1366844940,1,Sound,self.java -11,1366843041,14,ModCFML allows for Tomcat hosts to be created based on IIS or Apache configuration,modcfml.org -0,1366827999,22,Lets talk about the main method Is there any real difference between String args String args String args or even String lolz,self.java -0,1366820934,18,Having issues coding an insertion method for a 2 3 4 5 Tree Will pay money for help,self.java -7,1366813874,13,Give Java Caching Standard API a go using Infinispan 5 3 0 Alpha1,infinispan.blogspot.de -11,1366804493,4,Practical introduction to JRebel,code-thrill.com -9,1366783903,15,tbuktu bigint An asymptotically fast version of java math BigInteger x post from r javapro,github.com -10,1366777698,4,Java Networking book recommendations,self.java -1,1366754637,12,Is it possible to compile on the GPU with CUDA or OpenCL,self.java -3,1366752436,4,ADF examining memory leaks,ramannanda.blogspot.com -18,1366749043,6,Apache TomEE 1 5 2 released,blogs.apache.org -26,1366727346,11,Understanding Java Garbage Collection and what you can do about it,youtu.be -13,1366725127,14,Meet my first Github project SqlToJson for mapping SQL query ResultSet into JSON file,self.java -2,1366719700,7,Much ado about null Stop fighting Null,adamldavis.com -8,1366712442,7,NextFlow An Object Business Process Mapping Framework,nextflow.org -12,1366711245,15,Here s a scalable XML document database engine powered by JVM technology take a look,self.java -0,1366692775,4,final exam practice problems,self.java -14,1366682962,6,Tips on becoming a better programmer,self.java -1,1366667323,4,Is there Java 0day,istherejava0day.com -9,1366642190,15,Full Disclosure SE 2012 01 Yet another Reflection API flaw affecting Oracle s Java SE,seclists.org -3,1366641947,3,Java Download down,self.java -0,1366583354,4,Looking to learn Java,self.java -0,1366582744,6,Fractal Generator on Github is FREE,self.java -1,1366566655,5,Simple publish subscribe suing J2SE,self.java -1,1366556630,23,ModeShape distributed hierarchical transactional and consistent data store with support for queries full text search events versioning references and flexible and dynamic schemas,jboss.org -8,1366553065,11,PingTimeout fr Extracting iCMS data from garbage collector logs Hotspot JVM,pingtimeout.fr -70,1366551715,6,Should IBM buy Java from Oracle,self.java -7,1366549291,8,JSF Expression Language EL Keywords and Implicit Objects,javaevangelist.blogspot.gr -6,1366536458,7,Fault injection in your JUnit with ByteMan,blog.javabenchmark.org -43,1366494999,10,Can t think of a good class name Try this,classnamer.com -6,1366454504,8,What is the function of the Toolkit class,self.java -0,1366439557,12,Whats the problem with JSF A rant on wrong marketing arguments JavaServerFaces,reddit.com -11,1366417589,7,Java 8 release delayed until next year,infoworld.com -4,1366412328,7,Role in Servlet 3 1 security constraint,weblogs.java.net -11,1366411858,7,Drools decision tables with Camel and Spring,javacodegeeks.com -4,1366410710,9,Newbie How do you make a run able file,self.java -0,1366410522,12,How you know you have spent too much time looking at code,self.java -21,1366406834,6,Project Lancet Surgical Precision JIT Compilers,github.com -0,1366403661,3,Octagon class optimization,self.java -0,1366400362,4,Minuteproject as a workspace,minuteproject.blogspot.fr -4,1366398682,8,Java makes mobile comeback with Tabris 1 0,h-online.com -0,1366398033,3,Slow Java compiler,self.java -33,1366353913,5,Java 8 will be late,blog.oio.de -0,1366336964,16,Can I get a code review to go over some concepts i m trying to implement,self.java -37,1366302817,6,Java 8 Schedule Secure the train,mreinhold.org -14,1366287748,8,Using Jasper Reports to create reports in Java,jyops.blogspot.in -10,1366281877,3,OOP Newbie Project,self.java -0,1366281829,17,We have a new build screen looking for ideas suggestions on how to maximise it s use,self.java -0,1366261399,3,JAVA Training Noida,self.java -3,1366234327,7,Where to find help for intermediate Java,self.java -6,1366227370,11,Getting Started with Java ME Embedded 3 3 on Keil Board,blogs.oracle.com -12,1366227210,11,Enjoy the magic of asciidoctor in java with asciidoctor java integration,lordofthejars.com -0,1366223744,5,Need help with a project,self.java -15,1366212841,9,The Great Java Application Server Debate Part 2 Jetty,zeroturnaround.com -16,1366210641,7,JSF 2 2 JSR 344 is final,blog.oio.de -24,1366207300,8,Java 7 Update 21 Security Improvements in Detail,blog.eisele.net -0,1366171722,6,Opening the design interface in Eclipse,self.java -2,1366168399,10,Beginner Help with text based RPG saving game and such,self.java -0,1366161412,10,Help with a Guess the Number program using GUI components,self.java -8,1366159283,14,Beginner Finished the MyBringBack Java series on learning Java where do I go now,self.java -2,1366154885,13,Is there a reference similar to Java Precisely for Java SE 6 7,self.java -8,1366144913,25,Beginner question is there a way to communicate like a chat with another PC behind nat without the use of a central or proxy server,self.java -15,1366131623,15,Why does changing the returned variable in a finally block not change the return value,stackoverflow.com -5,1366124724,6,Oracle Java SE Critical Patch Update,oracle.com -3,1366123893,4,Template Pattern Applied KeyStoreTemplate,ykchee.blogspot.com -16,1366121459,6,best practices no op in java,self.java -9,1366115919,7,Video Martin Thompson Performance Testing Java Applications,skillsmatter.com -6,1366100922,6,WordPress A Java Fanboys Red Pill,contentreich.de -1,1366098664,2,Puush Roullete,dl.dropboxusercontent.com -3,1366058961,2,Gridworld Menu,self.java -47,1366037994,7,meta Posting to r java for help,self.java -0,1366035779,2,String Intern,kodelog.wordpress.com -0,1366034581,3,Colorblind assist program,self.java -0,1366032601,2,Research Question,self.java -2,1366030519,4,JBoss EAR Deployment Question,self.java -0,1366026896,7,Document literal style web service with Java,dinukaroshan.blogspot.com -58,1366019783,23,Hey guys I made a Google Reader clone with JavaEE6 and AngularJS Give it a try Also it s open source see comments,commafeed.com -2,1366015203,8,Need to take picture when light is sensed,self.java -0,1365995723,12,How to make an image appear for an elapsed period of time,self.java -2,1365995274,13,Do you put braces in a new line or on the same line,self.java -14,1365993728,2,Java sound,self.java -0,1365989998,8,Cannot figure out how to prune a tree,self.java -1,1365934145,8,need help with action buttons on my work,self.java -0,1365923264,6,Problems with Java RE 7 U17,self.java -2,1365879680,6,Uploading Your Jar to Maven Central,kirang89.github.io -0,1365877575,28,In the following statement what does the int in parentheses mean Also why is it necceasry to have that AND the first int rand1 int Math random oneLength,self.java -0,1365871665,28,Can someone give me a graphics 101 please All of the things on the internet are too far ahead of me because I literally know nothing of graphics,self.java -24,1365866517,7,JUnit the Difference between Practice and Theory,eclipsesource.com -0,1365846483,7,JavaEE 7 with GlassFish on Eclipse Juno,blog.eisele.net -0,1365810771,8,r java Having issues generating random equations se,self.java -0,1365783200,10,Do you have any advice of how to start programming,self.java -0,1365778772,12,Need to create a new Forum page for my website in Java,self.java -0,1365771925,5,What Spring Integration is about,ruchirabandara.blogspot.sg -7,1365769363,4,Gradle Ain t Imperative,gradleware.com -0,1365750175,9,Grails user get current date amp time from controller,grails.1312388.n4.nabble.com -36,1365747802,4,Java 8 Optional Objects,blog.informatech.cr -0,1365738013,24,I m trying to make a GUI class that when a button is pressed launches a main class but it freezes when it launches,self.java -1,1365721900,4,Best beginner java book,self.java -22,1365712506,11,Check that your code is thread safe with JUnit and ContiPerf,blog.javabenchmark.org -0,1365698015,6,If MOS is down then what,blogs.oracle.com -8,1365697994,15,Including 2 versions 64 and 32 bit of the same library in Java NetBeans project,self.java -0,1365697514,13,Why do Java Packages use a DNS Like Naming Convention But in Reverse,self.java -0,1365682787,4,Upgrade to Java 7,self.java -0,1365681120,7,License of com sun files in OpenJDK,self.java -0,1365654467,4,Help with networking lab,self.java -9,1365593889,6,Structs failsafe coming to the JVM,infoworld.com -13,1365573492,7,Where to get java JDK source code,self.java -34,1365542681,9,First 4 Java EE 7 JSRs to go final,blogs.oracle.com -0,1365534132,21,Can someone help me with a Quicksort Algo I have all most Algos working except for quick sort any ideas help,self.java -0,1365519747,8,http databen ch Persistence Benchmark for the JVM,self.java -3,1365512571,7,How to write a tokenizer in Java,cogitolearning.co.uk -0,1365512458,7,Help with simple Java string problem D,self.java -0,1365504890,3,ByteBuffer to String,self.java -0,1365478676,9,Java noob that desperately needs help with multiple things,self.java -79,1365471220,18,UC San Diego Computer Scientists Develop First person Player Video Game that Teaches How to Program in Java,jacobsschool.ucsd.edu -0,1365468747,7,I have a noob question about subclasses,self.java -5,1365458153,6,Happy Releases with Maven and Bamboo,marcobrandizi.info -1,1365454355,6,JVM Biased Locking and micro benchmark,blog.javabenchmark.org -1,1365451281,12,Not sure where to ask this so I will start here arrays,self.java -1,1365449300,9,Which layout manager should I use in this program,self.java -2,1365440776,7,Generating an FXML file from JavaFX code,self.java -5,1365433638,7,Java Applet amp Web Start Code Signing,oracle.com -9,1365432485,3,MyFaces vs Mojarra,blog.oio.de -4,1365426927,5,Java Exception handling best practices,javarevisited.blogspot.com.br -4,1365418695,6,Java s Pattern and Matcher Class,self.java -48,1365401005,10,135 Million messages a second between processes in pure Java,psy-lob-saw.blogspot.com -2,1365397400,16,Can anyone offer insight on using InnoDB s row locking and transactions with Java Oracle JDBC,self.java -1,1365395930,8,How do you match a string with quotes,self.java -0,1365371369,5,Will Pay for Java Help,self.java -2,1365371151,14,What is the fastest way to compare a string to a Set multiword string,self.java -0,1365368851,17,I keep being told that a new Java update is available whenever I start up my PC,self.java -85,1365368463,9,Help me write a better open source Java decompiler,self.java -0,1365366108,6,FishCAT GlassFish 4 Community Acceptance Testing,theserverside.com -4,1365356781,6,Web Services Performance Testing with JMeter,blog.javabenchmark.org -17,1365347508,10,What s new in Java EE 7 s authentication support,arjan-tijms.blogspot.com -0,1365330369,9,Read from command line while program is running Windows,self.java -19,1365321999,5,Apache Struts 1 EOL Announcement,struts.apache.org -0,1365306168,13,Help me be ready for my next interview X post to r learnprogramming,self.java -23,1365304961,7,Metascala a tiny JVM written in Scala,github.com -0,1365290409,23,Making a minecraft mod and when testing it this error pops up despite lwjgl being listed in the libraries folder for the program,self.java -0,1365280161,5,Looking for a java mentor,self.java -15,1365230915,19,This is one of those bugs that could haunt a man to his grave any insight would be amazing,self.java -9,1365210653,6,A little story on Java Monitors,dinukaroshan.blogspot.com -20,1365193571,8,Java EE 7 and JAX RS 2 0,oracle.com -14,1365192467,7,Web Framework Benchmarks Round 2 techempower com,news.ycombinator.com -0,1365171916,6,I don t always throw exceptions,i.imgur.com -0,1365164997,9,IntelliJ 12 1 adds JavaFX 2 better retina support,jaxenter.com -0,1365134871,3,Java while loops,self.java -0,1365127902,9,A little test for you java fans out there,self.java -0,1365085950,7,classes are dead long live to lambdas,weblogs.java.net -6,1365083484,10,Richard Warburton not happy with Java 8 s Lambda API,mail.openjdk.java.net -9,1365083264,11,Want to get started with Java for fun Looking for advice,self.java -16,1365082412,3,Folder Structure Advice,self.java -6,1365047123,6,Newbie JDBC Question regarding DB credentials,self.java -27,1365035260,7,IntelliJ 12 1 adds JavaFX 2 support,jetbrains.com -39,1365017969,10,Unit test I checked in just now waiting for fallout,self.java -3,1364983290,6,Updated Jaybird Firebird JDBC driver Roadmap,jaybirdwiki.firebirdsql.org -23,1364976233,21,Starting with Java SE 7 Update 21 all Java Applets and Web Start Applications should be signed with a trusted certificate,blogs.oracle.com -8,1364962698,9,Embedded JSON database EJDB Java API binding now available,ejdb.org -0,1364961917,3,Generics help please,self.java -6,1364937702,6,Java EE Saviours and Frozen Time,blogs.oracle.com -0,1364925259,5,Need help with sorting words,self.java -0,1364921120,13,What do I need for second form of ID for oracle certification test,self.java -14,1364914616,8,Getting two bytes per ASCII character in Hex,self.java -12,1364897551,10,Is there a way to control chassis fans through java,self.java -0,1364832066,4,JEP 154 Remove Serialization,openjdk.java.net -7,1364824728,10,Top 10 Java Books you don t want to miss,jyops.blogspot.in -37,1364823864,10,Apache Commons FileUpload 1 3 released fix CVE 2013 0248,mail-archive.com -15,1364767653,9,NoSQL Inside SQL with Java Spring Hibernate and PostgreSQL,jamesward.com -1,1364764802,6,ZeroTurnaround Shifts to Open Source Hardware,zeroturnaround.com -7,1364754836,5,Help with Android Location crashing,self.java -11,1364751378,12,Hibernate ORM 4 2 0 Final and 4 1 11 Final Released,in.relation.to -12,1364749380,9,What is the correct way to translate my application,self.java -11,1364731350,10,Github for Binaries Bintray let into the wild by JFrog,jaxenter.com -26,1364664750,10,As a developer I want to use XML extremely easily,kubrynski.com -0,1364644635,3,Creating an explosion,self.java -2,1364612902,12,Java EE 7 and EJB 3 2 support in JBoss AS 8,jaitechwriteups.blogspot.in -0,1364605072,5,JFrame and g drawLine issue,self.java -9,1364591991,8,Is Java s sound API good for games,self.java -5,1364589134,2,SimpleORM whitepaper,simpleorm.org -3,1364586547,2,EMF DiffMerge,wiki.eclipse.org -31,1364585785,6,Apache Tomcat 7 0 39 released,mail-archives.apache.org -6,1364585707,7,Maven Release Plugin 2 4 1 Released,maven.40175.n5.nabble.com -6,1364585257,6,JavaFX 3D Preview for Java 8,youtube.com -4,1364583389,6,Alignment issues using multiple text editors,self.java -0,1364582806,7,Why We Need Lambda Expressions in Java,java.dzone.com -0,1364579186,11,Any real functional fundamental difference between Open jdk and Oracle jdk,self.java -0,1364555933,3,SeaBattle Java beginner,self.java -7,1364551852,8,Rebel Labs interview Sven Efftinge founder of Xtend,zeroturnaround.com -34,1364516770,12,Dollar Java API that unifies collections arrays iterators iterable and char sequences,dollar.bitbucket.org -4,1364512173,25,Problem installing Netbeans on Ubuntu 12 10 no compatible jdk was found however according to java version java version 1 7 0_15 It should work,self.java -0,1364507620,7,Why do people say J2EE or JEE,self.java -0,1364488427,4,Framework Benchmarks TechEmpower Blog,self.java -0,1364476718,3,Securing J2EE Applications,javajeedevelopment.blogspot.fr -11,1364468834,5,Theming in JSF 2 2,jdevelopment.nl -0,1364467766,21,I am looking for a way to use the for loop to iterate through a string but in chunks of 3,self.java -37,1364431415,14,Why does Java switch on ordinal ints appear to run faster with added cases,stackoverflow.com -0,1364418956,6,Need help with coding a question,self.java -2,1364418316,10,On JavaScript and Java s missed potential in the browser,reddit.com -3,1364417592,6,Open source Java iOS tools compared,javaworld.com -3,1364414670,7,Tools to start a new Java project,jroller.com -78,1364396565,4,Everything about Java 8,techempower.com -3,1364395004,8,What is Object Oriented Programming A Critical Approach,udemy.com -0,1364389786,5,Reviewer for Java OOP Interview,self.java -0,1364384751,17,After a couple of years developing raw Java this is how I felt when I met Maven,youtu.be -5,1364371128,5,Periodic Thread Processing in Java,drdobbs.com -93,1364339846,6,Java Scaring Tigers since 5 0,i.imgur.com -3,1364338133,5,Throwing Events in Java Game,self.java -0,1364336822,13,does Anyone know a good music file converter to convert to mp3 format,self.java -4,1364329851,28,Java memory leak detection crucial part of APM applications coded in Java still can leak Tools help but only if their users know how to use them wisely,correlsense.com -1,1364328954,13,Taking the WebSphere Liberty Profile for a spin using Intellij on the iMac,planetjones.co.uk -0,1364324988,9,r java Need your help guys with an assignment,self.java -11,1364316735,16,Scanner vs BufferedReader Is Scanner just a kludge until students are advanced enough to use streams,self.java -3,1364316106,34,r java I need your help I am taking a JAVA class however from what I can tell almost everything I am learning is either bad practice or deprecated Ie Setlayout null setBounds etc,self.java -0,1364315457,4,Inner classes in java,javaroots.com -7,1364306994,3,Gradle build progress,mail.openjdk.java.net -3,1364306344,6,Cryptography Using JCA Services In Providers,ykchee.blogspot.com -33,1364306048,5,JDK 8 Early Access Releases,jdk8.java.net -2,1364304825,14,Step by step guide on How to make use of Nashorn with Java 7,blog.idrsolutions.com -15,1364295288,3,Java and databases,self.java -1,1364292703,10,Best way to open user s browser on double click,self.java -0,1364284778,5,My List template class Improvements,self.java -0,1364260645,5,Getting back in the saddle,self.java -17,1364258916,15,How do I isolate an open source JAR behind an API without introducing version conflicts,self.java -0,1364242803,8,Installing JSF 2 2 on JBoss AS 7,mastertheboss.com -8,1364241532,6,Matching Engine with 1M sec operations,self.java -0,1364240629,5,Configuring CDI with Tomcat example,byteslounge.com -8,1364229114,6,Stateless views in JSF 2 2,jdevelopment.nl -18,1364225885,10,Java 8 Starting to Find Its Way into Net Mono,infoq.com -2,1364218514,6,ReentrantLock vs Intrinsic Lock in Java,javarevisited.blogspot.com.au -0,1364206679,3,Can Anyone help,self.java -0,1364192633,8,Java Hacker Uncovers Two Flaws In Latest Update,informationweek.com -5,1364166037,10,When in the order of opperations does explicit casting occur,self.java -24,1364160483,7,Introducing Kids to Java Programming Using Minecraft,blogs.oracle.com -0,1364152180,10,Taking WAS Liberty Next Profile for a spin in Intellij,planetjones.co.uk -0,1364145506,15,noob alert How change the content of a label once a button has been clicked,self.java -31,1364139834,50,Is the book Java Performance Tuning still relevant It s almost 10 years old now and on a precursory flip through I saw several mentions JVM tricks that are simply outdated Is anyone familiar with this book Is it worth picking up Are there any good books on the subject,self.java -0,1364124049,8,Free but Shackled The Java Trap GNU Project,gnu.org -0,1364071296,10,Error when trying to parse a string as an int,self.java -1,1364066398,6,Looking for feedback on app idea,self.java -16,1364053731,15,Why I have planned to move to Apache TomEE the next generation Java EE server,netbeanscolors.org -0,1364016592,2,ContextClassloader usages,javaroots.com -0,1364010961,8,Developing QnA app using Spring MangoDB and BootStrap,satishab.blogspot.sg -0,1363997009,11,Code in if Statement Not Being Called When Clearly True Help,self.java -9,1363987973,3,Saving Java EE,blog.dblevins.com -0,1363978105,10,Quick question How does the java Hash table generate hashes,self.java -0,1363975474,12,noob alert I need help sending an attachment to my gmail account,self.java -0,1363972566,17,Can I zip up data files in my jar and deploy them when the jar is ran,self.java -0,1363969031,9,Problem with receiving objects with objectinputstream Very strange bug,self.java -0,1363964844,2,Inheritance Question,self.java -0,1363954998,4,Refactor to remove duplication,matteo.vaccari.name -13,1363948738,25,Integrate AngularJS into a Maven based build process and develop automated unit tests and end to end tests with Jasmine and Arquillian for AngularJS applications,blog.akquinet.de -0,1363923983,5,Input from TextFile and StandardInput,self.java -0,1363921507,15,Java email program need to find way of printing quantities of emails with same domain,self.java -0,1363912934,1,Confused,self.java -1,1363893540,2,Using JComboBoxes,self.java -6,1363863605,9,New and Noteworthy in Liberty 8 5 Next beta2,ibm.com -0,1363859276,5,Java Stuff my funny motto,javastuff.blogspot.com -281,1363839493,10,Oracle Corporation Stop bundling Ask Toolbar with the Java installer,change.org -2,1363831032,6,Minipulating and then executing a string,self.java -0,1363828614,5,Observer design pattern removeObserver question,self.java -1,1363819073,4,Monte Carlo simulation help,self.java -5,1363804287,12,Out of curiosity What tools are you using to program in Java,self.java -13,1363800360,16,Why I will use Java EE instead of Spring in new Enterprise Java Projects in 2012,javacodegeeks.com -0,1363790010,10,If Java was a Haskell Part 2 The Type System,java.dzone.com -1,1363785811,2,Java CVE,self.java -1,1363783264,12,JBoss BRMS adding a declarative data model to the Customer Evaluation demo,howtojboss.com -6,1363768560,3,Reasons for IntelliJ,java.dzone.com -18,1363765834,12,How do I make the leap from Java novice to Java intermediate,self.java -7,1363761286,4,Java Puzzle Square root,corner.squareup.com -97,1363755008,1,Bonding,xkcd.com -0,1363727230,4,Help Java Programming Assignment,self.java -0,1363723313,7,I need some help on a project,self.java -3,1363694895,3,ZeroTurnaround Acquires Javeleon,zeroturnaround.com -1,1363693814,5,Groovy 2 1 2 released,jira.codehaus.org -14,1363691487,12,What objects do modern java programmers use for arrays and hash tables,self.java -4,1363689851,4,My Roman Numeral Converter,self.java -0,1363684767,10,Migration of GlassFish Eclipse plugins and Java EE 7 support,blogs.oracle.com -0,1363662943,16,Is there an online Java compiler that isn t buggy as hell and has decent features,self.java -22,1363661789,15,Dependency Injection with Spring Resource Inject or Autowired They re all similar but not identical,flowstopper.org -0,1363631209,2,Duke Images,duke.kenai.com -0,1363629198,8,Want to start from the beginning with Java,self.java -1,1363623207,6,Having issues with java beans OpenJDK7,self.java -0,1363613226,2,constructor help,self.java -16,1363609212,7,Cleaning up from the JDK7 OSX nightmare,self.java -0,1363608420,3,Experts please help,self.java -1,1363598538,13,Whats in a name Reason behind naming of few great projects Part II,javaroots.com -37,1363591432,16,Optimization of a lock free concurrent queue a journey from 10M to 130M updates a second,psy-lob-saw.blogspot.com -0,1363562066,5,Problem with output using GregorianCalendar,pastebin.com -1,1363539783,6,Help with extracting variable from loop,self.java -0,1363532314,3,Java Sound System,self.java -1,1363498557,31,How do I deal with the fact the text is different sizes on different platforms I can make programs on Linux and the text is minuscule on Windows with same program,self.java -1,1363491488,8,Help with User Input and If Else Statements,self.java -17,1363486672,6,Is JSF going to die out,self.java -16,1363438449,12,Red Hat s OpenJDK 6 Play What It Means for SaaS Java,saasintheenterprise.com -0,1363385447,7,Why Not One Application Per Server Domain,adam-bien.com -5,1363384024,6,Eclipse is not able to run,self.java -10,1363381621,7,JSF 2 2 Proposed Final Draft Posted,weblogs.java.net -0,1363363585,18,University CS Student confused out of my mind about linkedlists Any tips tricks that help you understand them,self.java -2,1363361488,10,HSQL SQLServer Hibernate DB ID s won t place nicely,self.java -12,1363354670,9,The Open Closed Principle in review By Jon Skeet,msmvps.com -0,1363321433,16,I have to create a minesweeper game and I m stuck trying to hide the mines,self.java -0,1363308272,16,Having some trouble getting rid of a java program Would anyone be able to help me,self.java -0,1363292167,11,How do I run a pseudo main method with an applet,self.java -0,1363275067,11,How Clojure Babies Are Made Compiling and Running a Java Program,flyingmachinestudios.com -6,1363264032,8,Trouble with loops to make a simple animation,self.java -4,1363260329,11,Code Quality Tools Review for 2013 Sonar Findbugs PMD and Checkstyle,zeroturnaround.com -3,1363225023,19,I would like to get the source code for a java game applet how do I do it freeware,self.java -0,1363211984,3,Java parameter collapse,self.java -16,1363196023,8,There are a dozen known flaws in Java,blogs.computerworld.com -1,1363183474,6,Quick question about Strings and Char,self.java -4,1363174645,7,A different way to do code review,codebrag.com -4,1363149932,9,Lucene amp amp 039 s TokenStreams are actually graphs,searchworkings.org -0,1363124283,16,Interview Tomorrow Need a crash course in Java linked lists and their application in tree structures,self.java -0,1363120025,26,Had some fun with my java programming assignment Thought it was so funny I decided to submit the source code feel free to compile and enjoy,self.java -0,1363118861,9,Learning Java with no dev experience Wish me luck,self.java -0,1363117034,21,Witty Moniker Games Presents Parrotry A free Java sandbox platformer game Link is to my website which contains the download link,wittymoniker.tk -0,1363108288,16,Could someone show me how to set up the for loop for this encryption decryption program,self.java -0,1363104944,4,String to int array,self.java -27,1363097672,20,Can someone explain to me like I m 5 what a hashmap is and how to basically use it Thanks,self.java -0,1363097135,13,Code help How do I lock a tile in a grid lay out,self.java -7,1363090796,3,Question about lambdas,self.java -4,1363082403,8,How to make a class Immutable in Java,javarevisited.blogspot.sg -14,1363074310,5,OmniFaces 1 4 is released,balusc.blogspot.com -2,1363066898,39,In Java especially for Google App Engine how does one create a submit search form that goes to a url e g www website com search Search Terms and have a java class parse the parameters and display html,self.java -0,1363053807,6,help with encryption and decryption project,self.java -0,1363047665,2,Help me,self.java -10,1363046914,8,Jetty 9 released bringing SPDY and WebSocket support,jaxenter.com -5,1363046596,9,Easy extensionless URLs in JSF with OmniFaces 1 4,arjan-tijms.blogspot.com -0,1363039354,9,Oracle censoring NetBeans community polls More info in comments,netbeans.org -0,1363020413,14,Big Data MapReduce on Java 8 collections would be awesome Java User Group London,plus.google.com -0,1363017986,11,How to brush up Java skills on the day before interview,self.java -16,1363005633,3,NLTK for Java,self.java -2,1363005584,10,Enhance a Java swing frame with JavaFx componets or functionality,lehelsipos.blogspot.sg -0,1362991634,1,java,self.java -2,1362991250,9,Monitor OS pauses with jHiccup when benchmarking Java App,blog.javabenchmark.org -1,1362971521,19,In JSoup how can one find select a div class id etc whose name is more than one word,self.java -9,1362924935,10,JPA and CMT Why Catching Persistence Exception is Not Enough,piotrnowicki.com -1,1362923992,7,Why do you enjoy being a developer,self.java -2,1362902136,8,Interested in learning Java where do I start,self.java -0,1362898323,2,Java Commands,self.java -30,1362868984,11,First thing I ve written in Java I m proud of,github.com -2,1362849266,13,Eclipse fails to run after installing java on Linux Mint Any ideas help,self.java -8,1362842916,5,Static Methods and Unit Testing,jramoyo.com -0,1362835254,6,LearnJavaOnline org Free Interactive Java Tutorial,ergtv.com -0,1362824671,2,Need help,self.java -21,1362796795,4,Java on iOS finally,jaxenter.com -0,1362791864,17,If I am running windows 8 should I download the 32 or 64 bit version of eclipse,self.java -0,1362784442,8,JBoss EAP alpha binaries available for all developers,community.jboss.org -4,1362775425,17,What skills will get a premium pay rate for Java Developers over the next couple of years,self.java -44,1362766075,6,Is the Spring Framework still relevant,self.java -0,1362760956,9,After consulting North Korea on how to keep customers,imgur.com -5,1362748901,4,JAXConf US goes free,jaxenter.com -1,1362738936,8,Three year Java abstinence there and back again,zeroturnaround.com -0,1362735550,9,Sins of GWT a k a Merits of JSF,blog.terrencemiao.com -0,1362729690,21,A question on Recursion I got my code working but it s not printing the way the question asks Any hints,self.java -13,1362686339,10,ModelMapper A simple object mapping library Useful or too simple,modelmapper.org -0,1362682489,13,If I have multiple reddit tabs open does that make me a thredditor,self.java -0,1362667987,8,OracleHelp JavaHelp HelpGUI 3 help systems for Java,helpinator.com -13,1362667023,11,4 Things Java Programmers Can Learn from Clojure without learning Clojure,lispcast.com -30,1362662307,15,Install me maybe The ZeroTurnaround devs produce a fun parody video to Call me maybe,youtube.com -27,1362657259,6,Continuous Performance and JUnit with ContiPerf,blog.javabenchmark.org -0,1362633526,23,So I take APCS but my teacher can t explain to me how to use a scanner method or explain how it works,self.java -5,1362619000,6,Trying to generate a regex programatically,self.java -9,1362611069,6,Garbage Collection in Java Parallel Collection,insightfullogic.com -6,1362611041,6,Merging Queue ArrayDeque and Suzie Q,psy-lob-saw.blogspot.com -6,1362585526,9,Hibernate manages to fix bug After nearly 7 years,hibernate.onjira.com -8,1362584230,10,Online Counter Days since last known Java 0 day exploit,java-0day.com -38,1362582780,18,JEP 178 package a Java runtime native application code and Java application code together into a single binary,infoworld.com -9,1362582526,12,XChart Release 2 0 0 Bar Charts Themes Logarithmic Axes and more,blog.xeiam.com -7,1362581391,9,Oracle Rushes Emergency Java Update to Patch McRAT Vulnerabilities,threatpost.com -22,1362579978,11,Prompted by Oracle Rejection Researcher Finds Five New Java Sandbox Vulnerabilities,threatpost.com -6,1362564492,8,JBoss EAP is it Open Source French translation,translate.google.com -1,1362560450,11,How to run lines in intervals or make a program wait,self.java -0,1362535272,22,How would I separate a single line of input into different variables while using a Scanner to read data from a file,self.java -2,1362518541,7,Twitter open sources Java streaming library Hosebird,h-online.com -7,1362502234,8,Any good project to see other s code,self.java -4,1362500855,5,Security Alert CVE 2013 1493,oracle.com -0,1362499577,11,java How to avoid using ApplicationContext getBean when implementing Spring IOC,stackoverflow.com -0,1362493583,19,Not sure if this is the right subreddit but I don t really understand what the return command does,self.java -3,1362487215,16,Java Raspberry Pi Mocha Raspberry Pi Hacking with Stephen Chin Oracle Evangelist and Java Rock Star,blog.jaxconf.com -3,1362484716,10,JRebel 5 2 Released Less Java restarts than ever before,theserverside.com -0,1362452059,4,Help with an exercise,self.java -0,1362436343,9,Need help with java very new to the language,self.java -19,1362434705,14,Java SE 7u17 Fixes 0 day exploits CVE 2013 0809 amp CVE 2013 1493,oracle.com -0,1362429661,4,Netbeans has surpassed Eclipse,self.java -0,1362428879,4,A star Java code,self.java -1,1362427187,10,Managing configuration of the EAP6 JBoss AS7 with CLI scripts,blog.akquinet.de -0,1362420025,8,DAE have problems with WatchService on Windows 7,self.java -0,1362411939,13,Would this program work in finding out my grade for a given class,self.java -0,1362399107,5,JVM Crash Core Dump Analysis,itismycareer.com -0,1362381437,9,How would you respond to these java interview questions,self.java -0,1362381273,8,N O V A 3 JAR All Resolutions,jar4mobi.blogspot.com -0,1362373525,4,Highschool level java questions,self.java -0,1362364514,10,Beginner Java Int to String or Char Can you help,self.java -0,1362330923,14,Is there a Java library for immutable collections that isn t Google s Guava,self.java -113,1362326971,7,Why does this code print hello world,stackoverflow.com -0,1362289297,2,Constructor help,self.java -0,1362287904,4,Need Help With Error,self.java -0,1362286711,14,Is it possible to change this nested for loop to a nested while loop,self.java -2,1362277755,3,Mac and Java,self.java -1,1362266953,8,Virtual Developer Day Fusion Development ADF March 5th,self.java -44,1362263128,9,Oracle Brings Java to iOS Devices and Android too,blogs.oracle.com -3,1362237363,7,Write your own profiler with JEE6 interceptor,blog.javabenchmark.org -9,1362220470,10,JVM performance optimization Part 5 Is Java scalability an oxymoron,javaworld.com -5,1362204101,4,Good game making tutorial,self.java -0,1362193910,4,Could use some help,self.java -1,1362183699,6,HTTP JSON Services in Modern Java,nerds.airbnb.com -2,1362180973,7,White Black listing Java Applets on websites,self.java -50,1362180723,5,Eclipse 4 2 SR2 released,jdevelopment.nl -0,1362176240,7,Java Source Code Tic Tac Toe Game,forum.codecall.net -0,1362165603,5,JavaScript Charts for Java Developers,java.dzone.com -0,1362155203,3,Why Lambdas Suck,blog.jaxconf.com -3,1362153345,6,Servlet Monitoring with Metrics from Yammer,blog.javabenchmark.org -2,1362148405,7,Looping bug in jdk1 6 0 u31,self.java -7,1362143768,9,Glassfish 3 1 2 2 Web Service Memory Leak,blog.javabenchmark.org -0,1362142016,10,How to Swap two integers without temp variable in Java,javarevisited.blogspot.com.au -52,1362138711,5,Yet Another Oracle Java 0day,blog.fireeye.com -4,1362124214,3,Advanced ListenableFuture capabilities,nurkiewicz.blogspot.com -0,1362097196,9,Help jar resolution is too big for my screen,self.java -6,1362085425,5,JSF is going spec Stateless,weblogs.java.net -18,1362071259,6,Open source Java EE kickoff app,jdevelopment.nl -9,1362065214,5,Vert x on Raspberry Pi,touk.pl -14,1362055017,3,Benchmarking With JUnitBenchmark,blog.javabenchmark.org -1,1362052992,13,Ask Toolbar Checkbox requires hitting the box itself is this a new thing,self.java -37,1362031780,12,Microsoft EMC NetApp join Oracle s legal fight against Google on Java,infoworld.com -14,1362015802,13,Pet Java Web Application Projects where do you prefer to have them hosted,self.java -3,1362010990,13,Unable to Connect to Database If I read that line one more time,self.java -1,1362000699,9,Looking for a replacement for JNetPcap or implementation advice,self.java -2,1361986770,12,Need help getting String int to display a running count on JLabel,self.java -0,1361967754,8,Spring for Apache Hadoop 1 0 Goes GA,blog.springsource.org -21,1361958839,10,Pencils down Solutions to our Pat The Unicorns Java puzzle,zeroturnaround.com -4,1361935522,13,A great organization that advocates coding in schools x post from r codepros,code.org -1,1361933309,10,Example of java to MySQL communication Simple swing MySQL interface,reddev34.blogspot.com -2,1361926527,13,How do properly I use threads while looping video to JPanel using JavaFX,self.java -6,1361924272,8,Negative side effects of javac targetting old versions,self.java -2,1361923722,11,I m learning java in college but I need some help,self.java -0,1361919293,3,WebLogic Logging Configuration,middlewaremagic.com -2,1361915467,5,Printing character arrays in applet,self.java -87,1361912394,13,Why myInt myInt myLong will not compile but myInt MyLong will compile fine,stackoverflow.com -10,1361906341,15,JavaBuilders Declarative Swing UIs with YAML On a mission to maximize Java UI development productivity,code.google.com -3,1361883970,7,How do I disable dithering in Java2D,self.java -0,1361882991,10,5 Things a Java Developer consider start doing this year,jyops.blogspot.de -43,1361875880,11,New holes discovered in latest Java versions Tuesday 2013 02 26,h-online.com -27,1361864722,4,Shazam implementation in Java,redcode.nl -0,1361851520,3,d 2f n,self.java -3,1361847206,9,making pascal s triangle using 2d arrays and recursion,self.java -0,1361844564,17,Need help with a basic java program like super basic Maybe a minute of an experts time,self.java -4,1361840847,4,Java and Slick 2d,self.java -48,1361839200,7,Usage of Java sun misc Unsafe class,mishadoff.github.com -1,1361792318,9,Demo Spring Insight plugins for Spring Integration and RabbitMQ,java.dzone.com -0,1361767405,19,Ok so I m having a polymorphism test tomorrow in my AP Computer Science class I need help urgently,self.java -18,1361740619,25,Rest services a developer workflow for defining data and REST APIs that promotes uniform interfaces consistent data modeling type safety and compatibility checked API evolution,github.com -5,1361739394,19,Apache OpenWebBeans Java EE CDI 1 0 Specification JSR299 TCK compliant and works on Java SE 5 or later,openwebbeans.apache.org -18,1361719748,3,Java 7 WatchService,javacodegeeks.com -25,1361718676,8,Martin Fowler on Schemalessness NoSQL and Software Design,cloud.dzone.com -18,1361665835,7,Netbeans or Eclipse Which do you use,self.java -21,1361654496,9,SECURITY CVE 2013 0253 Apache Maven 3 0 4,maven.40175.n5.nabble.com -0,1361651676,8,Brief comparison of Java 7 HotSpot Garbage Collectors,omsn.de -0,1361649082,6,Almost done with Head First Java,self.java -0,1361635054,8,NEED HELP Searching Array not working HOMEWORK HELP,self.java -26,1361620819,7,Rails You Have Turned into Java Congratulations,discursive.com -2,1361582535,9,The minecraft creators mojang brought the slick2d site down,twitter.com -2,1361563592,4,OpenJDK wiki system preview,wiki-beta.openjdk.java.net -104,1361562340,10,Almost halfway through sams teach yourself java Its going well,imgur.com -5,1361553128,45,Please explain like I m 5 years old why can t any given JAR be made to run on a different OS platform than the one for which it was written Why can t a JAR made for Windows be made to run under Android,self.java -2,1361546665,7,Serialization of Array of Serializable Objects Problem,self.java -8,1361539882,6,Books that every developer must read,femgeekz.blogspot.in -4,1361505027,5,Splitting a task via threading,self.java -0,1361498419,9,I feel like a MASSIVE noob but any help,imgur.com -0,1361498174,8,Help with sending information to a text file,self.java -0,1361478661,19,Newbie question here how do I you write a call in one method to a method in another class,self.java -75,1361467304,5,Trying to reinvent a b,self.java -1,1361454089,6,Pattern matching in Scala 2 10,eng.42go.com -0,1361433418,5,Java libraries in plain English,self.java -6,1361427727,50,I ve ported a moderately sized application to Java and I d like to distribute it but I don t want the user to have to install anything on their machine just double click and go Have I shot myself in the foot by planning on this method of distribution,self.java -4,1361420165,7,How to continue and expand my knowledge,self.java -24,1361410374,4,JDK8 developer preview delayed,mail.openjdk.java.net -5,1361394524,12,Interested in an easy to use code review tool Check out Codifferous,codifferous.com -14,1361365501,5,JavaFX 3D Early Access Available,fxexperience.com -4,1361364828,13,TCK access controversy chat with JPA 2 1 Expert Group member Oliver Gierke,jaxenter.com -0,1361335355,9,Need some help with working with classes and methods,self.java -1,1361334306,6,Java Plugin on Localhost using jprofiler,self.java -5,1361307269,12,Updated Release of the February 2013 Oracle Java SE Critical Patch Update,oracle.com -18,1361306833,9,Java SE Development Kit 7 Update 15 Release Notes,oracle.com -0,1361304838,5,Help Beginner Java Programming Assignment,self.java -12,1361303466,9,Has anyone developed UIs with JavaFX without getting frustrated,self.java -7,1361303007,5,Java EE 7 Maven Coordinates,wikis.oracle.com -11,1361302366,8,Introducing jenv a command line Java JDKs Manager,gcuisinier.net -0,1361299350,5,Spider Solitaire implementation for Java,self.java -0,1361293002,6,Looking for help getting into java,self.java -0,1361290710,13,Kickstarter to create Clojure screencasts Learn the most powerful language on the JVM,kickstarter.com -4,1361287653,6,The Heroes of Java Marcus Hirt,blog.eisele.net -25,1361280293,5,java util concurrent Future Basics,nurkiewicz.blogspot.ie -11,1361267490,6,Magical Java Puzzle Pat The Unicorns,zeroturnaround.com -0,1361254964,30,An American teacher Mary Herberth explains all the basic concepts of Java in a single class class as in both a school class and Java class in a naughty way,theladyteacher.blogspot.in -0,1361239620,5,Converting Integers to Binary Question,self.java -6,1361234761,8,Best coding environment for high school AP course,self.java -1,1361213171,12,Make a browse button and get chosen directory without selecting a file,self.java -0,1361209853,6,Help creating a url randomizing script,self.java -0,1361199738,5,International travel for Java Developers,self.java -4,1361197412,20,Discussion request If there is one Java library API class you really hate which one is it Here is mine,self.java -27,1361164051,19,A bit of a vague question but why does Java as a language draw so much hate and scorn,self.java -0,1361150200,4,Help with java program,self.java -0,1361127236,3,Pathfinding Unknown Environment,self.java -10,1361120947,10,What parser is the best for parsing HTML in Java,self.java -7,1361108479,22,WebJars are client side web libraries e g jQuery amp Bootstrap packaged into JAR Java Archive files x post from r javapro,webjars.org -1,1361101993,7,This week in Scala 16 02 2013,cakesolutions.net -3,1361081525,8,how to use jsoup to select certain lines,self.java -15,1361076328,11,So I want to write a server for a Java game,self.java -0,1361061096,3,Linear congruential generator,self.java -0,1361054104,7,PSA Anyone That Actually Enjoys Network Programming,self.java -1,1361049039,5,Best Java free java profiler,self.java -0,1361037075,9,Adding Spring lowers the quality of Java EE applications,infoq.com -0,1361033634,5,I can t uninstall java,self.java -0,1361031407,9,CAST Adding Spring Lowers the Quality of JEE Applications,infoq.com -1,1360982854,2,About Java,aboutjava.net -2,1360975390,6,Apache Ivy 2 3 0 released,mail-archive.com -9,1360975339,7,Apache Commons Daemon 1 0 13 released,mail-archive.com -0,1360966835,11,Help with creating specific input process for The Game Of Life,self.java -3,1360949258,18,Hibernate fail Using FetchType EAGER with ElementCollection gives you multiple time the same entity Answer Not A Bug,hibernate.onjira.com -7,1360932233,4,Symmetric Encryption in Java,blog.palominolabs.com -8,1360921268,18,Can somebody confirm deny this for me Does an array READ at a specific index block other threads,self.java -1,1360917110,17,How to solve Plugin execution not covered by lifecycle configuration error in Eclipse and the m2eclipse plugin,java4developers.com -1,1360917083,6,Series About Java Concurrency Pt 6,mlangc.wordpress.com -3,1360916692,3,Fizz Buzz Eficiency,self.java -1,1360893573,9,Help creating a web service using Java and Axis2,self.java -1,1360885538,6,Pathfinding using flow fields in Java,youtube.com -0,1360877796,2,Interface Question,self.java -3,1360870403,4,Stateless JSF short note,balusc.blogspot.com -3,1360870063,8,EasyCriteria 2 0 JPA Criteria should be easy,uaihebert.com -100,1360866391,4,Happy Valentine s Day,imgur.com -0,1360862735,11,Does anyone here have any idea what this error message means,i.imgur.com -5,1360859501,9,Effective Java by Bloch any exercises in the text,self.java -0,1360838400,12,Anyone come across any tooling plugins for editing LESS files within Eclipse,self.java -12,1360810649,5,Best high school Java textbook,self.java -0,1360801412,7,Looking for some help with unit collision,self.java -9,1360792791,5,Java IDE that allows notes,self.java -2,1360771955,10,Learning bits and bytes java io Console broken in Eclipse,learningbitsandbytes.blogspot.com -1,1360768866,6,Series About Java Concurrency Pt 5,mlangc.wordpress.com -1,1360768764,12,Made a notepad out of boredom but having problems implementing some features,self.java -28,1360757906,10,IntelliJ IDEA 12 Wins Jolt Award for Coding Tools 2013,blogs.jetbrains.com -3,1360748852,12,Are there any good websites for learning Swing and graphics API s,self.java -1,1360747220,7,Alignment Concurrency and Torture in the JMM,psy-lob-saw.blogspot.co.uk -1,1360727626,7,Preserving JSF Request Parameters and REST URLs,ninthavenue.com.au -6,1360724473,9,Is there anything like codeacademy that teaches Java interactively,self.java -19,1360714150,16,I have created r Slick2D Join us in building a community around this Java graphics library,reddit.com -42,1360708328,6,Java 8 From PermGen to Metaspace,java.dzone.com -4,1360707020,13,Uncaught Java Thread Exceptions 3 ways to install default exception handler for threads,drdobbs.com -8,1360701991,16,Updates to February 2013 Critical Patch Update for Java SE The Oracle Software Security Assurance Blog,blogs.oracle.com -6,1360674484,6,Need help finding a Java Developer,self.java -0,1360672733,7,5 Concurrent Collections Java Programmer should know,javarevisited.blogspot.com.au -0,1360658923,10,Java developer for hire in the Leiden region the Netherlands,self.java -0,1360634155,29,I want to write a valentine s day card with some java code for my boyfriend and was wondering if anyone could tell me how to do it correctly,self.java -5,1360622719,4,Need Better Graphics System,self.java -1,1360620374,11,Apache Syncope is an Open Source system for managing digital identities,syncope.apache.org -47,1360591334,10,IntelliJ IDEA 12 Wins Jolt Award for Coding Tools 2013,drdobbs.com -13,1360583302,7,10 Online Snippets to Test your Coding,smashinghub.com -1,1360567073,7,Generating Sitemaps Using Spring Batch and SitemapGen4j,jramoyo.com -0,1360562831,6,BriteSnow on Jetty Quick Start Guide,mydailyhash.wordpress.com -8,1360548365,6,First Step on Legacy Code Classifying,coding.abel.nu -0,1360545719,9,Make a runnable jar that includes the java file,self.java -0,1360519574,15,Please help me with solving a Java issue while setting up minecraft server with Bukkit,self.java -2,1360486453,11,Green forest addition for JEE amp Spring with Action Handler architecture,code.google.com -0,1360444809,6,Help in learning custom exception handlers,self.java -8,1360440088,3,A java crawler,github.com -0,1360439427,13,Looking to transition into game development in Java struggling to find suitable tutorials,self.java -30,1360437946,13,With possibly outdated J2EE skills how to land a job with current technologies,self.java -0,1360435557,12,Dependometer performs a static analysis of physical dependencies within a software system,source.valtech.com -4,1360430882,7,Trying to view bytecode for a class,self.java -7,1360414619,11,Are there any toolchains for Java similar to the Go toolchain,self.java -19,1360387498,6,WeatherAPI platform agnostic live weather platform,github.com -0,1360367018,3,Hash codes question,self.java -4,1360359469,4,Canvas based GUI Input,self.java -4,1360353165,11,The correct way to use integration tests in your build process,zeroturnaround.com -3,1360348953,6,On the Dark Side of Craftsmanship,architects.dzone.com -0,1360342064,21,meta If you can t be bothered to format the code in your post correctly I m not going to answer,self.java -0,1360340558,6,Need help with JConsole JMX remote,self.java -0,1360333703,9,How to lock up Swing UI during asynchronous operation,self.java -0,1360329238,7,Learning bits and bytes Suppressing JExcel warnings,learningbitsandbytes.blogspot.com -0,1360325901,6,Scala is better than injection framework,blog.scaloid.org -21,1360304659,5,Java Enum implementing an Interface,byteslounge.com -13,1360272648,7,The fork join framework in Java 7,h-online.com -21,1360268935,11,Litte framework to create Java programs that behave like Linux daemons,github.com -0,1360265242,21,xpost from r javahelp I keep getting a NaN value when dividing and can t figure out where it s happening,reddit.com -0,1360260019,12,images not loading when using java sockets to make a proxy server,stackoverflow.com -0,1360257409,9,Hello I need some help with a class assignment,self.java -0,1360254164,7,Weird bug teacher can t find issue,self.java -4,1360248675,8,Java looping bug details Where is bug 7070134,self.java -3,1360243080,15,Java Spotlight Episode 119 Emmanuel Bernard on JSR 349 Bean Validation 1 1 emmanuelbernard jcp,blogs.oracle.com -6,1360215196,5,Need help for potential interview,self.java -0,1360210208,3,Trouble with classes,self.java -0,1360202219,5,Tic Tac Toe Java Tutorials,forum.codecall.net -1,1360201483,4,Upcasting downcasting Java Tutorials,forum.codecall.net -0,1360186811,14,New to programming not sure what the Syntax error is on this Help please,self.java -5,1360170195,5,PrimeFaces 3 5 RC1 Released,blog.primefaces.org -0,1360163023,5,Oracle releases Java patch update,infoworld.com -3,1360160070,4,The Future of IcedTea,blog.fuseyism.com -216,1360157768,10,3 000 sign petition to remove Ask Toolbar from Java,jaxenter.com -0,1360137599,4,IcedTea6 1 12 Released,blog.fuseyism.com -1,1360131703,8,Trying to multiply a 2x2 matrix please help,self.java -16,1360107393,2,Why Java,self.java -1,1360106690,4,Still learning any suggestions,self.java -0,1360096267,8,Cannot add platform crEme to netbeans Please help,self.java -1,1360094867,4,Looking for Java Assertions,self.java -0,1360093491,6,Recommended Books Reading Tomcat Java Admin,self.java -0,1360085731,16,Do I still need JAVA installed Where am I likely to have a problem without it,self.java -0,1360085333,8,Security holes in java 6u39 vs java 7u13,self.java -2,1360078327,5,Online courses for Java EE,self.java -0,1360067262,10,I Didn t Ask for a Toolbar with That Java,weblogs.java.net -163,1360065237,6,Petition Stop bundling crapware with Java,change.org -0,1360047379,19,The Firebird JDBC team is happy to announce the release of Jaybird 2 2 2 also available on maven,firebirdsql.org -1,1360037965,6,Defensive API evolution with Java interfaces,blog.jooq.org -0,1360037882,17,What are the different Java GUI toolkits that exist and what are the pros cons of them,self.java -11,1360031680,9,Introducing a new Java framework for web development Micro,self.java -1,1360010002,7,Drools decision tables with Camel and Spring,toomuchcoding.blogspot.com -0,1360007284,12,Where is the best place to learn programming in Java from scratch,self.java -0,1360002859,12,Can somebody please tell me what I m doing wrong Noob Alert,self.java -0,1359997237,11,Maxine VM presentation at the Summer School of ECOOP 2012 PDF,wikis.oracle.com -3,1359987084,9,Java and Java EE Best Practices I m lost,self.java -77,1359980876,11,Java 6 now end of life time to move to 7,blogs.infosupport.com -0,1359967145,9,Jaybird 2 2 2 Firebird JDBC driver is released,firebirdnews.org -0,1359954656,3,Generating random number,self.java -13,1359946324,24,I remember reading a long time ago about a game that involved coding in Java Anyone have an idea what I m talking about,self.java -0,1359937309,9,How can I check if a process is running,self.java -13,1359927424,11,Does anyone know of a good website for practicing Java regex,self.java -1,1359896851,16,JDBC Realm and Form Based Authentication with GlassFish 3 1 2 2 and Primefaces 3 4,blog.eisele.net -0,1359871271,14,Noob here can someone please help on creating a word dictionary with 2 classes,self.java -0,1359866868,17,Is anybody else using the early access JDK8 builds and finding the compiler to be incredibly fragile,self.java -9,1359857771,6,Any good alternative to knowledgeblackbelt com,self.java -1,1359839947,17,Book Says This References Existing Class I m Sure It Makes a New One Who is Right,self.java -10,1359837825,11,How to parallelize loops with Java 7 s Fork Join framework,omsn.de -1,1359835888,5,Spring Social Api Providers list,github.com -2,1359830411,9,How do I make an image follow another image,self.java -0,1359826550,17,After being p0wn3d Twitter suggest users encourage users to disable Java on their computers in their browsers,blog.twitter.com -0,1359808511,10,Eclipse in Space Talking RCP and Robotics with Tamar Cohen,jaxenter.com -51,1359792763,7,A Java 8 Project Lambda feature summary,sett.ociweb.com -1,1359764433,9,JButton apocalypse Death of the JButton next gen gui,forum.codecall.net -0,1359759745,9,Up to date Java Library Benchmarks for Decoding Base64,self.java -5,1359759596,3,Gradle 1 4,h-online.com -2,1359757509,5,Java Developer Need Title Suggestions,self.java -0,1359753861,10,Noob here Adobe Edge animations not starting plase halp mooltipass,self.java -24,1359752676,9,Oracle Java SE Critical Patch Update Advisory February 2013,oracle.com -1,1359743311,7,Application Servers play musical chairs in 2013,zeroturnaround.com -5,1359738759,7,RichFaces 4 3 0 Final Release Announcement,bleathem.ca -4,1359721896,8,Difference between Heap and Stack memory in Java,javarevisited.blogspot.in -1,1359720199,6,The IP SQUARE Commons Java Libraries,mlangc.wordpress.com -2,1359690374,4,First steps towards graphics,self.java -1,1359687129,4,Help with permutation program,self.java -1,1359679621,11,Java blocked in Safari on 10 6 x 10 8 x,derflounder.wordpress.com -0,1359668013,9,Am I Doing It Right First Java Programming Homework,i.imgur.com -58,1359666228,19,What are the java essentials that you NEED to know if you want to get a job programming java,self.java -0,1359652743,10,Request Write a small helpful program Not sure of difficulty,self.java -0,1359642973,1,MineSweeper,self.java -0,1359634423,7,Gradle JavaFX Plugin 0 2 0 Released,speling.shemnon.com -3,1359582492,8,Noob question Using third party libraries in Java,self.java -0,1359553471,5,Caching with Spring Data Redis,blog.joshuawhite.com -0,1359495744,6,Firebird JDBC driver ported to Android,firebirdnews.org -0,1359490145,4,Concerning NAT Hole Punching,self.java -93,1359487454,8,Oracle will continue to bundle crapware with Java,computerworld.com -2,1359483671,8,Fixing The Inlining Problem by Dr Cliff Click,azulsystems.com -0,1359480470,7,Math class issues Clarification would be appreciated,self.java -0,1359478827,9,Need help with a REGEX pattern xpost r regex,self.java -25,1359462733,7,How aggressive is method inlining in JVM,nurkiewicz.blogspot.com -4,1359434067,3,Trouble with nonstatic,self.java -5,1359418375,6,Working with jzy3d 3 d graphs,self.java -1,1359408191,8,Help Supernoob need help with defining exact match,self.java -0,1359387550,6,Java Mutiple Class w parameters help,self.java -0,1359387063,45,Java servlet spec defines ISO 8859 1 as the default character encoding for POST requests which might cause problems in environments using UTF 8 as default This post describes a resolution for the issue in a multi application server environment with Guice s servlet module,blog.eluder.org -50,1359379517,8,We will fix Java security pledge Oracle devs,jaxenter.com -1,1359350903,13,We Reached the 1000 mark keep it going Check out my java project,kck.st -0,1359335506,8,Offer online introductory java course from r javahelp,reddit.com -0,1359333529,7,Configuring Notepad as a nifty Java IDE,quarkphysics.ca -0,1359330318,7,Mirroring an image over y height 2,self.java -0,1359329586,6,How to start programming in java,self.java -0,1359326482,14,Listing a directory on the class path when it s in a Jar archive,self.java -0,1359317474,16,Stackoverflow Tools Eclipse Plugins to generate DAO s Pojo s and JSP s from MySql tables,stackoverflow.com -13,1359299924,16,Is this a good enough random algorithm why isn t it used if it s faster,stackoverflow.com -29,1359292570,5,Building a Raspberry Pi Cluster,blog.afkham.org -0,1359287929,12,How Can Cloud IDEs Save Your Time Build and Deploy Part 2,cloudtweaks.com -0,1359268278,9,Why won t this code work Frozen While loop,self.java -0,1359230147,6,I made a sweet Java app,dl.dropbox.com -1,1359213617,11,MongoDB How to limit results and how to page through results,blogs.lessthandot.com -0,1359211095,7,Efficient way to create strings in Java,ravisrealm.tumblr.com -0,1359210463,4,Hyperscala a chat example,scala-topics.org -1,1359200784,6,Pentaho Reporting lib for generating reports,github.com -1,1359198177,8,Axon Framework 2 0 helps Java applications scale,h-online.com -1,1359198026,6,Eclipse Foundation announces Hudson 3 0,h-online.com -20,1359169142,2,Big Arrays,omsn.de -1,1359151828,13,NoSQL Unit is a JUnit extension that helps you write NoSQL unit tests,github.com -14,1359151643,18,ThreeTen project provides a new date and time API for JDK 1 8 as part of JSR 310,threeten.github.com -0,1359151529,9,unix4j implementation of Unix command line tools in Java,code.google.com -1,1359151123,6,Gressil Safe daemonization from within Java,github.com -3,1359150813,9,Need some help accepting input from the command line,self.java -1,1359127108,4,In Support Of Maven,theexceptioncatcher.com -30,1359118495,5,Groovy 2 1 is released,glaforge.appspot.com -1,1359111617,10,How to Modify json with GSON without using a POJO,stackoverflow.com -0,1359109996,7,Hello World not compiling in eclipse S,self.java -7,1359108882,5,Groovy 2 1 is released,self.java -2,1359085351,5,Is Java similar to C,self.java -1,1359047344,5,Logging in Java part 4,blog.zololabs.com -5,1359040097,9,nealford com Why Everyone Eventually Hates or Leaves Maven,nealford.com -12,1359030164,8,How to track lifecycle changes of OSGi bundles,eclipsesource.com -34,1359021319,14,Sometimes I just feel silly with the amount of indentation when doing simple things,self.java -1,1358999660,7,Outputting multiple lines of text in JTextArea,self.java -15,1358982410,6,Tips for getting proficient with Scala,self.java -0,1358977546,4,replaceAll doesn t work,self.java -1,1358970045,2,Netbeans Help,self.java -1,1358948664,7,A passionate defence of Java s virtues,javainxml.blogspot.ca -0,1358946729,12,How to check if a number is positive or negative in Java,javarevisited.blogspot.sg -4,1358944998,7,The default DataSource in Java EE 7,blogs.oracle.com -7,1358943692,9,Danny Coward on JSR 356 Java API for Websocket,blogs.oracle.com -34,1358935113,13,Apache Shiro is it ready for Java EE 6 a JSF2 Shiro Tutorial,balusc.blogspot.com -3,1358904508,2,Swing tutorials,self.java -9,1358889025,18,Managing the life cycle of resources in Java 7 the new try with resources block Blogs from RTI,blogs.rti.com -5,1358884371,4,Having problems learning java,self.java -114,1358871042,12,A close look at how Oracle installs deceptive software with Java updates,zdnet.com -0,1358865030,5,Disabling Java in Internet Explorer,infoworld.com -0,1358864288,7,How to Disable Java in your Browsers,infoworld.com -2,1358859674,5,Test Driven Development TDD Traps,methodsandtools.com -9,1358850007,3,JPA ORM Recommendations,self.java -1,1358810203,13,Can someone please help me with this series of for loops with arrays,self.java -4,1358803522,10,How would one create a class like BigInteger or BigDecimal,self.java -35,1358788343,6,The Heroes of Java Coleen Phillimore,blog.eisele.net -3,1358783870,3,Java for Beginners,self.java -5,1358771572,8,10 Tips for using the Eclipse Memory Analyzer,eclipsesource.com -0,1358770220,6,Java subList for offset and limit,fabiankessler.blogspot.com -0,1358760358,8,Help Failed to remove existing native file sqlite,self.java -5,1358759419,18,Advice Want to write a secure chat client using Google App Engine wrote a tiny local mental model,self.java -2,1358733972,4,Give Duke a Break,blog.mdominick.com -4,1358730167,6,HELP Canvas rendering getting cut off,self.java -9,1358725172,5,Using Apache Shiro with JSF,blogs.bytecode.com.au -4,1358706352,5,Hibernate HibernateUtil and Transaction Handling,self.java -2,1358701068,19,Can t find a straight forward guide of how to migrate a taglib from Tomcat 6 to Tomcat 7,self.java -0,1358699425,17,Looking for someone to teach me some basic threading sockets in java over Voip More in comments,self.java -0,1358685577,6,Indexes in MongoDB A quick overview,blogs.lessthandot.com -9,1358679460,10,JPA 2 1 Implementation EclipseLink M6 integrated in GlassFish 4,blogs.oracle.com -11,1358631916,10,Knowledge Black Belt shutting down free courses workshops till 31jan,knowledgeblackbelt.com -0,1358631147,7,need help with my code specifically arrays,self.java -0,1358626838,3,Need urgent help,self.java -22,1358607759,7,6 Tips to Improve Your Exception Handling,northconcepts.com -0,1358564935,5,Error in Official Java Tutorial,self.java -0,1358539562,14,Is calling int set equals to array length more efficient than calling array length,self.java -0,1358513227,18,java help solution I m self studying java from a book and can t get past these problems,self.java -17,1358511011,9,Spring Framework 4 0 to embrace emerging enterprise themes,jaxenter.com -0,1358506058,4,Help me with Hibernate,stackoverflow.com -2,1358486062,3,Sharing is caring,self.java -5,1358456787,23,DCOM wire protocol MSRPC to enable development of Pure Bi Directional Non Native Java applications which can interoperate with any Windows COM component,j-interop.org -14,1358456383,5,Orika Java Bean mapping framework,github.com -44,1358456296,5,Enum tricks hierarchical data structure,java.dzone.com -4,1358442822,17,Release Notes for the Next Generation Java Plug In Technology introduced in Java SE 6 update 10,oracle.com -1,1358438785,12,How to halt filter on a particular class when debugging in Eclipse,self.java -5,1358430199,4,ATDD Cucumber and Scala,blog.knoldus.com -1,1358401435,9,Question about toString method for dice game java prgm,self.java -5,1358390813,12,java net socketexception no buffer space available maximum connections reached recv failed,self.java -0,1358389234,7,Another javafx in a swing applet question,self.java -9,1358353473,7,Understanding when to use JPA vs Hibernate,self.java -15,1358349434,17,Who has used the Netbeans Platform do design an application What s you re opinion on it,self.java -31,1358346472,9,Java 8 Now You Have Mixins Kerflyn s Blog,kerflyn.wordpress.com -9,1358342224,12,A Garbage Collection analysis of PCGen the popular Open Source Character Generator,martijnverburg.blogspot.co.uk -14,1358339364,5,Arguments for the final keyword,alexcollins.org -2,1358336772,4,Cacheable overhead in Spring,nurkiewicz.blogspot.com -4,1358305333,11,Can some one help me with deploying and using javafx applets,self.java -0,1358266876,4,Java Update 11 Issues,self.java -12,1358256655,8,An overview of JUnit testing with an example,compiledk.blogspot.com -20,1358253310,3,Java hosting advise,self.java -0,1358239445,10,Java Class Reloading Pain A Fresh Open Source JRebel Alternative,contentreich.de -0,1358218318,20,I just began to learn Java I made this for shits and giggles I should probably be studying for exams,pastebin.com -2,1358211765,17,I will be applying for an internship over the summer any pointers on how to prepare myself,self.java -0,1358192080,5,Going offline with Maven RTFB,ogirardot.wordpress.com -0,1358190444,9,Please can you help me with some simple code,self.java -229,1358185426,5,Java installer Ask Toolbar Seriously,self.java -3,1358172684,10,Deploying Oracle ADF Applications on the Oracle Java Database Cloud,blogs.oracle.com -7,1358172600,3,Java Mini Profiler,github.com -3,1358172530,16,Modern threading for not quite beginners small sample Java programs that use intermediate level thread control,javaworld.com -5,1358166272,6,Time estimation for OCAJP 7 preparation,self.java -0,1358117805,7,Oracle Security Alert Update Your Java Now,oracle.com -19,1358114136,16,Security Alert for CVE 2013 0422 Released Fix for Oracle Java 7 Security Manager Bypass Vulnerability,blogs.oracle.com -0,1358108296,21,Is the department of Homeland Security s warning about disabling Java software going to affect career opportunities for aspiring Java programmers,self.java -3,1358107894,6,Newer java decompiler than JD GUI,self.java -25,1358106003,5,Learning Java for game development,self.java -0,1358081881,5,A verbose but effective MouseListener,dev.fhmp.net -5,1358031105,10,Vert x Red Hat and VMware in active discussion Update,h-online.com -2,1358030646,4,Tapestry5 by examples JumpStart,jumpstart.doublenegative.com.au -0,1358008747,16,IT Project Hub Free download of MCA BE BCA MBA MS project for IT Submit Project,itprojecthub.co.in -40,1358007882,8,My first text based kill the dragon game,self.java -0,1357990789,7,Java Mini Projects Free Download 5000 Projects,itprojecthub.co.in -0,1357988225,6,Increase your JSF MyFaces application performance,tandraschko.blogspot.com -0,1357987152,3,Spring Framework Introduction,java9s.com -8,1357983928,8,JSF 2 Custom Scopes without 3rd party libraries,blog.oio.de -28,1357960819,10,Java as a tool to build GUIs is it dead,self.java -5,1357956273,9,Critical Java vulnerability made possible by earlier incomplete patch,arstechnica.com -4,1357945054,12,Testdriving Mojarra 2 2 0 m08 on GlassFish 3 1 2 2,blog.eisele.net -6,1357936758,9,US CERT says everyone should just disable Java now,securityinfowatch.com -5,1357933685,3,College Class Supplement,self.java -9,1357927584,6,Protecting Firefox Users Against Java Vulnerability,blog.mozilla.org -4,1357916297,9,Can people help me wrap my brain around httpclient,self.java -0,1357910599,4,Latest Java being hacked,self.java -10,1357906919,6,Top 5 books on Java programming,javarevisited.blogspot.sg -0,1357905841,8,State of the Maven Java dependency graph RTFB,ogirardot.wordpress.com -25,1357860313,15,US CERT Vulnerability Note VU 625617 Java 7 fails to restrict access to privileged code,kb.cert.org -17,1357857706,9,Your best method of learning AND retaining programming languages,self.java -6,1357857593,15,0 day CVE 2013 0422 1 7u10 spotted in the Wild Disable Java Plugin NOW,malware.dontneedcoffee.com -6,1357853675,7,Reasons to why I m reconsidering JSF,blog.brunoborges.com.br -15,1357840530,6,Critical Java Exploit Spreads like Wildfire,storyfic.com -0,1357822254,8,Hi I need help with a programming assessment,reddit.com -2,1357819897,12,Qualcomm AT amp T and Telit announce support for Java on M2M,terrencebarr.wordpress.com -0,1357819841,7,How to install Scertify Code Eclipse Plugin,tocea.com -7,1357819789,6,2012 Jenkins Survey Results Are In,blog.cloudbees.com -9,1357795533,5,Where when is gcj used,self.java -4,1357774836,5,A Word Wheel Solver Helper,self.java -24,1357773922,13,The curious case of JBoss AS 7 1 2 and 7 1 3,henk53.wordpress.com -3,1357757985,11,Is it possible to make this search multiple districts at once,self.java -0,1357752763,3,interactive comic reader,chjh.eu -3,1357752423,6,Global Tooltips in PrimeFaces 3 5,blog.primefaces.org -10,1357741436,9,Designing an API XML vs JSON round 1 Fight,self.java -0,1357736288,16,Hadoop How To Make Great Big Applications with Great Big Data on Great Surprisingly Affordable Hardware,blog.inetu.net -31,1357736232,9,JSR 335 Lambda Expressions for the Java Programming Language,cr.openjdk.java.net -8,1357736172,13,Don t Test Blindly The Right Methods for Unit Testing Your Java Apps,zeroturnaround.com -2,1357714752,6,Java Database GUI End User help,self.java -2,1357674517,9,JASIG CAS Java Spring Question External Redirects in Handler,self.java -9,1357665852,17,Spring 3 MVC Framework Based Hello World Web Application Example Using Maven Eclipse IDE And Tomcat Server,srccodes.com -8,1357654692,8,An important announcement to the Vert x community,groups.google.com -1,1357654613,9,Another certified Java EE 6 server JOnAS 5 3,jonas.ow2.org -0,1357648743,3,Code review guidelines,insidecoding.wordpress.com -32,1357589496,6,How to improve my Java skills,self.java -1,1357585350,6,Any suggestions for a simple project,self.java -0,1357567218,9,Why do I love Java Developer edition part 2,socialtech101.blogspot.com -19,1357561594,17,accept4j Business friendly acceptance testing tool for Java developed in Groovy Comments contributors and testers very welcome,code.google.com -8,1357539978,5,sshing on windows via java,self.java -0,1357478287,8,ISIS framework for rapidly developing domain driven apps,isis.apache.org -45,1357477906,8,The state of Java according to Oracle developers,oracle.com -12,1357447095,6,Java Far sight look at JDK8,transylvania-jug.org -2,1357446977,5,Implementing Producer Consumer using SynchronousQueue,aredko.blogspot.ie -4,1357446824,6,JAXB Representing Null and Empty Collections,java.dzone.com -2,1357440850,5,JTable with Scrollable Row Header,wiki.javaforum.hu -4,1357396571,7,Beginner Looking for 1 Good Transitional Read,self.java -0,1357340916,5,Java Persistence Performance Got Cache,java-persistence-performance.blogspot.com -0,1357331518,2,Dereference error,self.java -15,1357330987,10,Quick question about java programming ability required for certain jobs,self.java -8,1357314198,7,How to Protect Your APIs with OAuth,blogs.mulesoft.org -0,1357314149,6,A View of Scala from Java,thepolygl0t.blogspot.in -1,1357287685,13,I m doing tutorials with thechernoproject and i need help understanding the code,self.java -14,1357275816,4,Java graphics libraries help,self.java -0,1357264014,12,I need help figuring out if an idea I had is possible,self.java -0,1357256265,19,Is there a java equivalent of the python win32com library that allows visual basic to be written in java,self.java -3,1357252995,5,Text Based Adventure Game Help,self.java -9,1357243810,6,How to parse Json with Java,self.java -4,1357176132,10,Batch Applications in Java EE 7 Understanding JSR 352 Concepts,blogs.oracle.com -126,1357165586,18,I ve spent plenty of time with this book never made the connection with the anteater until now,i.imgur.com -2,1357158313,4,Need help with audio,self.java -4,1357155888,5,Problem understanding arrays of arrays,self.java -1,1357123709,11,Getting a weird error Don t know how to fix it,self.java -8,1357115579,3,JavaFX loves Xtend,koehnlein.blogspot.de -11,1357073017,15,Performance of String equalsIgnoreCase vs String equals if I one of the strings is static,self.java -6,1357068770,9,What is the simplest way to send P2P data,self.java diff --git a/spring-security-oauth/src/test/java/org/baeldung/classifier/RedditClassifierTest.java b/spring-security-oauth/src/test/java/org/baeldung/classifier/RedditClassifierTest.java index 290ea9164c..d18d683dc7 100644 --- a/spring-security-oauth/src/test/java/org/baeldung/classifier/RedditClassifierTest.java +++ b/spring-security-oauth/src/test/java/org/baeldung/classifier/RedditClassifierTest.java @@ -6,25 +6,38 @@ import java.io.IOException; import org.baeldung.reddit.classifier.RedditClassifier; import org.baeldung.reddit.classifier.RedditDataCollector; -import org.junit.Before; import org.junit.Test; //@Ignore public class RedditClassifierTest { - private RedditClassifier classifier; - - @Before - public void init() throws IOException { - classifier = new RedditClassifier(); - classifier.trainClassifier(RedditDataCollector.TRAINING_FILE); + @Test + public void whenUsingDefaultClassifier_thenAccurate() throws IOException { + final RedditClassifier classifier = new RedditClassifier(); + classifier.trainClassifier(RedditDataCollector.DATA_FILE); + final double result = classifier.getAccuracy(); + System.out.println("==== Default Classifier Accuracy = " + result); + System.out.println("+++++++++++++++++++++++++++++++++++++++++++++++\n\n\n"); + assertTrue(result > 0.7); } @Test - public void testClassifier() throws IOException { + public void givenSmallerPoolSizeAndFeatures_whenUsingCustomClassifier_thenAccurate() throws IOException { + final RedditClassifier classifier = new RedditClassifier(100, 500); + classifier.trainClassifier(RedditDataCollector.DATA_FILE); final double result = classifier.getAccuracy(); - System.out.println("Accuracy = " + result); - assertTrue(result > 0.8); + System.out.println("==== Custom Classifier (small) Accuracy = " + result); + System.out.println("+++++++++++++++++++++++++++++++++++++++++++++++\n\n\n"); + assertTrue(result < 0.7); } + @Test + public void givenLargerPoolSizeAndFeatures_whenUsingCustomClassifier_thenAccurate() throws IOException { + final RedditClassifier classifier = new RedditClassifier(200, 2000); + classifier.trainClassifier(RedditDataCollector.DATA_FILE); + final double result = classifier.getAccuracy(); + System.out.println("==== Custom Classifier (large) Accuracy = " + result); + System.out.println("+++++++++++++++++++++++++++++++++++++++++++++++\n\n\n"); + assertTrue(result > 0.7); + } }