How do I start designing portlets in Eclipse?

Is there any plugins for Eclipse for portlet design and deployment? I have never designed portlets so are there any good tutorials on the web as well?


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






Answer 1

You do have a tutorial about portlet development (not portlet deployment though, that would be through an appropriate eclipse-maven configuration)

Portal eclipse can also help to develop portlet in eclipse.

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



Answer 2

You can try http://sourceforge.net/projects/portlet-eclipse/

Also, you can try IBM Rational Application Developer, which is IBM's Eclipse based IDE. It's Portlet and portal wizards are good... but R.A.D is not opensource.

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



Similar questions

java - Designing a process

I challenge you :) I have a process that someone already implemented. I will try to describe the requirements, and I was hoping I could get some input to the "best way" to do this. It's for a financial institution. I have a routing framework that will allow me to recieve files and send requests to other systems. I have a database I can use as I wish but it is only me and my software that has...


java - Need help with designing "infinite" threads

I have some database table and need to process records from it 5 at a time as long as app is running. So, it looks like this: Get a record that hasn't been processed yet or not processing now by other threads. Process it (this is a long process that depends on internet connection so it could timeout/throw errors). Move to the next record. When reached end of table start from beginning. ...


java - Designing an XACML API

Currently, the XACML specification defines a protocol for request / response but leaves it up to interpretation as to how it can be integrated into an enterprise application. I believe that the value of XACML won't be realized unless there is the creation of a new open source project that attempts to develop/standardize around a set of common APIs. For those who are familiar with XACML, I would love to understand t...


java - Designing simple cell renderer for Nimbus look and feel

I have a simple-ish cell renderer which is composed of a few JLabels (the renderer itself extends JPanel) and I'm trying to get it to render sensibly in the Nimbus look and feel. Basically what is happening is that in the lighter rows (as Nimbus has alternate row coloring), my specific cell renderer is using the table background color (which is much darker than both lighter and ...


java - Designing a better API?

What are the best practices and patterns to be followed for designing APIs? How to achieve implementation hiding the best way (C++/Java)? Designing APIs which are generic in nature? Any reference books/links which guide with neat examples to beginners?


java - Designing a network protocol for realtime data / mobile devices

I'm faced with a following dilemma: Design a new network protocol which would be used between a server (Java software) and desktop and mobile clients. The mobile clients include J2ME, Android and maybe in the future even iPhone. The data stream is a realtime, constant stream with also more infrequent parts. The clients show waveforms of this data and also data which doesn't need to be updated instantly. The...


java - Pattern for designing a scalable web service

I am writing a web service in Java which needs to handle a large number of requests / second. The general flow will be: Web service receives a request from client Returns a 'keep polling me' response to client Calls another web service (or services), and waits for them to respond (with a timeout) Client polls our web service, until it receives a response (with a timeout) ...


java - Designing this algorithm a better way?

I am working a much more complex version of this (with vehicle moving in both X and Y directions) I made this example to get ideas on better ways to accomplish this. I have a vehicle moving in the X direction at a speed (24.5872 mps) I am simulating this by incrementing the X value every 100 ms using an executor (To keep its X position more accurate and real time) After each second, ...


java - Help designing velocity template to support Header and Footer

My websites pages are broken down into 3 parts: Header Main Content Footer The header needs to access the user object to display things like the username, sign/signout links depending if the user is logged in or not. I want my velocity templates to be like this: inject header template, that will need access to the user object. main content will be a spr...


java - Designing DAOs for data sources other than a database

Until now I've been used to using DAOs to retrieve information from databases. Other sources of data are possible though and I'm wondering if and how the pattern could be applied in general. For example, I'm now working on an application that fetches XML on the web. The XML file could be considered as a data source and the actual fetching is similar in principle to a database request. I'm not quite sure how the DAO...






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