Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » Java Development Tools (JDT) » Working with Eclipse Kepler, Maven, Java and Tomcat(Working with Eclipse Kepler, Maven, Java and Tomcat)
Working with Eclipse Kepler, Maven, Java and Tomcat [message #1399776] Sun, 13 July 2014 05:58
Glenn Sanchez is currently offline Glenn SanchezFriend
Messages: 1
Registered: July 2014
Junior Member
Hi All,

I am new to Maven and Tomcat and am trying to build a Web Application with Maven using the Eclipse Kepler.

These are the files I have started:

main/java/Login.java - for beans:
 @ManagedBean
 @RequestScoped
 public class Login(){
   public Login(){

   }
   public String getResponse(){
     return "my response";
   }
 }


webapp/login.jsp for the UI:

...
..
..
<body>
 #{Login.getResponse()}
</body>


But what I get when I ran the application is the string:

"#{Login.getResponse()}"

Can you guide what I am missing with this?

Previous Topic:Full Java 8 code completion support?
Next Topic:Eclipse > Export > Launch Config - Cluttered With Dead Files
Goto Forum:
  


Current Time: Thu Apr 25 20:24:03 GMT 2024

Powered by FUDForum. Page generated in 0.03036 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top