-4
votes
0answers
27 views
Sraping Related.. [closed]
I want scrape products from strange website..initially, I want scrape particular category and then based on i will whole products which it consists.. actually my category url is
...
0
votes
2answers
26 views
Where Hibernate Databases are stored?
Context: I'm working on Spring MVC project and using Hibernate to generate database from my classes using annotations. It uses MySQL server running on my local machine. I'm aiming to get hosting and ...
0
votes
0answers
20 views
Spring Converter error
Lets imagine that I have one-to-many assosiation where class User may have one Role (admin etc) but many User(s) may have the same role. Code is as follows:
@Entity
@Table(name = "Users")
public ...
0
votes
1answer
17 views
How to change tab icon in Spring MVC project?
How and where can I change it in spring MVC project in Netbeans?
0
votes
0answers
28 views
The issue with no slash or double slash JSP link
All links in my REST style application are ended with slash "/". But an user doesn't have to use links, but can also type the URL without slash at the end.
This is the way how I build the links:
...
0
votes
1answer
18 views
Uploading and downloading files in Java Spring 3.0 webservices
I'm searching for some good tutorials about implementations of uploading and downloading files (of different kind) in Java web services. I'd like to use latest Spring (core, context, web, webmvc), ...
0
votes
1answer
23 views
sending email using spring framework get error
Following is the my code to sending the email.
import org.springframework.mail.MailSender;
import org.springframework.mail.SimpleMailMessage;
public class TestArrayList {
private MailSender ...
0
votes
1answer
16 views
How to make website live? (From the point of having it as a Spring MVC project in Netbeans)
Silly question as I just started web dev. Consider that I've got the project build on Spring MVC Framework in the Netbeans (a web site). I would like to make it live.
What is the actual process of ...
1
vote
2answers
42 views
Spring MVC special login interceptor
I have this small web application, for which I am using Spring MVC 3.0
The way I have implemented the login functionality is via normal Handler Interceptor. i.e. when the request comes in the Session ...
-2
votes
1answer
32 views
Using Singleton Class in spring mvc to get data
I create a singleton class and calling a method inside it. I use spring mvc SimpleJdbcTemplate for retrieving data from database, but I get NullPointerException. Code I wrote is:
package ...
0
votes
2answers
33 views
how to block the unauthorized user using Spring Security?
I'm new to SpringSecurity.
This my Spring-security-Context.xml file
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/security"
...
0
votes
1answer
32 views
type cast in EL expressions using Thymeleaf
How can I convert object types within EL expressions? Thymeleaf engine doesn't seem to understand something like this:
<span th:text="${((NewObjectType)obj).amount"></span>
Thanks.
...
0
votes
1answer
28 views
Java spring exception handling when the compiler says it needs to wrapped in a try catch
Im using Spring to handle my exceptions in the controller class with @ExceptionHandler
I have a transport class (similar to a DAO) with the following
HttpResponse httpResponse = ...
0
votes
2answers
22 views
Reference file relative to Jar deployment location
How do I reference an external beans.xml file based on its relative location to where my jar file is deployed? This is what I have now, which doesn't work:
ClassPathXmlApplicationContext ctx = new ...
0
votes
1answer
22 views
set springs fixed locale resolver (for i18n) default locale during runtime
I am currently creating a java web application using Spring Framework. My application haves one administrator account and several normal user accounts. I want my administrator account to be the one ...
0
votes
1answer
35 views
@Autowired not managed in spring mvc “Injection of autowired dependencies failed”
im trying to inject a bean into my class java ValiderBR
@Service
public class ValiderBR extends BusinessRule {
@Autowired
ILog logger;
...
}
but i have an error of injection caused by the ...
4
votes
2answers
54 views
REST Api Implementation Using Spring
One of the best practices of writing RESTFul api application, is to add versioning. for example:
http://my-server/api/v1/getData
http://my-server/api/v2/getData
Our application exposes REST api ...
0
votes
2answers
47 views
Temporarily storing dynamic JSP pages as HTML to improve performance and lower resources
We are working on a Spring MVC web application (running in Tomcat 7) and currently we are experiencing moderate load on the website. The main resource that has to be raised from time to time is RAM ...
0
votes
3answers
39 views
<form:option> default value
I have following spring-mvc code in jsp page
<form:select path="role" id="idRole" >
<form:option value="">Select a message role</form:option>
<form:options ...
3
votes
0answers
40 views
Calling method with null parameters in EL ends up in 0 being passed instead of null
I have a POJO:
public class Foo {
public String getValue(Integer arg0, BigDecimal arg1) {...}
}
I put it as model-parameter from Spring MVC into JSP, and try to use it:
<c:set var="ans" ...
0
votes
0answers
48 views
what can one call the jsp file 2 controller files in java?
what can one call the jsp file 2 controller files in java??
This is Jsp File
<form:form commandName="userProfile" method="post" action="createuserform.html" id="userForm" ...
0
votes
0answers
32 views
SpringMvc How to use different validators for an Object based on the function the user is preforming
I have an Object called officers i would like to preform different types of validation based on the function the user wants to preform, for e.g when a officer record is being registered/saved i would ...
0
votes
1answer
23 views
Intellij Artifact has invalid extesion
I have strange a problem with deploing artifact on jboss. After generating default spring-mvc project in intellij, I try run it but,
intellij show in "Run/Debug Configuration" my "Artifact XYZ:war ...
2
votes
0answers
52 views
SPRING - My Session and Request Scoped bean behave like singleton
I recently started using spring. I'm trying implement user session, but I always fail. I've spent two days to looking for the answer but I can't find it. I have used annotation and configuration xml ...
0
votes
2answers
48 views
How to use beans in model attribute in Spring framework
Hello Might be it's a silly Question But I am new in Spring frame work. Please help
web.xml
<display-name>demo name</display-name>
<context-param>
...
0
votes
0answers
40 views
Upload file in a location specified in tomcat server.xml conf
I have an upload form and I would like to save the file in my filesystem.
First, I tried to create the path where the uploaded file will be saved:
File dest = new File("/front/uploads/images");
...
0
votes
1answer
23 views
Use Spring 3 filters to embed timestamp in resource paths?
Would it work to setup some filters using Spring 3 MVC where the paths for javascript files and css files are modified when streamed to the client, by embedding some timestamp in the filename. And ...
0
votes
2answers
34 views
Spring Camel Email Configuration Issue
I am trying to send email from my spring mvc based web application using apache camel. But my tomcat is not getting up because of some wrong configuration i guess.
Can you please help me?
...
1
vote
5answers
56 views
Spring configuration not finding with Configured name
The following are my configuration file i configured
WEB-INF/classes/applicationContext.xml but it searching for
WEB-INF/applicationContext.xml
<?xml version="1.0" ...
0
votes
1answer
31 views
@Async Spring gets recalled for every request of different sessions
I have a spring @Async annotated method in a bean, then in the controller I call that bean's method on a user request, and I do it this way so I can get a progress back from that bean, and it works ...
0
votes
2answers
57 views
Spring MVC No handler found
I'm newbie to spring mvc and trying to develop a very basic login webapp. I get the below error while running the project. I have tried almost everything and could not fix this error since last two ...
0
votes
1answer
23 views
GAE + Spring MVC : Saving image file to BlobStore
i succesfully save an image to Blob in Datastore with this code :
@RequestMapping(value = "/add", method = RequestMethod.POST)
public String add(ModelMap model, Product form, HttpServletRequest ...
0
votes
1answer
50 views
How can I get a bean from the servlet context instead of the root context?
I have a spring-mvc application which has autowired beans by use of <context:component-scan base-package="com.example.app" /> within the DispatcherServlet context configuration.
I now have an ...
0
votes
0answers
21 views
spring web application reloaded after jmx service starts
I am developing a spring-mvc application.
Whenever I deploy the application for the first time (after starting netbeans), the application is being initialized twice. applicationContext.xml is ...
0
votes
1answer
26 views
Get android GPS location in my web appliaction
I have web application developed using java spring technology. Now I want to extend it to android devices which requires me to get the current location of the android devices. Can someone guide me on ...
-1
votes
1answer
22 views
Error: “schemaLocation value *** must have even number of URI's.” on namespaces in spring dispatcher
I was getting following error
<Ignored XML validation warning> org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 55;
SchemaLocation: schemaLocation value = ...
0
votes
0answers
33 views
<form:select> does not comes selected
My page has some combos but I don't know why one of this combos doesn't comes selected on edit mode.
If i put to show the value and the id of the fiel with the values appears ok, because of this ...
2
votes
1answer
35 views
One Transaction for Hibernate Validation and Spring controller
I am trying to implement the registration controller for a Rest API. I have read about where to place @Transactional quite a bit. (Not at DAO level but at the services maybe orchestrated). In my use ...
0
votes
0answers
10 views
Using two annotation driven xml args: only one works
I'm trying to use Ryan Tenney's metrics for Spring. I have it 90% working, but whenever I apply the <metrics:annotation-driven /> tag in my servlet config xml it overrides the ...
0
votes
1answer
27 views
Return generated pdf using spring MVC
I am using Spring MVC .I have to write a service that would take input from the request body, add the data to the pdf and returns the pdf file to the browser. The pdf document is generated using ...
0
votes
1answer
21 views
Spring - mixing annotation and validator-based validations
I've following problem, there's a regular spring model (let's call it "A") with some validations-related annotations. Next, there's a command object (regular POJO class that defines some field, one of ...
0
votes
0answers
14 views
GAE + Spring MVC : binding File(Image) to BLOB
I have a form to add a Product with image in jsp :
<form:form action="add" commandName="product" methodParam="POST">
<form:hidden path="id" />
<table>
<tr>
...
0
votes
1answer
40 views
Role based menu in J2EE
I am using Spring MVC for my Web Application. My views are JSP based. What is the Best Practice show role based menus.
Should I make a check in JSP page for role?
Should I built menu in Java class ...
1
vote
1answer
22 views
Handling non-english URL with Spring and App Engine Task Queue
I have this problem where I need to queue a page link with TaskQueue:
Queue queue = QueueFactory.getDefaultQueue();
for (String href : hrefs){
href = baseUrl + href;
...
1
vote
1answer
45 views
Ensure that web service handles exceptions and always returns a valid response
I am developing a web service, no matter what, the response should always be valid, and I mean valid as in a valid format.
That means that if the web service is expected to return an XML matching a ...
0
votes
2answers
35 views
How to decode Gzip compressed request body in Spring MVC
I have a client that sends data with
CONTENT-ENCODING deflate
I have code like this
@RequestMapping(value = "/connect", method = RequestMethod.POST)
@ResponseBody
public Map ...
1
vote
2answers
55 views
How to create paths in RESTful web service for “action oriented” methods?
I am creating a RESTful web service and I try to follow the conventions and recomendations for creating a good web service. Now I have come to a halt though. I have a User entity in my system that I ...
0
votes
1answer
28 views
Referencing Property file in Servlet Context
Newbies question:
I have in my Context XML
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
...
0
votes
1answer
32 views
Spring MVC multiple rows form submit submits new ModelAttribute
Ok its another one of spring's null ModelAttribute but I've tried everything I found but it doesn't work.
I've adding this tutorials functionality to my web app spring-mvc everythings workds greate ...
0
votes
1answer
28 views
PagedListHolder<clazz> cannot be resolved to a type
As you know in spring mvc we can provide pagination mechanism using PagedListHolder class.
I already did provide methods that provide pagination for me but I got forced to do declare methods for all ...








