SmartGWT alternatives [closed] - java

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have been using SmartGWT but have run into trouble mixing SmartGWT with other frameworks such as Wicket. Infact it has been a bit of a disaster and I regret going with it in the first place.
I do not want this question to turn into any type of flame war, so therefore would just like people to list alternatives and their experience with those alternatives.

The post above is actually mine, not too sure what happened but I can give you extra resources if you want to take a look at my recommendation. Below are numerous getting started resources that I found very useful.
Tutorial
Quick Start
ZK Essentials (Recommend to read)
Documentation Index
I would also state that I integrated it with many frameworks and it worked flawlessly.
I did also like working with ICEfaces if you do like the JSF approach, however, that can get rather complex! Personally I prefer ZK's approach, each to their own.
Hope this helps!

My company ran a "bake off" between numerous solutions including, the eventual winner ZK, SmartGWT, Wicket and ICEfaces. During this time we also reported some problems when integrating SmartGWT with other frameworks and javascript libraries. This caused us some problems and was one of the reasons why we dropped it.
I would highly recommend you take a look at ZK as we found it to be excellent for the development and deployment of enterpize applications.
Hope this helps.

I have used GXT and I have done some simple integrations with wicket components with it.
Perhaps you can describe the kinds of troubles you are having with the wicket integration, that would help suggest a new library for you to use

Related

Simple open source DHT implementation in Java for learning purposes [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I'm looking for recommendations for a simple open source implementation of a Distributed Hash Table in Java to play around with. No fancy features, just for learning purposes, no production functionality needed. It should be simple to set up (e.g. 1 physical machine with n-JVMs) and well documented preferably with some examples, tutorials or starting guides.
Research yields these candidates: FreePastry and OpenChord but I'm not fully convinced they meet my criteria simplicity-wise.
Have you got any experience with these or other implementations? Recommendations?
Thanks & adios
There is TomP2P on Github.
Maybe JDHT will fit the bill. I haven't checked it out myself, but it's written at a university, sometimes that means it's simple and used for teaching. :-)
I have been working on an implementation of Kademlia lately. It's very simple to setup and use and it's well documented. There are several tests written that demonstrate the different functionality as well as a starting guide in the Readme.md file itself.
You can use openkad
I started with free pastry..I've had a great experience with it. It was very simple to set up and run a ring of nodes. I've been mainly using PAST (File storage) and its been quite easy to get running. I'd suggest having a look at the PAST tutorial here. https://trac.freepastry.org/wiki/tut_past
The code is over simplified in my opinion but you say that is all you need so I guess thats ok.

Best framework for build in help system for java based web application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a framework that will help me to build help system for my java based web application. Would be great if it will be the system that easy to use and maintain but provides all features average help system needs.
At the moment I see it as a some kind of system that will produce bunch of html pages with search functionality located in http://host/MySuperApp/docs/. The documentation will have a lot of code snippets and graphics. At the moment multilanguage support is not really needed even it is standard feature this days.
Any other features that are great but I wasn't thinking about them yet are welcome.
Any suggestions are appretiated,
Thank you guys in advance!
Some years ago, I worked with the Eclipse Help System. Eclipse is not necessarily needed to integrate it in your project. Its helpfiles are also based on .html pages. Unfortunatly I dont know if they continue developing it, but at this time it already provided all the aspects you would expect from a help system.
There are a lot examples out there on how to integrate it in your project, but its possible, that maybe there are already better frameworks today.
Have you tried http://www.sphinx-doc.org/en/stable/. It was initially created for python. Very easy to use.

What's a good CMS to integrate with an existing Java website (needs good API's) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
We have a large existing website (written in Java/Spring/Hibernate/JSP) and want to add a Content Management System to allow our employees to manage sections of existing pages and in certain cases the body of entire pages (such as jobs/contact/press-release/etc).
The catch is most open-source CMS's we've looked at like Drupal, Radiant, Joomla, etc seem to be designed so that you build an entire website on-top of the CMS. Whereas we want a CMS that's designed to be integrated in an existing site (perhaps via API's).
Any suggestions?
We went through a vetting process and chose Alfresco.
This might help you pick one that is right for you.
Open Source Content Management Systems (CMS) in Java
+1 for Alfresco. Uses Spring for IOC and other standard Java technologies. It is pretty well documented, and easy to follow. In fact, the few times I couldn't get what I needed from the documentation, I was able to dig into the source code and figure it out pretty quickly. Very easy to write extensions and mods for it.
Maybe you should have a look at LifeRay as it is an enterprise portal and supports cms integration.
Hi friends, I suggest Liferay 6.1, because I work with it some times, it's better to customize the portal than others, as far I know.
Hope I gave some info what I know regard it, it may help some one.
We have a Wicket application and also had the challenge to hook this up with a CMS. As most CMS players want to control the delivery tier, we where also looking for a CMS with a strong sepereation of concern and a way to just retrieve the content through an API. We have chosen Hippo CMS for their RESTful API Support to solve our problem.

where is the best place to start learning about servlet/tomcat? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to start developing using this technology servlets/jsp with tomcat. I need to get up to speed fairly quick. What would you recommend to get up there fairly quick? No 900+ pages manuals. A good tutorial (even a video lectures) with lots of examples would be perfect.
Thanks
Check out simple.souther.us
Hanging out at JavaRanch is a good idea
Getting a Head First Servlet and JSP is worth it
J2EE tutorial is good to go too
I would install Tomcat, and look at all of the included examples. Each example shows a different feature or way of using Tomcat. If you start tomcat up with the defaults, you should be able to go straight to http://localhost:8080/examples to view them.
CoreServlets.com has a good tutorial using Tomcat 6.0:
http://www.coreservlets.com/Apache-Tomcat-Tutorial/
or if you prefer a visual approach then check out this video (wchi additionally introduces Eclipse and WTP into the mix - but it's a good practice to use this to develop simple web applications):
http://www.youtube.com/watch?v=-l0CFxdroTE
I think that the following link will answer not almost all but literally all doubts that you have about servlets and give you a nice flow to study them.
this website is most appropriate since it provides examples as well and is more practical based teacher.
enjoy
http://www.roseindia.net/servlets/

Java wiki engine [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
There are plenty of Java wiki engines. I'm currently looking for good lightweight wiki , something like the community wiki on Stack Overflow, that can be easily integrated into excising applications.
I personally use JSP Wiki. It's lightweight, easy to use, and obviously uses Java. You just drop it in an application server, make some small config changes and you're golden! I set this up as my company's Wiki and it runs just great.
I really like Mylyn WikiText: besides offering UI elements like an Eclipse editor, it offers API and Ant tasks for working with various wiki formats (Textile, MediaWiki, Confluence, Trac) and exporting to HTML, PDF, and others. It's available in Eclipse Galileo and as a standalone library (see bottom of the page).
Consider FitNesse if this is in any way programming related. It allows you to write tests in the Wiki and have the testing framework update the Wikipages with the results. This allows others than programmers to collaborate on this.
http://fitnesse.org/FitNesse.UserGuide.OneMinuteDescription
check out GWiki, http://labs.micromata.de/display/gwiki/Home it's great.

Categories

Resources