I am fairly new to Spring Portlet MVC and am wondering if any one knows of an example of how to have an interdependency between two select one menus.
For example If I choose a car type of Ford in...
Type: Posts; User: Howler72; Keyword(s):
I am fairly new to Spring Portlet MVC and am wondering if any one knows of an example of how to have an interdependency between two select one menus.
For example If I choose a car type of Ford in...
Hello all,
I need some help with a queryForList method. When I run the portlet I am
getting a null pointer exception in my Controller class. I know that queryForList returns a list of map...
I solved my own problem. Thanks!!
Thats right. I do inject my studentDao into my controller class.
Here is a snippet of my GetStudentController:
....
public void setStudentDao(StudentDao studentDao){
this.studentDao =...
I am getting a null pointer exception when I call a dao I have created on my onSubmit of a simple form controller method. I know that means that my dao object has not been instantiated, but why? ...
I am getting the following error in a portlet that I have deployed. What does this mean? I know that the spring-jdbc.jar file is in /WEB-INF/lib.
Caused by:...
Hello All,
I am very new to Spring Portlet MVC. This is my first attempt at deploying a Spring MVC portlet to uPortal 2.5.3 and am experiencing an error. The error I am getting is as follows. ...
Actually I decided to reread the Spring Reference guide on IoC, and sure enough it is discouraged to place domain objects into the xml configuration. Thanks for the prompt responses.
Regards!!
Hello All,
I am new to Spring and have a question. I have Java bean/pojo class called course. I am going to be populating the course object with getter/setter methods from a database query. So I...
I am complete newbie so forgive me for asking basic questions. I have defined several beans in my applicationContext.xml file such as
<bean...
I found this old blurb that answered my question.
"Take another look at spring-portlet-sample/WEB-INF/context/portlet/books.xml in the sample application. In there, you will see that there are two...
Hello All,
I have question regarding Spring MVC portlet development. If my portlet has multiple view controllers and I am using the PortletModeParameterHandlerMapping class, how do I set my...
After rereading your post and thinking about it, that is what I ended up doing. I appreciate your response. Thanks!!
So if my bean configuration is as below would that work?
<bean id="studentDao" class="dao.JdbcStudentDao">
<property name="jdbcTemplate" ref="jdbcTemplate"/>
<property name="jdbcTemplate2"...
Hello All,
I am brand new into the world of spring development and am working on my first project. BTW I am really liking what I see thus far. I have been reading the Spring in Action book which...