Projects tagged ‘mvc’, ‘spring’, and ‘web’


Jump to tag:

Projects tagged ‘mvc’, ‘spring’, and ‘web’

Filtered by Project Tags mvc spring web

Refine results Project Tags java (13) framework (9) j2ee (6) development (4) ajax (4) xml (3) hibernate (3) javascript (3) jsp (2) portal (2) aop (2) springframework (2)

[15 total ]

620 Users
   

Spring is a lightweight Java/J2EE application framework based on code published in "Expert One-on-One J2EE Design and Development" by Rod Johnson. It includes powerful JavaBeans-based configuration ... [More] management applying Inversion-of-Control principles, a generic abstraction layer for transaction management allowing for pluggable transaction managers, a JDBC abstraction layer, integration with Hibernate, JDO, Apache OJB, and iBATIS SQL Maps, AOP functionality, and a flexible MVC Web application framework with multiple view technologies. There is also a .NET port available. [Less]
Created over 3 years ago.

40 Users
   

Apache Cocoon is a web development framework built around the concepts of separation of concerns and component-based web development. Cocoon is "web glue for your web application development needs". ... [More] It is a glue that keeps concerns separate and allows parallel evolution of all aspects of a web application, improving development pace and reducing the chance of conflicts. [Less]
Created over 3 years ago.

14 Users
   

AppFuse is an open source project and application that uses open source tools built on the Java platform to help you develop Web applications quickly and efficiently. It was originally developed to ... [More] eliminate the ramp-up time found when building new web applications for customers. At its core, AppFuse is a project skeleton, similar to the one that's created by your IDE when you click through a wizard to create a new web project. AppFuse 1.x uses Ant to create your project, as well as build/test/deploy it. AppFuse 2.x uses Maven 2 to create your project as well as build/test/deploy it. IDE support is much better in 2.x because you can generate the IDE project files with Maven plugins. AppFuse 1.x uses XDoclet and JDK 1.4+. AppFuse 2.x uses annotations and JDK 5+. [Less]
Created over 3 years ago.

6 Users
   

Jetspeed is an Open Source implementation of an Enterprise Information Portal, written in Java and XML. Within a Jetspeed portal, individual portlets can be aggregated to create a page. Each portlet ... [More] is an independent application with Jetspeed acting as the central hub making information from multiple sources available in an easy to use manner. [Less]
Created over 3 years ago.

0 Users

Fast JSP custom-tags compatible with Spring Web MVC
Created 4 months ago.

0 Users

Java Web Application Security Framework to solve web application vulnerabilities HDIV extends web applications’ behaviour by adding Security functionalities, maintaining the API and the framework ... [More] specification. This implies that we can use HDIV in applications developed in Struts 1.x, Struts 2.x, Spring MVC and JSTL in a transparent way to the programmer and without adding any complexity to the application development. The security functionalities added to the web applications are these: Integrity, Confidentiality and Generic Editable Data Validations. [Less]
Created about 1 year ago.

0 Users

Simple testing and learning Spring Framework
Created 11 months ago.

0 Users

Small web application with Spring 2.5, using its newest annotation and component scanning capability. How to build from scratch `Download *.tar.bz2 file` Extract cd into extracted folder ... [More] Execute ant build-winstone How to deploy: Download `*.war` file Deploy in your favorite application server How to run without application server Download `*.jar` file Execute java -jar .jar in command line This application needs MySQL database to run properly, with the following configuration: database host : localhost database name : belajar database user : belajar database pass : java And table T_PERSON with the following field: id INT PRIMARY KEY AUTO_INCREMENT name VARCHAR(255) email VARCHAR(255) [Less]
Created about 1 year ago.

0 Users

Spring Web MVC GenericsSpring Web MVC Generics is a generics friendly extension to the Spring WebMVC framework along with various other utilities found useful when working with spring web mvc. ... [More] Latest ReleaseI've given up on making new release jars every time something is changed. Currently this library is in the beta stage (although we're using it in production and it's working great) and if you need a release you should checkout the source code and use maven to build a jar. ProgressSo far the following controllers have been made generic: BaseCommandController AbstractCommandController AbstractFormController AbstractWizardFormController SimpleFormController Remaining are: CancellableFormController ControllersAll of the generic controller names have the same exact class name as the controller that they are providing generics for with the exception that they exist in the org.springframework.web.servlet.generics.mvc.* package. Method names are identical when possible with slight parameter reordering to allow for the generic methods to exist. It should be completely painless and absolutely familiar to use the controllers in the generics package because they behave exactly like the controllers provided by the org.springframework.web.servlet.mvc package (in fact they inherit from them). This allows for form controllers (or any of the BaseCommandController and descendants for that matter) to look something like this: import org.springframework.web.servlet.mvc.generics.AbstractFormController; public class AnInterestingFormController extends AbstractFormController { protected abstract ModelAndView processFormSubmission( AnInterestingForm command, BindException errors, HttpServletRequest request, HttpServletResponse response) throws Exception { // operate on command without casting it System.out.println(command.getSomethingInteresting()); } } UtilitiesTODO: document We're looking for a place to host the maven site for spring-webmvc-generics, any volunteers? Springframework springframework.org Maven [Less]
Created about 1 year ago.

0 Users

This project is part of my studies at Faculty of organizational sciences (business administration and IT school). Aim of this project is making a web application that should be base for online ... [More] community where freelancers (mostly IT and web related) can find a job. Also, that should be an online community where people and enterprises with jobs-to-be-done can find freelancers willing to do that job. The name FleaLanceMarket is word game. Actually, it is the mix of words "freelance" and "flea market" :) [Less]
Created about 1 month ago.