What are the best Java social networking frameworks? [closed]

I would like to create a private customized social networking for my company employees and partners so that they can collaborate, exchange messages, share experiences (events, book references, etc) and be grouped into communities. Does anybody know good Java framework for start developing this?

I would be looking for something that would contain basic components such as Profile, Friend List, Community, Events, Messages, etc. Each of this component could be extended to implement domain specific features. It would be nice if it also supports OpenSocial.


Asked by: John738 | Posted: 23-01-2022






Answer 1

Shindig is in incubation at Apache :
http://incubator.apache.org/projects/shindig.html

YouTube Link About Shindig :
http://www.youtube.com/watch?v=ZcWszaReqXI


A List of Open Source Social Networking >Applications< Written in Java: http://www.manageability.org/blog/stuff/java-open-source-social-network

Answered by: Julia352 | Posted: 24-02-2022



Answer 2

Collective Intelligence in Action could be helpful if you also like to leverage the data gathered in your social web application.

Answered by: Miranda642 | Posted: 24-02-2022



Answer 3

Checkout Spring Social

http://blog.springsource.com/2010/11/03/socializing-spring-applications/

Answered by: Julian473 | Posted: 24-02-2022



Answer 4

I 'v built my own social networking features such as creating group adding people to group, friends list, messages, events, comments, blogs and etc. If anyone is interested I can only provid you with the jar and the list of the rest of techs that you have to use with these features to work. If you like to add your own business features on top then there are loads of solutions I can guide you through...

Regards, Ash

Answered by: Anna177 | Posted: 24-02-2022



Similar questions

networking - Java Network Events

I am creating a java mobile application and I want to be aware as to when the device obtain an IP address to then be able to send messages to a backend system. Do any API exists? I guess if an API existed it would have to use system dependant calls thru JNI? Thank you, Julien.


networking - Java printing directly to a Postscript network printer

I've got Postscript code/data (?) in memory (in a Java Tomcat webapp) that I'd like to send directly to a networked PS printer. Is there an easy way (i.e. just popping open a port and sending the text) to print this, bypassing all of the O/S-specific drivers and stuff (and hopefully not even requiring extra jars)? A link to example code showing how to do this? Thanks, Dave


networking - Is it possible to create a Java UDP Socket to listen on all addresses?

I would like to have a single DatagramSocket to listen for both unicast and broadcast messages. Is this possible?


networking - Disable character echo on Java network connection

I have a Solaris daemon written in Java6. Clients can connect to it using a telnet style interface. They telnet to a particular port, and I read lines of input and act on them. At one point in I need to prompt the user to enter a password, and while they're entering that I want to disable the echoing of characters back to the telnet client. The code has a Socket object and creates an InputStream from the so...


Is there a good Java networking library?

Closed. This question does not meet Stack Overflow guid...


networking - Java RMI Resources

I am currently undertaking a project that involves extensive use of Java RMI and I was wondering if anyone is aware of any good resources about it. The problem I am having with the material I am finding currently is that its usually quite out of date (like Java 1.3) and / or half complete. I would even be happy to buy a book on it but looking on Amazon all the books are like 7 years old. So if anyone is aw...


networking - Java NIO: Sending large messages quickly leads to truncated packets and data loss

I've got this nasty problem where sending multiple, large messages in quick succession from a Java (NIO) server (running Linux) to a client will lead to truncated packets. The messages have to be large and sent very rapidly for the problem to occur. Here's basically what my code is doing (not actual code, but more-or-less what's happening): //-- setup stuff: -- Charset charset = Charset.forName("UTF-8"); ...


networking - Determine remote client IP address for Java RMI call

When I implement an RMI server (implement an interface that extends java.rmi.Remote) is there a way to get information about the current RMI request context, specifically the remote client's IP address? public void myMethod() throws RemoteException { log.info("remote IP is "+ RMISomething.getSomething()); }


networking - Connecting to a CDMA network IN from Java

Am using java to develop program that receives and processes SMS messages. I have been able to code the processing of the SMS Messages received and its working perfectly. Now the challenge i have is receiving the the SMS Messages from the CDMA network. When the application is about to go live, the CDMA network will setup a VPN connection which will enable my application to connect to its IN or its IN connect to my applicat...


networking - Why am I getting an error when I try to run my socket program in Java?

I'm using jcreatorLE and JDK 1.6 to run my program. I don't know why I get an error when I try to run. Could somebody explain the reason to me? This is the code for the Server: import java.io.*; import java.net.*; class ServidorTCP { // variable to wait for connections private static ServerSocket servidor = null; // Variable to process client connections private static...






Still can't find your answer? Check out these amazing Java communities for help...



Java Reddit Community | Java Help Reddit Community | Dev.to Java Community | Java Discord | Java Programmers (Facebook) | Java developers (Facebook)



top