hi
i try to design the security of an application. It's a project management software.
An user can be assigner on many project.
An user can have many role.
an role can have many permission.
...
Type: Posts; User: collinm; Keyword(s):
hi
i try to design the security of an application. It's a project management software.
An user can be assigner on many project.
An user can have many role.
an role can have many permission.
...
you mean in the AccountRequest interface?
i already tester with the interface, i will test it again after the work
in the gwt documentation:...
I posted all the source there: http://filebin.ca/CRE3HbzFunH
i put
in applicationContex.xml file, but i got the same error.
ok thank, will try tonigh and give you the result.
ok, my dispatcher-servlet.xml is not loaded, so i need to add the contain of this file to applicationContext.xml ?
and maybe will need to add
I will need to add dispatcher-servlet.xml to my config, so i will have 2 servlet.
I saw this file: https://code.google.com/p/gwtcontacts/source/browse/trunk/war/WEB-INF/web.xml
Don't know it's...
I get this error with a gwt (using requestfactory) and spring
org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type...
before i see some bench, i wanted to use mybatis, but jdbctemplate is faster
how i will say to spring witch datasource to use? also i will need to send this info to an abstract factory who will...
hi
is there a way to support many database with spring without using orm?
some client use mysql and some other will use oracle (not in the same time)?
how to manage dao to support many...
hi
i would like to know if there are some web site who list good pratice for spring?
i started a program, i splitted it with a controller, service and dao layer but i have some question about...
i don't know if it's the way to go... but with
<servlet>
<servlet-name>chart</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
...
ok so now i have my UserController and the new one ImageController
in my jsp, i display the info of the user.... and for the image i have
<img src="statHebdo.jpg"/>
my new controller
hi
i have a controller with 2 methods, one for get, one for the post
in the get method, i generate a image but it's not displayed by the jsp
@Controller
@RequestMapping("/user.htm")
hi
i use spring 3.0
i created a webpage who allow to search data in a db.
user type some information, click on search and a list of information is displayed
my problem is the method in the...
hi
i have problem with a controller
@Controller
public class UserController {
@Autowired
ok i changed for
<context:component-scan base-package="com.h23v.*"/>
<context:annotation-config/>
now i get this error
hi
i'm beginning with spring 3.0
i try to use annotation to reduce xml file
i get:
hi
here my code
String id = "1,2,3";
String query = "delete from t_user where t_userId in (?)
simpleJdbcTemplate.update(query, id);
hi
i have a schema table like that
table_a
----------
id
name
table_b
hi
i have 4 table and 4 object, i need to get information from this table so i need to feed object...
so i search the best way to do it
i can do only a query with some inner join and use...