- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个基于hibernate和spring的项目。我花了两天时间,但无法弄清楚为什么当我调用这段代码时会出现“惰性异常”错误:
public MemberUser SendEmail(MemberUser user) throws MailSendingException {
// Check if password will be sent by mail
// Hibernate.initialize(user);
user = fetchService.fetch(user, FETCH);
// user = userDao.load(user.getId(), FETCH);
final MemberGroup group = user.getMember().getMemberGroup();
final boolean sendPasswordByEmail = group.getMemberSettings().isSendPasswordByEmail();
String newPassword = null;
if (sendPasswordByEmail) {
// If send by mail, generate a new password
newPassword = generatePassword(group);
}
// Update the user
user.setPassword(hashHandler.hash(user.getSalt(), newPassword));
user.setPasswordDate(null);
userDao.update(user);
if (sendPasswordByEmail) {
// Send the password by mail
mailHandler.sendResetPassword(user.getMember(), newPassword);
}
return user;
}
此代码基本上是在从数据库获取用户信息后向用户发送电子邮件以重置密码。异常出现在“user= fetchService.fetch(user, FETCH)”处,而 FETCH 是:
private static final Relationship FETCH = RelationshipHelper.nested(User.Relationships.ELEMENT,
Element.Relationships.GROUP);
这是 fetch 函数的代码,当调用 fetch 时会执行:
@Override
public <E extends Entity> List<E> fetch(final Collection<E> entities, final Relationship... fetch) {
if (entities == null) {
return null;
}
final List<E> result = new ArrayList<E>(entities.size());
for (E entity : entities) {
entity = fetch(entity, fetch);
result.add(entity);
}
return result;
}
这些是 hibernate 类,但我没有掌握这些。
public class HibernateHelper {
*/
public static class QueryParameter {
private final Object value;
private final String operator;
public QueryParameter(final Object value, final String operator) {
this.value = value;
this.operator = operator;
}
public String getOperator() {
return operator;
}
public Object getValue() {
return value;
}
}
private static Map<Class<? extends Entity>, Set<String>> directPropertiesCache = new HashMap<Class<? extends Entity>, Set<String>>();
public static void addInElementsParameter(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final Entity value) {
if (value != null && value.isPersistent()) {
final String parameterName = getParameterName(namedParameters, path);
hql.append(" and :").append(parameterName).append(" in elements(").append(path).append(") ");
namedParameters.put(parameterName, value);
}
} public static void addInParameterToQuery(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final Collection<?> values) {
if (values != null && !values.isEmpty()) {
final String parameterName = getParameterName(namedParameters, path);
hql.append(" and ").append(path).append(" in (:").append(parameterName).append(") ");
namedParameters.put(parameterName, values);
}
}
/**
* Adds an "in" operator parameter to the HQL query, if the given value is not empty, appending the values to the named parameters map
*/
public static void addInParameterToQuery(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final Object... values) {
if (values != null && values.length > 0) {
addInParameterToQuery(hql, namedParameters, path, Arrays.asList(values));
}
}
/**
* Adds a 'path like %value%' parameter to the HQL query if the given value is not empty, appending the value to the named parameters map
*/
public static void addLikeParameterToQuery(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final String value) {
doAddLike(hql, namedParameters, path, value, false);
}
/**
* Adds a equals parameter to the HQL query, if the given value is not empty, appending the value to the named parameters map
*/
public static void addParameterToQuery(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final Object value) {
addParameterToQueryOperator(hql, namedParameters, path, "=", value);
}
/**
* Adds a custom parameter to the HQL query, if the given parameter is not empty, appending the value to the named parameters map
*/
public static void addParameterToQuery(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final QueryParameter parameter) {
if (parameter != null) {
addParameterToQueryOperator(hql, namedParameters, path, parameter.getOperator(), parameter.getValue());
}
}
/**
* Adds a custom operator parameter to the HQL query, if the given value is not empty, appending the value to the named parameters map
*/
public static void addParameterToQueryOperator(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final String operator, final Object value) {
if (value != null && !"".equals(value)) {
final String parameterName = getParameterName(namedParameters, path);
hql.append(" and ").append(path).append(" ").append(operator).append(" :").append(parameterName).append(" ");
namedParameters.put(parameterName, value);
}
}
/**
* Adds a period test to the HQL query, if the given period is not empty, appending the value to the named parameters map. See {@link Period}, as
* it controls whether the begin and end dates are inclusive / exclusive.
*
*/
public static void addPeriodParameterToQuery(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final Period period) {
addParameterToQuery(hql, namedParameters, path, getBeginParameter(period));
addParameterToQuery(hql, namedParameters, path, getEndParameter(period));
}
/**
* Adds a 'path like value%' parameter to the HQL query if the given value is not empty, appending the value to the named parameters map
*/
public static void addRightLikeParameterToQuery(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, final String value) {
doAddLike(hql, namedParameters, path, value, true);
}
/**
* Appends the join portion on the query to fetch the specified relationships, when appliable
*/
public static void appendJoinFetch(final StringBuilder hql, final Class<? extends Entity> entityType, final String entityAlias, final Collection<Relationship> fetch) {
if (fetch != null) {
final Set<String> directRelationships = getDirectRelationshipProperties(entityType, fetch);
for (final String directRelationship : directRelationships) {
hql.append(" left join fetch ").append(entityAlias).append(".").append(directRelationship).append(" ");
}
}
}
/**
* Appends the order by portion, with the given path lists (with an optional direction, ie: "e.date desc", "e.name", "x.name")
*/
public static void appendOrder(final StringBuilder hql, final Collection<String> paths) {
if (CollectionUtils.isNotEmpty(paths)) {
hql.append(" order by " + StringUtils.join(paths.iterator(), ","));
}
}
/**
* Appends the order by portion, with the given path lists (with an optional direction, ie: "e.date desc", "e.name", "x.name")
*/
public static void appendOrder(final StringBuilder hql, final String... paths) {
if (paths != null && paths.length > 0) {
appendOrder(hql, Arrays.asList(paths));
}
}
/**
* Returns the begin date of the given period, handling null
*/
public static QueryParameter getBeginParameter(final Period period) {
if (period == null) {
return null;
}
Calendar begin = period.getBegin();
if (begin == null) {
return null;
}
// We must consider the time when explicitly set
if (!period.isUseTime()) {
// Truncate the begin date
begin = DateHelper.truncate(begin);
}
String operator = period.isInclusiveBegin() ? ">=" : ">";
return new QueryParameter(begin, operator);
}
/**
* Returns the end date of the given period, handling null
*/
public static QueryParameter getEndParameter(final Period period) {
if (period == null) {
return null;
}
Calendar end = period.getEnd();
if (end == null) {
return null;
}
// We must consider the time when explicitly set
if (!period.isUseTime()) {
// Truncate the end date and set the next day
end = DateHelper.getDayEnd(end);
}
String operator = period.isInclusiveEnd() ? "<=" : "<";
return new QueryParameter(end, operator);
}
/**
* Returns a StringBuilder containing the begin of a single entity select HQL
* @param entityType The entity type to search
* @param entityAlias The entity alias on the query
* @return The StringBuiler
*/
public static StringBuilder getInitialQuery(final Class<? extends Entity> entityType, final String entityAlias) {
return getInitialQuery(entityType, entityAlias, null);
}
/**
* Returns a StringBuilder containing the begin of a single entity select HQL, with the especified fetch relationships, when appliable
* @param entityType The entity type to search
* @param entityAlias The entity alias on the query
* @param fetch The relationships to fetch
* @return The StringBuiler
*/
public static StringBuilder getInitialQuery(final Class<? extends Entity> entityType, final String entityAlias, final Collection<Relationship> fetch) {
final StringBuilder hql = new StringBuilder(" from ").append(entityType.getName()).append(" ").append(entityAlias).append(" ");
appendJoinFetch(hql, entityType, entityAlias, fetch);
hql.append(" where 1=1 ");
return hql;
}
private static void doAddLike(final StringBuilder hql, final Map<String, Object> namedParameters, final String path, String value, final boolean rightOnly) {
value = StringUtils.trimToNull(value);
if (value == null) {
return;
}
// Remove any manually entered '%'
value = StringUtils.trimToNull(StringUtils.replace(value, "%", ""));
if (value == null) {
return;
}
// Assuming the default database collation is case insensitive, we don't need to perform case transformations
if (rightOnly) {
value += "%";
} else {
value = "%" + value + "%";
}
addParameterToQueryOperator(hql, namedParameters, path, "like", value);
}
/**
* Returns a set of properties that will be fetched directly on the HQL
*/
private static Set<String> getDirectRelationshipProperties(final Class<? extends Entity> entityType, final Collection<Relationship> fetch) {
// Populate the direct properties cache for this entity if not yet exists
Set<String> cachedDirectProperties = directPropertiesCache.get(entityType);
if (cachedDirectProperties == null) {
cachedDirectProperties = new HashSet<String>();
final PropertyDescriptor[] propertyDescriptors = PropertyUtils.getPropertyDescriptors(entityType);
// Scan for child -> parent relationships
for (final PropertyDescriptor descriptor : propertyDescriptors) {
if (descriptor.getReadMethod() != null && descriptor.getWriteMethod() != null && Entity.class.isAssignableFrom(descriptor.getPropertyType())) {
// This is a child -> parent relationship. Add it to the cache
cachedDirectProperties.add(descriptor.getName());
}
}
directPropertiesCache.put(entityType, cachedDirectProperties);
}
// Build the properties to add to HQL fetch from a given relationship set
final Set<String> propertiesToAddToFetch = new HashSet<String>();
for (final Relationship relationship : fetch) {
final String name = PropertyHelper.firstProperty(relationship.getName());
if (cachedDirectProperties.contains(name)) {
propertiesToAddToFetch.add(name);
}
}
return propertiesToAddToFetch;
}
/**
* Generates a parameter name
*/
private static String getParameterName(final Map<String, Object> namedParameters, final String propertyName) {
int counter = 1;
// Transform the property in a valid identifier
final StringBuilder sb = new StringBuilder(propertyName.length());
for (int i = 0, len = propertyName.length(); i < len; i++) {
final char c = propertyName.charAt(i);
if (Character.isJavaIdentifierPart(c)) {
sb.append(c);
} else {
sb.append('_');
}
}
final String field = sb.toString();
String parameterName = field.concat("_1");
while (namedParameters.containsKey(parameterName)) {
parameterName = field.concat("_").concat(String.valueOf(++counter));
}
return parameterName;
}
}
这是错误:
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:167)
at nl.strohalm.cyclos.utils.hibernate.HibernateQueryHandler.initialize(HibernateQueryHandler.java:252)
at nl.strohalm.cyclos.dao.FetchDAOImpl.doFetch(FetchDAOImpl.java:80)
at nl.strohalm.cyclos.dao.FetchDAOImpl.fetch(FetchDAOImpl.java:37)
at nl.strohalm.cyclos.services.fetch.FetchServiceImpl.fetch(FetchServiceImpl.java:45)
at nl.strohalm.cyclos.services.access.AccessServiceImpl.SendEmail(AccessServiceImpl.java:1695)
at nl.strohalm.cyclos.services.access.AccessServiceImpl.resetPasswordAndSendAfterExpire(AccessServiceImpl.java:1732)
at com.omnia.payo.scheduling.task.UserLoginInfoSchedulingTask.doRun(UserLoginInfoSchedulingTask.java:43)
at nl.strohalm.cyclos.scheduling.tasks.BaseScheduledTask.run(BaseScheduledTask.java:42)
at nl.strohalm.cyclos.utils.tasks.TaskRunnerImpl$4.run(TaskRunnerImpl.java:193)
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
at nl.strohalm.cyclos.utils.access.LoggedUser.runAsSystem(LoggedUser.java:285)
at nl.strohalm.cyclos.utils.tasks.TaskRunnerImpl.doRunScheduledTask(TaskRunnerImpl.java:190)
at nl.strohalm.cyclos.utils.tasks.TaskRunnerImpl.doRunScheduledTask(TaskRunnerImpl.java:170)
at nl.strohalm.cyclos.utils.tasks.TaskRunnerImpl$ScheduledTaskThreads.process(TaskRunnerImpl.java:64)
at nl.strohalm.cyclos.utils.tasks.TaskRunnerImpl$ScheduledTaskThreads.process(TaskRunnerImpl.java:1)
at nl.strohalm.cyclos.utils.ParallelTask$1.process(ParallelTask.java:43)
at nl.strohalm.cyclos.utils.WorkerThreads$WorkerThread$1.call(WorkerThreads.java:53)
at nl.strohalm.cyclos.utils.WorkerThreads$WorkerThread$1.call(WorkerThreads.java:1)
at nl.strohalm.cyclos.utils.access.LoggedUser.runAsSystem(LoggedUser.java:285)
at nl.strohalm.cyclos.utils.WorkerThreads$WorkerThread.run(WorkerThreads.java:49)
FetchDAOImpl 中 doFetch 的代码是:
private <E extends Entity> E doFetch(final E inputEntity, final Relationship... fetch) {
if (inputEntity == null || inputEntity.getId() == null) {
throw new UnexpectedEntityException();
}
E entity;
// Discover the entity real class and id
final Class<? extends Entity> entityType = EntityHelper.getRealClass(inputEntity);
final Long id = inputEntity.getId();
// Load and initialize the entity
try {
entity = (E) getHibernateTemplate().load(entityType, id);
entity = (E) hibernateQueryHandler.initialize(entity);
} catch (final ObjectRetrievalFailureException e) {
throw new EntityNotFoundException(entityType, id);
} catch (final ObjectNotFoundException e) {
throw new EntityNotFoundException(entityType, id);
}
// ... and fetch each relationship
if (!ArrayUtils.isEmpty(fetch)) {
for (final Relationship relationship : fetch) {
if (relationship == null) {
continue;
}
try {
final String name = relationship.getName();
Object bean = entity;
String first = PropertyHelper.firstProperty(name);
String nested = PropertyHelper.nestedPath(name);
while (bean != null && first != null) {
final Object value = hibernateQueryHandler.initializeProperty(bean, first);
bean = value;
first = PropertyHelper.firstProperty(nested);
nested = PropertyHelper.nestedPath(nested);
}
} catch (final PropertyException e) {
// Ok - nonexisting property. Probably fetching a relationship that only exists in one of the subclasses, and trying to use it no
// another one
} catch (final Exception e) {
throw new PropertyException(entity, relationship.getName(), e);
}
}
}
return entity;
}
请有人帮助我,我将非常感激。
最佳答案
这应该有帮助:
What is OpenSessionInViewFilter And How
和
Hibernate updating from different sessions
或者专家的这个
关于java - 无法初始化代理 - 无 session 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32200474/
我是 Spring 新手,这就是我想要做的事情: 我正在使用一个基于 Maven 的库,它有自己的 Spring 上下文和 Autowiring 字段。 它的bean配置文件是src/test/res
我在我的测试脚本中有以下列表初始化: newSequenceCore=["ls", "ns", "*", "cm", "*", "ov", "ov", "ov", "ov", "kd"] (代表要在控
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: Class construction with initial values 当我查看 http://en.
我得到了成员变量“objectCount”的限定错误。编译器还返回“ISO C++ 禁止非常量静态成员的类内初始化”。这是主类: #include #include "Tree.h" using n
我有如下所示的a.h class A { public: void doSomething()=0; }; 然后我有如下所示的b.h #include "a.h" class b: publi
我需要解析 Firebase DataSnapshot (一个 JSON 对象)转换成一个数据类,其属性包括 enum 和 list。所以我更喜欢通过传递 DataSnapshot 来手动解析它进入二
我使用 JQuery 一段时间了,我总是使用以下代码来初始化我的 javascript: $(document).ready( function() { // Initalisation logic
这里是 Objective-C 菜鸟。 为什么会这样: NSString *myString = [NSString alloc]; [myString initWithFormat:@"%f", s
我无法让核心数据支持的 NSArrayController 在我的代码中正常工作。下面是我的代码: pageArrayController = [[NSArrayController alloc] i
我对这一切都很陌生,并且无法将其安装到我的后端代码中。它去哪里?在我的页脚下面有我所有的 JS? 比如,这是什么意思: Popup initialization code should be exec
这可能是一个简单的问题,但是嘿,我是初学者。 所以我创建了一个程序来计算一些东西,它目前正在控制台中运行。我决定向其中添加一个用户界面,因此我使用 NetBeans IDE 中的内置功能创建了一个 J
我有 2 个 Controller ,TEST1Controller 和 TEST2Controller 在TEST2Controller中,我有一个initialize()函数设置属性值。 如果我尝
据我所知, dependentObservable 在声明时会进行计算。但如果某些值尚不存在怎么办? 例如: var viewModel ={}; var dependentObservable1 =
我正在阅读 POODR 这本书,它使用旧语法进行默认值初始化。我想用新语法实现相同的功能。 class Gear attr_reader :chainring, :cog, :wheel de
我按照 polymer 教程的说明进行操作: https://www.polymer-project.org/3.0/start/install-3-0 (我跳过了可选部分) 但是,在我执行命令“po
很抱歉问到一个非常新手的Kotlin问题,但是我正在努力理解与构造函数和初始化有关的一些东西。 我有这个类和构造函数: class TestCaseBuilder constructor(
假设我们有一个包含 30 列和 30 行的网格。 生命游戏规则简而言之: 一个小区有八个相邻小区 当一个细胞拥有三个存活的相邻细胞时,该细胞就会存活 如果一个细胞恰好有两个或三个活的相邻细胞,那么它就
我是 MQTT 和 Android 开放附件“AOA” 的新手。在阅读教程时,我意识到,在尝试写入 ByteArrayOutputStream 类型的变量之前,应该写入 0 或 0x00首先到该变量。
我有 2 个 Controller ,TEST1Controller 和 TEST2Controller 在TEST2Controller中,我有一个initialize()函数设置属性值。 如果我尝
我有一个inotify /内核问题。我正在使用“inotify” Python项目进行观察,但是,我的问题仍然是固有的关于inotify内核实现的核心。 Python inotify项目处理递归ino
我是一名优秀的程序员,十分优秀!