Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
6answers
16k views

Should I be doing JSPX instead of JSP?

Using JDeveloper, I started developing a set of web pages for a project at work. Since I didn't know much about JDev at the time, I ran over to Oracle to follow some tutorials. The JDev tutorials ...
6
votes
8answers
4k views

Conditionally set an attribute on an element with JSP Documents (JSPX)

In HTML forms, buttons can be disabled by defining the "disabled" attribute on them, with any value: <button name="btn1" disabled="disabled">Hello</button> If a button is to be enabled, ...
5
votes
1answer
2k views

How to produce valid HTML with JSPX? (not XHTML)

When trying to create a HTML page with JSPX you will face the following difficulties: JSPX minimizes tags we don't want it to, for example <div class="foo"></div> becomes <div ...
4
votes
3answers
591 views

JSP Document/JSPX: what determines how tabs/space/linebreaks are removed in the output?

I've got a "JSP Document" ("JSP in XML") nicely formatted and when the webpage is generated and sent to the user, some linebreaks are removed. Now the really weird part: apparently the "main" .jsp ...
3
votes
2answers
2k views

websphere 7 (and Spring Roo) incompatible with javax.el.ELException

I have a application where the frontend is based on the Spring Roo 1.1.2 jspx files. Every think works fine in Tomcat 6, but if I deploy the same application in a Websphere 7 (class loader: parent ...
3
votes
3answers
305 views

“for (;;)”in JSF

I simply need to perform a very basic for cycle in JSF/ICEFaces, basically rendering column numbers Something like the following pseudo-code for(int i=0; i<max; i++) { ...
3
votes
4answers
2k views

How to output <option selected=“true”> from JSPX?

A few html tags interpret "any" value of a give attribute as "true" -> option tags come to mind. I frequently end up doing something like this: <c:choose> <c:when ...
3
votes
1answer
1k views

Custom JSTL tags with body

We are going to use JSTL and custom JSTL-tags for some sort of template-engine in our JSP/spring-project. Is there a way to create a tag that looks similar like this: <div id="site"> ...
3
votes
3answers
386 views

Eclipse's WTP translation output

How can I view the intermediate translation done to JSP and JSPX pages by WTP? I'm getting weird syntax errors in my Problems tab of Eclipse in a project that has plenty of .jspx pages. They don't ...
2
votes
1answer
717 views

Escape HTML entities in JSP / JSPX: no solution for problem that should not even exist?

We use jspx as template engine. We have dozen of screens with hundreds of el expressions like ${user.firstName} or "${mail.subject}" And all this HTML code is not escaped by default. If there would ...
2
votes
2answers
831 views

Can I use jsp scriptlets in jspx files?

Is there a way I can use the jsp scriptlets in jspx files ? Writing like this <%="hello"%> in jspx file gave me errors. Please help.
2
votes
1answer
485 views

Spring Roo JSPX and form tag

I am trying to use the form tag within a Spring Roo JSPX file: But everytime I run the application, I keep getting the following exception: The prefix "form" for element "form:form" is not bound. ...
1
vote
2answers
43 views

Jspx files and conditional comments

I'd like to create a web application using Spring and .jspx web pages. My question is how can I put conditional commentaries for IE in jspx? They seem to be not interpreted. <!--[if lt IE 9]> ...
1
vote
1answer
109 views

Including JS files (JQuery) in JSPX files

I'm creating a dynamic web project in Eclipse (almost from scratch) and I created a JSPX file where I put <head>... <script type="text/javascript" ...
1
vote
1answer
263 views

Spring webflow: how to keep track of persisted entity ids?

I'm working on a webflow (SWF2). The entities are generated using Roo. One of the webflow views, multi-instance.jspx, may be called multiple times to allow for multiple, persisted instances of the ...
1
vote
1answer
178 views

JSPX leads to copy-paste code?

As soon as JSPX must be a well-formed XML, there is no way of having header part including beginig of tag in separate included file, since must be closed. Looks like you must always include into ...
1
vote
1answer
446 views

Spring Roo and web scaffolding issue

I am using Spring Roo. I removed the Spring Roo web scaffolding annotation from my controller and deleted all the related JSPX files. Now I am the following error: Method ...
1
vote
5answers
486 views

Keep JSPX from creating self closing tags (<div></div> != <div/>)

JSPX has the lovely side effect of turning: <div class="magic"></div> Into: <div class="magic" /> For many browsers this causes pandemonium and mayhem with layout even though ...
1
vote
3answers
520 views

JSPX adds <?xml version=“1.0” encoding=“UTF-8”?> to top of page, causes JS errors in IE6

When JSPX compiles, it automatically adds <?xml version="1.0" encoding="UTF-8"?> to top of file which causes some JavaScript code not to work on Internet Explorer 6. How can I avoid it to add ...
1
vote
1answer
886 views

embed JavaScript in XML compliant JSP files (JSPX)

I am using Spring Roo for my project. Spring Roo is using JSPX for round-tripping. How do I embed JavaScript in JSPX page, so it stays parsable?
1
vote
1answer
465 views

How to get the value of an arbitrary bean property from a JSP?

I'm trying to write a custom JSPX tag that reads the value of a given bean property from each object in a given list, with the name of that property passed to the tag as a JSP attribute. The tag would ...
1
vote
2answers
593 views

Encoding errors in .jspx

I'm currently trying to deploy some RSS feeds on a WebLogic Application Server. The feeds' views are .jspx files, like the one below: <?xml version="1.0" encoding="utf-8"?> <feed ...
1
vote
2answers
529 views

Spring Roo 1.1.0.M1 .jspx rewriting

I am attempting to customize a create.jspx in Roo 1.1.0.M1. I am removing some fields from the UI that I want to automatically set in the controller (eg. dateCreated, createdBy). This works ok, UNTIL ...
1
vote
2answers
259 views

Appengine not compiling my .jspx files

I have a little app that runs fine on local dev appengine, but appengine itself is not processing my .jspx files. The jspx files are in WEB-INF so they should not be excluded by appengine (as a ...
1
vote
3answers
304 views

How to output “&” from jspx?

How can the below element be output from jspx? **&nsp;** , output space in jspx **if(a && a!=b)**, JavaScript file in jspx
1
vote
4answers
1k views

How to comment in jspx page

How to comment the code in jspx page? I have tried several methods, <!-- --> <%-- --> but it doesn't not work! So I have to: <c:if test="${false}">code</c:if>, it is ...
1
vote
2answers
185 views

differences between aspx and jspx? and which one?

What are the differences between aspx and jspx? and Why should I choose aspx or jspx? what is the best software to develop web poject with jspx? Thank you for your reply.
1
vote
1answer
451 views

How can I call a JSP 2.0 *.tag file from a traditional JSP custom tag?

I have written a JSP custom tag, implemented in a class that extends TagSupport, and I'd like to invoke another custom tag that was written as a *.tag file. Is this possible? If so, how can it be ...
1
vote
3answers
1k views

jspx script element on GlassFish v3

The .war is served from GlassFish v3. I am trying to include a javascript file from my jspx. <script type="text/javascript" src="/base/interface/Service.js"></script> I get the ...
1
vote
1answer
1k views

JSPX namespaces not visible for EL functions?

I'm attempting to use JSPX (pure XML syntax for JSP) and running into what seems like it should work, but doesn't. I'm importing taglibs using namespace declarations in the jsp:root element, then ...
1
vote
1answer
1k views

How do I reliably access the HttpServletRequest in a jspx when it's behind a proxy?

I've got a jspx that needs to know the current HttpServletRequest's getServerName(). The jspx can fetch this with #{mybean.serverName} from its bean, like this: public String getServerName() { ...
1
vote
2answers
2k views

ADF: Calling a method through a managed beans in JSP

I am running into issues with passing parameters to managed beans in JSP within Oracle ADF. Here is an example JSP test page I am trying to pass parameters to a test method in a POJO: <?xml ...
1
vote
1answer
794 views

use struts tags inside attributes in jspx files

I have some old jsp code that uses the struts tags inside attributes, like this: <link href="<s:url value='/styles/layout.css'/>" rel="stylesheet" type="text/css" media="all"/> I ...
1
vote
2answers
1k views

Does tomcat 5.5 treat .jsp and .jspx files in the same way?

I'm working on a java web-application, trying to be xml-friendly and writing my jsp files using the jspx/xml syntax. It took me hours of dissecting examples and configuration files to find out that ...
0
votes
0answers
37 views

New to JSPX - Dillemas

I have just started experimenting with JSPX and ICEfaces for a work project. I would like to know the best standards used to work with .JSPX and the best way to minimize code from pages. I had worked ...
0
votes
1answer
17 views

Why JSPX does not like empty elements?

this <div id="adiv"></div> will in JSPX somehow be translated into <div id="adiv" />. The way I got it to work is to add empty comments inside like <div id="adiv"><!-- ...
0
votes
0answers
15 views

Navigating from 1 jspx to another jspx page

I have several pages in jspx and have created a navigation.jspx. This contains links to the various pages. I am using a model view controller architecture and the normal way as shown below is not ...
0
votes
1answer
36 views

How do i navigate to another jspx?

I have a link on a jspx, which will take you to another jspx page. For example, i'm on the homepage and then click on a link which should open a jspx called products. I have used this code <a ...
0
votes
0answers
28 views

Display information from a database in a jspx (Using jdbc)

I have created a bean to use, which returns a hashmap containing subjects public class ModListBean { String connectionURL = "jdbc:mysql://localhost/cs_subjects"; public ModListBean() { try ...
0
votes
2answers
32 views

How can i access session in different jspx?

I'm new to jspx and I'm not sure how I would do this. I have created a model-view-controller and have created a session in controller. Once the user has logged in, it creates the session. HttpSession ...
0
votes
0answers
12 views

How to built file and ditectory Structure for a jsp servlet web site? [closed]

Could you please tell me, how to build a website using jsp and servlet . my domain File/folder structure ./ ---- .cpanel ---- .gen ---- .mozilla ---- .rvskin ---- .sqmailattach ---- .trase ...
0
votes
1answer
209 views

Spring JSTL tag not working

I use spring roo to generate the web project. After I set up the web mvc by using web mvc setup, the webapp folder has the structure below: .../webapp/ | |_images |_styles ...
0
votes
0answers
83 views

jspx: output DOCTYPE with only a PUBLIC identifier

I want to output the following DOCTYPE specifier with jspx: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> This seems to be impossible. What I tried is: <jsp:output ...
0
votes
2answers
95 views

Using JSTL's formatDate function with a date represented in milliseconds

Normally I use the following to display a Date object in a JSP page: <fmt:formatDate value="${blogEntry.created}"/> Works great if blogEntry.created is a java.util.Date object. But what's ...
0
votes
0answers
46 views

How to update properties of an array of beans while iterating in jspx

The model returns a list of beans which are displayed in a table using <c:forEach tag>. Some properties are of type input, so the user can edit these inline (optional). The question is how to ...
0
votes
1answer
102 views

How to retrieve URL fragment identifier in JSP

Is there an easy way to get the URL fragment identifier (everything after the hash '#') in JSP? I've tried just finding even the URL itself which includes the fragment identifier with ...
0
votes
1answer
23 views

Creating table with changing number of elements in row

I have to create table which can have in one row one or two elements e.g. in one row can be placed label and field (e.g.textField) or only field. it doesn't have to be a dataTable element, it can be ...
0
votes
1answer
144 views

JSTL tags shown in browser

I have a Mavenized Spring MVC project that deploys locally or remotely (passing all tests) using the jetty plugin. However when I try to deploy the war file to a tomcat 6 server, I see the jstl tags ...
0
votes
0answers
96 views

Spring webflow: need to persist entity reference in persistence-context

I'm trying to make a Roo scaffolded SWF2 flow. I believe my problem is quite common, however I can't find any good docs/tutorials covering my case. My situation is this: I have two entity classes, ...
0
votes
1answer
246 views

Persisted entites in an ArrayList gone missing in jspx using Spring Webflow 2.0

I'm writing a spring webflow with MVC and persistence scaffolded by Spring Roo. In this flow, the user is supposed to be creating multiple instances of one entity, which in turn is to be referenced ...

1 2